/* =========================
   GLOBAL
   
========================= */

/* FIX MOBILE WHITESPACE ISSUE */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: hsl(218, 74%, 15%);
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1f045e 0%, #3b4ca3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
}

/* Eye Loader */
.eye-loader {
  display: inline-block;
  margin-bottom: 30px;
}

.eye {
  width: 100px;
  height: 60px;
  background: white;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  animation: blink 3s infinite;
}

.pupil {
  width: 30px;
  height: 30px;
  background: #1f045e;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: lookAround 4s infinite;
}

.pupil::before {
  content: "";
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 8px;
}

/* Loading Text */
.loading-text {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInOut 2s infinite;
}

/* Loading Bar */
.loading-bar {
  width: 250px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin: 20px auto;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, #5971be, #ffffff);
  border-radius: 10px;
  animation: progress 2.5s ease-in-out infinite;
}

.loading-tagline {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 10px;
}

/* Animations */
@keyframes blink {
  0%,
  90%,
  100% {
    height: 60px;
  }
  95% {
    height: 5px;
  }
}

@keyframes lookAround {
  0%,
  100% {
    left: 50%;
  }
  25% {
    left: 30%;
  }
  75% {
    left: 70%;
  }
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes progress {
  0% {
    width: 0%;
    margin-left: 0%;
  }
  50% {
    width: 70%;
    margin-left: 15%;
  }
  100% {
    width: 0%;
    margin-left: 100%;
  }
}

/* Responsive */
@media (max-width: 576px) {
  .loading-text {
    font-size: 1.5rem;
  }

  .loading-bar {
    width: 200px;
  }
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: linear-gradient(135deg, #1f045e 0%, #2d0870 100%);
    height: auto;
    min-height: 70px;
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Brand Logo */
.brand-logo-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.brand-logo-wrapper:hover {
    transform: scale(1.05);
}

.brand-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Brand Text */
.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: 2px;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #5971be, #3b4ca3);
    border-radius: 2px;
}

/* Book Appointment Button */
.navbar .btn-appointment {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(89, 113, 190, 0.4);
    transition: all 0.3s ease;
}

.navbar .btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(89, 113, 190, 0.6);
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.2);
}

/* Mobile Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(135deg, #1f045e 0%, #2d0870 100%);
        padding: 20px;
        margin-top: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1060;
    }
    
    .navbar-nav {
        margin-bottom: 15px;
    }
    
    .navbar-nav .nav-item {
        margin: 5px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar .btn-appointment {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .brand-tagline {
        display: none;
    }
}

@media (max-width: 576px) {
    .brand-logo-wrapper {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .navbar {
        min-height: 60px;
    }
}

/* Scroll Effect */
.navbar.scrolled {
    min-height: 65px;
    padding: 0.25rem 0;
}

.navbar.scrolled .brand-logo-wrapper {
    width: 45px;
    height: 45px;
}

.navbar.scrolled .brand-name {
    font-size: 1.1rem;
}


/* Premium WhatsApp Widget */
.whatsapp-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999 !important; /* Critical - highest z-index */
  font-family: "Poppins", sans-serif;
  pointer-events: auto !important;
}

/* Modern Chat Button */
.whatsapp-chat-button {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.whatsapp-chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  width: 36px;
  height: 36px;
  color: white;
  transition: transform 0.3s ease;
}

.whatsapp-chat-button:hover .whatsapp-icon {
  transform: scale(1.1);
}

/* Pulse Ring Animation */
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #25d366;
  border-radius: 50%;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Chat Popup */
.whatsapp-chat-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(20px);
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.whatsapp-chat-popup.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

