:root {
    --primary: #d61414;
    --primary-light: rgba(214, 20, 20, 0.1);
    --primary-lighter: rgba(214, 20, 20, 0.05);
    --primary-soft: #ea384c;
    --primary-pink: #FFDEE2;
    --primary-peach: #FDE1D3;
    --primary-dark: #a3100e;
    --secondary: #f8f9fa;
    --text: #000;
    --text-muted: #6c757d;
    --border: #dee2e6;
    --radius: 1rem;
}
[data-theme="dark"] {
    /* Dark Mode Root Variables */
    --primary: #ff4d4d;
    --primary-light: rgba(255, 77, 77, 0.1);
    --primary-lighter: rgba(255, 77, 77, 0.05);
    --primary-soft: #ff6b6b;
    --primary-pink: #3a0a0a;
    --primary-peach: #3a1a0a;
    --primary-dark: #ff3333;
    --secondary: #121212;
    --text: #e0e0e0;
    --text-muted: #9e9e9e;
    --border: #333333;
    --background: #121212;
    --card-bg: #1e1e1e;
    --navbar-bg: #1e1e1e;
    --hero-bg: #0a0a0a;
    --input-bg: #252525;
    --input-text: #e0e0e0;
}

/* Make the navbar-toggler icon white in dark mode */
[data-theme="dark"] .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5); /* optional: white border */
}

[data-theme="dark"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Placeholder text white in dark mode */
[data-theme="dark"] .search-container input::placeholder {
  color: white;
  opacity: 1; /* Ensure full opacity */
}

[data-theme="dark"] #features,
[data-theme="dark"] #pricing {
  background-color: #121212; /* dark background */
  color: white;
}

/* Input text white in dark mode */
[data-theme="dark"] .search-container input {
  color: white;
}
/* Override bg-light and padding py-5 in dark mode */
[data-theme="dark"] .bg-light.py-5 {
  background-color: #121212 !important; /* dark background */
  color: white !important;              /* white text */
}

/* Also handle any text-muted inside */
[data-theme="dark"] .bg-light.py-5 .text-muted {
  color: #ccc !important;
}

/* For badges inside, override bg-light */
[data-theme="dark"] .bg-light.py-5 .badge.text-bg-light {
  background-color: #222 !important;
  color: #eee !important;
}

/* Dark mode for .pricing-section.bg-light */
[data-theme="dark"] .pricing-section.bg-light {
  background-color: #121212 !important; /* dark background */
  color: white !important;              /* white text */
}

/* Optional: style muted text inside pricing section */
[data-theme="dark"] .pricing-section.bg-light .text-muted {
  color: #ccc !important;
}

/* Optional: table or button overrides if inside this section */
[data-theme="dark"] .pricing-section.bg-light .price-table th,
[data-theme="dark"] .pricing-section.bg-light .price-table td {
  border-color: #444;
  color: white;
}

/* Dark mode override for custom bg-light-pink section */
[data-theme="dark"] .bg-light-pink.py-5 {
  background-color: #1a1a1a !important;  /* dark fallback background */
  color: white !important;               /* white text */
}

/* Adjust muted text if present */
[data-theme="dark"] .bg-light-pink.py-5 .text-muted {
  color: #ccc !important;
}

/* Optional: badge or subtle elements */
[data-theme="dark"] .bg-light-pink.py-5 .badge.text-bg-light {
  background-color: #222 !important;
  color: #eee !important;
}

/* Dark mode override for bg-white + border-top + py-5 combo */
[data-theme="dark"] .bg-white.border-top.py-5 {
  background-color: #121212 !important;  /* Dark background */
  border-top: 1px solid #333 !important; /* Dark border */
  color: white !important;               /* Text color */
}

/* Optional: muted text inside */
[data-theme="dark"] .bg-white.border-top.py-5 .text-muted {
  color: #ccc !important;
}
/* Text below white in dark mode */
[data-theme="dark"] .text-muted {
  color: white !important;
}
/* Dark mode */
[data-theme="dark"] .navbar-brand span {
    color: white;
}
/* Dark Mode Component Styles */
[data-theme="dark"] body {
    background-color: var(--background);
    color: var(--text);
}