/* Chat Header */
.chat-header {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clinic-avatar {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  backdrop-filter: blur(10px);
}

.chat-header-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.status-online {
  margin: 4px 0 0 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.close-chat {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.close-chat:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Chat Body */
.chat-body {
  padding: 20px;
  background: #f0f2f5;
  min-height: 200px;
}

.chat-message {
  display: flex;
  margin-bottom: 16px;
}

.message-bubble {
  background: white;
  padding: 12px 16px;
  border-radius: 8px 8px 8px 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  max-width: 85%;
}

.message-bubble p {
  margin: 0 0 4px 0;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.5;
}

.message-text {
  color: #4b5563 !important;
}

.message-time {
  font-size: 11px;
  color: #9ca3af;
  display: block;
  margin-top: 4px;
}

/* Quick Replies */
.quick-replies {
  margin-top: 16px;
}

.quick-replies-title {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
  font-weight: 500;
}

.quick-reply-btn {
  display: block;
  width: 100%;
  background: white;
  border: 1px solid #e5e7eb;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  text-align: left;
  font-size: 14px;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-reply-btn:hover {
  background: #f9fafb;
  border-color: #25d366;
  transform: translateX(4px);
}

/* Chat Footer */
.chat-footer {
  padding: 16px 20px;
  background: white;
  border-top: 1px solid #e5e7eb;
}

.start-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.start-chat-btn:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  color: white;
}

.start-chat-btn i {
  font-size: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-chat-widget {
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-chat-button {
    width: 56px;
    height: 56px;
  }

  .whatsapp-icon {
    width: 30px;
    height: 30px;
  }

  .whatsapp-chat-popup {
    width: calc(100vw - 32px);
    max-width: 360px;
    bottom: 72px;
  }
}

@media (max-width: 480px) {
  .whatsapp-chat-popup {
    width: calc(100vw - 24px);
    right: -8px;
  }
}

/* =========================
   BUTTONS
========================= */
.btn-appointment {
  background: linear-gradient(45deg, #5971be, #3b4ca3);
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 8px;
  border: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 6px 15px rgba(35, 57, 156, 0.3);
}

.btn-appointment:hover,
.btn-appointment:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(35, 57, 156, 0.4);
  outline: none;
}

.btn-appointment:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(35, 57, 156, 0.35);
}

/* =========================
   HERO / CAROUSEL
========================= */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 100%;
  width: 100%;
}

.carousel-item {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.carousel-item img.hero-img {
 display: none !important;
}

/* Overlay */
.hero-overlay {
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(51, 49, 83, 0.55);
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Content */
.hero-content {
  max-width: 520px;
  color: #ffffff;
  position: relative;
    z-index: 2;
}


/* Left spacing */
.hero-overlay .container {
  padding-left: 70px;
  padding-right: 40px;
}

/* Buttons spacing */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Animations*/
.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   APPOINTMENT STRIP
========================= */
.appointment-strip {
  background-color: #e3f2fd;
  padding: 50px 0;
}

/* =========================
   SECTION TITLES
========================= */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-weight: 600;
  /* color: #e6c6e1; */
  color: #f4dac3;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
  background-color: #79a0e5;
  color: #ffffff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-bg-text {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  color: rgba(0, 0, 0, 0.08);
  font-weight: 700;
  pointer-events: none;
  z-index: 0;
}


/* Enhanced Testimonial Cards */
.testimonial-card {
    background: rgba(144, 87, 244, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card i.fa-quote-left {
    color: #5971be;
    font-size: 1.5rem;
}

.testimonial-card .fa-star {
    font-size: 0.9rem;
    margin-right: 2px;
}

/* About Section Enhancements */
#about .fa-solid {
    color: #3b4ca3;
}

#about h6 {
    color: #0a1f44;
    font-weight: 600;
}

#about .text-primary {
    color: #3b4ca3 !important;
}

#about .alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #0a1f44;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    #about .col-md-5 img {
        margin-bottom: 30px;
    }
}


/* =========================
   FOOTER
========================= */
footer {
  background-color: #050235;
  color: #ffffff;
  padding-top: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* =========================
   RESPONSIVE
========================= */

/* @media (max-width: 991px) {
  .navbar-collapse {
     background: linear-gradient(135deg, #1f045e 0%, #2d0870 100%);
        padding: 20px;
        margin-top: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 1060;
    }
    
    .navbar-nav {
        margin-bottom: 15px;
    }
    
    .navbar-nav .nav-item {
        margin: 5px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .navbar .btn-appointment {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .brand-tagline {
        display: none;
    }
}

@media (max-width: 576px) {
    .brand-logo-wrapper {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .navbar {
        min-height: 60px;
    }
}


.navbar.scrolled {
    min-height: 65px;
    padding: 0.25rem 0;
}

.navbar.scrolled .brand-logo-wrapper {
    width: 45px;
    height: 45px;
}

.navbar.scrolled .brand-name {
    font-size: 1.1rem;
} */

/* Tablet */
@media (max-width: 991px) {
  .hero-full {
    height: 80vh;
     min-height: 500px;
  }

  .hero-overlay .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-content {
        max-width: 100%;
    }

  .hero-content h1 {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-full {
    height: 60vh;
  }

  .hero-overlay .container {
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content .lead {
    font-size: 0.95rem;
  }
}

/* Extra small */
@media (max-width: 480px) {
  .hero-full {
    height: 55vh;
  }

  .hero-content h1 {
    font-size: 1.45rem;
  }
}

/* iOS Safari fix */
@supports (-webkit-touch-callout: none) {
  .hero-full {
    height: -webkit-fill-available;
  }
}

/* Adjust hero image on smaller screens */

@media (max-width: 768px) {
  .hero-img {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
  }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1f045e 0%, #3b4ca3 100%);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 0;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Stat Box */
.stat-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
}

/* Service Card */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5971be, #3b4ca3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    color: #0a1f44;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    color: #6c757d;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Eyewear Card */
.eyewear-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.eyewear-header {
    text-align: center;
    color: #3b4ca3;
}

.feature-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    height: 100%;
}

.lens-types-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.lens-type {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.lens-type i {
    font-size: 2rem;
    color: #3b4ca3;
    margin-bottom: 10px;
}

/* Treatment Card */
.treatment-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}

.treatment-card:hover {
    border-color: #3b4ca3;
    transform: translateY(-5px);
}

.treatment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.treatment-icon i {
    font-size: 2rem;
    color: #3b4ca3;
}

.treatment-card ul {
    padding-left: 20px;
    color: #6c757d;
}

/* CTA Section */
.bg-primary {
    background: linear-gradient(135deg, #1f045e 0%, #3b4ca3 100%) !important;
}

.feature-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.feature-list li {
    padding: 10px 0;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}