[data-theme="dark"] .navbar {
    background-color: var(--navbar-bg);
    border: 1px solid var(--border);
}

[data-theme="dark"] .navbar-scrolled {
    background-color: rgba(30, 30, 30, 0.95);
}

[data-theme="dark"] .glass-effect {
    background-color: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .look-section,
[data-theme="dark"] .maths-section,
[data-theme="dark"] #pricing {
    background-color: var(--card-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

[data-theme="dark"] .look-text h2,
[data-theme="dark"] .look-text p,
[data-theme="dark"] .maths-section .text-container h2,
[data-theme="dark"] .maths-section .text-container p {
    color: var(--text);
}

[data-theme="dark"] .blog-post,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .floating-element,
[data-theme="dark"] .main-circle,
[data-theme="dark"] .partner-logo,
[data-theme="dark"] .card {
    background-color: var(--card-bg);
    border-color: var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .price-table th {
    background-color: var(--primary-dark);
}

[data-theme="dark"] .price-table td {
    background-color: #252525;
    color: var(--text);
}

[data-theme="dark"] .cookie-banner {
    background-color: #252525;
    border-top: 2px solid #fbc02d;
}

[data-theme="dark"] .cookie-text {
    color: var(--text);
}

[data-theme="dark"] #hero {
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(315deg, var(--background) 0%, var(--primary-pink) 74%);
}

[data-theme="dark"] .background-icon {
    color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .form-control {
    background-color: var(--input-bg);
    color: var(--input-text);
    border-color: var(--border);
}

[data-theme="dark"] .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .btn-outline-primary:hover {
    background-color: var(--primary);
    color: #121212;
}

[data-theme="dark"] .search-container {
    border-color: rgba(255, 77, 77, 0.3);
}

[data-theme="dark"] .search-container:hover {
    border-color: var(--primary-soft);
}

[data-theme="dark"] .promo-banner {
    background: linear-gradient(to right, #3a1a0a, #3a0a0a);
    color: var(--text);
}

[data-theme="dark"] .offer-banner {
    background: linear-gradient(135deg, #3a1a0a, #3a0a0a);
    color: var(--text);
}

[data-theme="dark"] .nested-circles {
    background-color: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .nested-circles::before {
    background-color: rgba(255, 77, 77, 0.1);
}

[data-theme="dark"] .benefit-item i {
    background-color: rgba(255, 77, 77, 0.1);
}

[data-theme="dark"] .feature-icon {
    background-color: rgba(255, 77, 77, 0.1);
    color: var(--primary);
}

[data-theme="dark"] .stat-icon {
    background-color: rgba(255, 77, 77, 0.1);
    color: var(--primary);
}

[data-theme="dark"] .avatar {
    background-color: var(--primary-pink);
    border-color: var(--card-bg);
}

[data-theme="dark"] .gradient-circle-1,
[data-theme="dark"] .gradient-circle-2 {
    background: radial-gradient(circle, rgba(255, 77, 77, 0.05) 0%, rgba(255, 77, 77, 0) 70%);
}

[data-theme="dark"] .gradient-overlay {
    background: linear-gradient(to bottom right, rgba(255, 77, 77, 0.05), transparent);
}
* {
    max-width: 100vw;
    box-sizing: border-box;
}

/* Theme Toggle Button Styles */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

[data-theme="dark"] .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Icon specific styles */
.theme-toggle i {
    transition: transform 0.3s ease;
}

[data-theme="dark"] .theme-toggle i.fa-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle i.fa-sun {
    display: block;
}

.theme-toggle i.fa-sun {
    display: none;
}

[data-theme="light"] .theme-toggle i.fa-moon {
    display: block;
}

[data-theme="light"] .theme-toggle i.fa-sun {
    display: none;
}


/* Icon background white in dark mode */
[data-theme="dark"] #partners .badge.text-bg-light i {
  background-color: white;
  color: #0d6efd !important; /* keep icon blue (Bootstrap primary) */
  padding: 4px;
  border-radius: 50%;
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 16px;
  text-align: center;
  font-size: 14px;
}

/* Muted paragraph text */
[data-theme="dark"] #partners .text-muted {
  color: #ccc !important;
}



/* Section title styling */
[data-theme="dark"] #partners h2 {
  color: white;
}

/* Just in case container has bg or text issues */
[data-theme="dark"] #partners .container {
  color: white;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

 #lightbox {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    #lightbox-content {
      background: white;
      padding: 20px 30px;
      border-radius: 12px;
      text-align: center;
      max-width: 90%;
      width: 400px;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
      position: relative;
    }

    #lightbox img {
      height: 60px;
      margin-bottom: 15px;
    }

    #lightbox a {
      display: inline-block;
      margin-top: 10px;
      text-decoration: none;
      font-weight: bold;
      color: #25D366;
    }

    #lightbox button {
      position: absolute;
      top: 10px;
      right: 10px;
      border: none;
      background: #eee;
      padding: 5px 10px;
      cursor: pointer;
      border-radius: 5px;
    }

    #lightbox button:hover {
      background: #ccc;
    }
[data-theme="dark"] #lightbox-content {
  background-color: #1f1f1f;
  color: #ddd;
}

[data-theme="dark"] #lightbox button {
  background: #333;
  color: #ccc;
}

[data-theme="dark"] #lightbox button:hover {
  background: #555;
}

[data-theme="dark"] #lightbox a {
  color: #25D366;
}

    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #fff8e1;
      border-top: 2px solid #fbc02d;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 25px;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      z-index: 1000;
      transition: transform 0.3s ease;
    }

    .cookie-banner.hide {
      transform: translateY(100%);
    }

    .cookie-banner img {
      width: 40px;
      height: 40px;
      margin-right: 15px;
    }

    .cookie-text {
      display: flex;
      align-items: center;
      flex: 1;
      color: #333;
    }

    .cookie-text p {
      margin: 0;
      font-size: 14px;
    }

    .cookie-btn {
      background-color: #fbc02d;
      color: #000;
      border: none;
      padding: 8px 18px;
      margin-right: 35px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 5px;
    }

    .cookie-btn:hover {
      background-color: #f9a825;
    }

 .look-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background-color: var(--secondary);
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 20px;
background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
background-size: 20px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.look-text,
.look-image {
  flex: 1;
  padding: 20px;
  min-width: 300px; /* Responsive stacking */
}

.look-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.theme-toggle-btn {
    margin-left: 0.75rem; 
}

@media (max-width: 991.98px) {
    .theme-toggle-btn {
        margin-left: 0;
        margin-top: 1rem;     /* Added top margin */
        margin-bottom: 1rem;  /* Existing bottom margin */
        display: inline-block;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        width: auto;
    }
}
.look-text h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.look-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .look-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .look-text,
  .look-image {
    padding: 10px;
    text-align: center;
  }

  .look-text h2 {
    font-size: 1.6em;
  }

  .look-text p {
    font-size: 1em;
  }
}

/* Common Styles */
.glass-effect {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
}

/* Bouncing text animation */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: red;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* Stack items vertically */
    z-index: 9999;
}

#loading-image {
    width: 200px;
    height: 200px;
    animation: bounce 1.5s infinite ease-in-out;
    background: white;
    background: 500px;
    padding: 1px;
    border-radius: 50%;
    border: 0.1px solid #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* Bouncing animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.brand-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.text-primary {
    color: var(--primary) !important;
}


/* Style for the arrow icon */
.btn .fa-arrow-right {
    color: #ff0033;
    /* Set icon color (blue) */
    font-size: 1.2rem;
    /* Adjust icon size */
    transition: transform 0.3s ease, color 0.3s ease;
    /* Smooth hover effect */
}

/* Hover effect for the button */
.btn:hover .fa-arrow-right {
    color: #fe278b;
    /* Darker shade on hover */
    transform: translateX(3px);
    /* Slight right movement on hover */
}

/* Align the form elements properly */
form.d-flex {
    align-items: center;
    width: 100%;
    /* Ensure the form takes full width */
}

/* Ensure the button is pushed to the extreme right */
form .btn {
    flex-shrink: 0;
    margin-left: 10px;
    /* Add custom space if needed */
}

.badge {
    border-radius: 50rem;
    font-size: 0.75rem;
}

.gradient-circle-1,
.gradient-circle-2 {
    width: 40rem;
    height: 40rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214, 20, 20, 0.05) 0%, rgba(214, 20, 20, 0) 70%);
    filter: blur(50px);
    z-index: -1;
}

/* Remove focus and hover effects from the input */
.form-control:focus,
.form-control:hover {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
    background-color: transparent !important;
    color: inherit;
    /* Keeps the text color consistent */
}

/* Optional: Disable focus styles for consistency */
.form-control {
    border: none !important;
}

.core-image {
    position: absolute;
    width: 100px;
    /* Adjust size as needed */
    height: 100px;
    /* Adjust size as needed */
    border-radius: 10%;
    object-fit: cover;
    /* Ensures the image covers the area without distortion */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centers the image */
}



.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(214, 20, 20, 0.05), transparent);
    border-radius: inherit;
}

/* Navbar Styles */
.navbar {
      margin-top: 15px;
  margin-right: 15px;
  margin-left: 14px;
  padding: 1rem;
  border-radius: 15px;
    transition: all 0.3s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: white;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-link {
    color: var(--text);
    margin: 0 0.5rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
#hero {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  background-color: #fff;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(315deg, #ffffff 0%, var(--primary-pink) 74%);
  background-size: 20px 20px, 20px 20px, cover;
}

/* Icon style */
.background-icon {
  position: absolute;
  font-size: 2rem; /* size of icon */
  color: rgba(0, 0, 0, 0.05); /* faint color */
  pointer-events: none; /* don't block clicks */
  z-index: 1; /* behind your real content */
}
.hero-content {
  position: relative;
  z-index: 10; /* real content stays above icons */
}


.search-container {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 2px solid rgba(214, 20, 20, 0.1);
    transition: all 0.3s ease;
}

.search-container:hover {
    border-color: var(--primary-soft);

}

.search-container input {
    box-shadow: none;
}

.search-container button {
    color: var(--primary);
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--primary-pink);
    border: 2px solid white;
    margin-left: -0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.avatar:first-child {
    margin-left: 0;
}

.ai-visualization {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 10px 30px rgba(214, 20, 20, 0.15);
    position: relative;
    border: 8px solid white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-circle {
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 4px solid rgba(214, 20, 20, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.rotating-circle {
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 4px solid rgba(214, 20, 20, 0.2);
    animation: rotate 15s linear infinite;
}

.center-pulse {
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: rgba(214, 20, 20, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

.core-circle {
    position: absolute;
    width: 25%;
    height: 25%;
    border-radius: 50%;
    background-color: var(--primary);
    animation: pulse 3s ease-in-out infinite;
}

.floating-element {
    position: absolute;
    width: 200px;
    height: 80px;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(214, 20, 20, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem;
    text-align: center;
    z-index: 1;
    border: 1px solid var(--primary-pink);
}

.top-right {
    top: 0;
    right: 50px;
    animation: float 4s ease-in-out infinite;
}

.right-mid {
    top: 35%;
    right: 0;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.bottom-left {
    bottom: 30px;
    left: 50px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.left-mid {
    top: 50%;
    left: 0;
    margin-bottom: 10px;
    transform: translateY(-50%);
    animation: float 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.top-left {
    top: 10%;
    left: 30px;
    padding: 10px;
    margin: 15px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

.maths-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
background-color: var(--secondary);
border-radius: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
margin: 20px;
background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
background-size: 20px 20px;
}

.maths-section .image-container,
.maths-section .text-container {
  flex: 1;
  padding: 20px;
  min-width: 300px; /* So they stack nicely on small devices */
}

.maths-section .image-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.maths-section .text-container h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.maths-section .text-container p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
}

/* Responsive part */
@media (max-width: 768px) {
  .maths-section {
    flex-direction: column;
    padding: 30px 20px;
  }
  
  .maths-section .image-container,
  .maths-section .text-container {
    padding: 10px;
    text-align: center;
  }
  
  .maths-section .text-container h2 {
    font-size: 1.6em;
  }
  
  .maths-section .text-container p {
    font-size: 1em;
  }
}
/* promo style start */

.promo-banner {
  background: linear-gradient(to right, #ef755a, #ff0d00);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.promo-text {
  font-weight: 500;
  animation: fadeText 1s ease-in-out;
}

@keyframes fadeText {
  0% { opacity: 0; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.promo-button {
  background-color: white;
  color: #000000;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 10px;
}

.promo-button:hover {
  background-color: #fdc1b0;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 5px;
  color: rgb(0, 0, 0);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #000000;
}

@media (max-width: 600px) {
  .promo-banner {
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    text-align: center;
  }

  .close-btn {
    top: 8px;
    right: 10px;
  }
}

.offer-banner {
  background: linear-gradient(135deg, #ff6600, #ff3300);
  color: white;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.offer-text {
  font-size: 35px;
}

.countdown {
  font-weight: bold;
  font-size: 25px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 5px;
  color: rgb(0, 0, 0);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s;
}

@media (max-width: 600px) {
  .offer-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .offer-text {
    font-size: 15px;
  }
  .close-btn {
    top: 10px;
    right: 16px;
  }
}
/* promo style end */

/* Partners Section */
.bg-light-pink {
    background-color: var(--primary-pink);
    background-image: linear-gradient(315deg, #ffffff 0%, var(--primary-peach) 74%);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(214, 20, 20, 0.1);
}

/* About Section */
.about-visual {
    position: relative;
    z-index: 1;
}

.aspect-ratio-1 {
    aspect-ratio: 1/1;
}

.nested-circles {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nested-circles::before {
    content: "";
    position: absolute;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(214, 20, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sriAI-text {
    position: relative;
    font-weight: bold;
    color: var(--primary);
    font-size: 1rem;
}

.stat-card {
    position: absolute;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(214, 20, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
}

.stat-title {
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 0.75rem;
}

.benefit-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background-color: rgba(214, 20, 20, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Features Section */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: rgba(214, 20, 20, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Blog Section */


#blog-posts {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    /* Ensures wrapping on smaller screens */
}

.blog-post {
    width: 30%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.blog-post:hover {
    transform: scale(1.05);
}

.blog-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1px;
}

.blog-content {
    padding: 10px 0;
}

.blog-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.blog-content a {
    text-decoration: none;
    color: var(--primary);
    font-weight: bold;
}

/* Responsive Design for Mobile View */
@media (max-width: 768px) {
    #blog-posts {
        flex-direction: column;
        align-items: center;
    }

    .blog-post {
        width: 90%;
    }
}

/* Pricing Section */
/* Base styles */
#pricing {
    padding: 60px 20px;
  background-color: var(--secondary);
border-radius: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
margin: 20px;
background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
background-size: 20px 20px;
}

.card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px solid #e60023;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(230, 0, 35, 0.15);
}

.card-title {
    text-align: center;
    color: #e60023;
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Price display */
.price-display {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #e60023;
    margin-bottom: 20px;
}

/* Slider */
.slider-container {
    margin: 20px 0;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #e60023;
}

.slider {
    width: 100%;
    accent-color: #e60023;
}

/* Button */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.button {
    background-color: #e60023;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #c4001c;
}

/* Table styles */
.table-container {
    margin-top: 30px;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th,
.price-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background-color: #e60023;
    color: #fff;
}

.price-table td {
    background-color: #fff;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .price-display {
        font-size: 1.5rem;
    }

    .button {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .floating-element {
        width: 250px;
        height: 90px;
        font-size: 0.75rem;
    }
.background-icon {
    display: none;
}
    .main-circle {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .ai-visualization {
        height: 300px;
    }
.background-icon {
    display: none;
}

    .listd {
        display: none
    }

    .floating-element {
        width: 200px;
        height: 50px;
        font-size: 0.7rem;
    }

    .top-right {
        right: 20px;
    }

    .bottom-left {
        left: 20px;
    }
}


}



   /* --- Welcomebox Styles --- */

        /* Hide scrollbar when lightbox is open */
        body.welcomebox-open {
            overflow: hidden;
        }

/* Hide navbar when welcomebox is open */
body.welcomebox-open .navbar {
    display: none;
}

        /* Overlay */
        #welcomebox-overlay {
            position: fixed;
            inset: 0;
            background-color: rgba(10, 10, 20, 0.7);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        #welcomebox-overlay.visible {
            opacity: 1;
            visibility: visible;
        }

        /* Container */
        #welcomebox-container {
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            width: 100%;
            max-width: 650px; /* Wider design for desktop */
            text-align: center;
            transform: scale(0.95) translateY(10px);
            transition: transform 0.4s ease;
        }
        
        #welcomebox-overlay.visible #welcomebox-container {
            transform: scale(1) translateY(0);
        }

        /* Slides */
        .welcomebox-slide {
            padding: 2rem 2.5rem;
        }

        .welcomebox-slide.hidden {
            display: none;
        }

        .welcomebox-slide img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1.5rem;
        }

        .welcomebox-slide h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1a202c;
            margin: 0 0 0.5rem;
        }

        .welcomebox-slide p {
            font-size: 1rem;
            color: #718096;
            line-height: 1.6;
            margin: 0;
        }

        /* Action area for buttons */
        .welcomebox-actions {
            display: flex;
            justify-content: flex-end; /* Align button to the right */
            margin-top: 2rem;
        }

        /* Buttons */
        .welcomebox-btn {
            background-color: #e53e3e; /* Theme Red */
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            text-decoration: none;
        }

        .welcomebox-btn:hover {
            background-color: #c53030; /* Darker Red */
            transform: translateY(-2px);
        }
        
        #welcomebox-continue-btn {
             background-color: #d40a3c; /* Green for final action */
        }
        
        #welcomebox-continue-btn:hover {
             background-color: #e90e50;
        }

        /* Footer Checkbox */
        .welcomebox-footer {
            background-color: #f7fafc;
            padding: 1rem;
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
            border-top: 1px solid #e2e8f0;
        }

        .welcomebox-checkbox-label {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.875rem;
            color: #4a5568;
        }

        #welcomebox-dont-show {
            height: 1rem;
            width: 1rem;
            margin-right: 0.5rem;
            accent-color: #e53e3e; /* Theme Red */
        }
        
        /* --- Mobile View --- */
        @media (max-width: 600px) {
            #welcomebox-container {
                max-width: 550px;
            }
            .welcomebox-slide {
                padding: 1.5rem;
            }
            .welcomebox-slide h2 {
                font-size: 1.5rem;
            }
            .welcomebox-slide p {
                font-size: 0.95rem;
            }
            .welcomebox-slide img {
                height: 200px;
            }
            .welcomebox-actions {
                justify-content: center; /* Center button on mobile */
            }
            .welcomebox-btn {
                width: 100%; /* Full width button on mobile */
            }
        }
/* Dark Mode - Welcome Box */
[data-theme="dark"] #welcomebox-overlay {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

[data-theme="dark"] #welcomebox-container {
    background-color: #1e1e1e;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 
                0 10px 10px -5px rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
}

[data-theme="dark"] .welcomebox-slide h2 {
    color: #ffffff;
}

[data-theme="dark"] .welcomebox-slide p {
    color: #bbbbbb;
}

[data-theme="dark"] .welcomebox-btn {
    background-color: #ff4d4d;
    color: #fff;
}

[data-theme="dark"] .welcomebox-btn:hover {
    background-color: #e63c3c;
}

[data-theme="dark"] #welcomebox-continue-btn {
    background-color: #ff3366;
}

[data-theme="dark"] #welcomebox-continue-btn:hover {
    background-color: #ff4d7a;
}

[data-theme="dark"] .welcomebox-footer {
    background-color: #252525;
    border-top: 1px solid #333;
}

[data-theme="dark"] .welcomebox-checkbox-label {
    color: #ccc;
}

[data-theme="dark"] #welcomebox-dont-show {
    accent-color: #ff4d4d;
}
