:root {
   --primary-dark: #0A0F2C;
   --surface-color: rgba(17, 22, 64, 0.9);
   --text-color: #E8E8F0;
   --primary-pink: #FF4DA6;
   --accent-blue: #1b7cc3;
   --primary-gradient: linear-gradient(90deg, var(--primary-pink), #8b5cf6);
}
html, body {
   overflow-x: hidden;
   max-width: 100%;
   }
   
   .container, .container-fluid {
   overflow: hidden;
   }
body {
   font-family: 'Space Grotesk', sans-serif;
   background-color: var(--primary-dark);
   color: var(--text-color);
   margin: 0;
   cursor: default;
   overflow-x: hidden;
}

/* --- Header & Navigation --- */
/* Water Wave Effect */
.wave {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(0, 150, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: waveAnim 0.8s ease-out forwards;
    z-index: 9999;
}

@keyframes waveAnim {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3);
    }
}

/* Click Droplet Effect */
.droplet {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    pointer-events: none;
    background: linear-gradient(45deg, #ff4d94, #1f77b9);
    transform: translate(-50%, -50%);
    animation: dropAnim 0.6s ease-out forwards;
    z-index: 9999;
}

@keyframes dropAnim {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
    }
}
#mainNav.bg-white {
   background-color: #f8fbff; !important;
   padding: 0;
}
#mainNav.bg-white .nav-link {
   color: #151a38;
}
.navbar-toggler-icon {
   filter: invert(1) brightness(2); /* Makes burger icon white on dark bg */
}

#mainNav.bg-white .navbar-toggler-icon {
   filter: invert(0); /* Makes burger icon black on white sticky header */
}

.nav-link {
   color: #ffffff;
   font-weight: 700;
}
/* --- Offcanvas Mobile Menu --- */
.offcanvas {
   background-color: var(--primary-dark) !important;
   color: var(--text-color);
}
@media (max-width: 678px) {
   .text-center{
text-align: left!important;
   }
   .navbar-toggler {
      border-color: #171c39 !important;
      color: white;
      background: white;
      font-size: 16px;
  }
   .navbar-toggler-icon {
       filter: invert(1) brightness(200%);
   }
}
/* Dropdown Fix for Mobile Alignment */
@media (max-width: 991px) {
   .offcanvas .dropdown-menu {
       position: static !important;
       background: rgba(255, 255, 255, 0.05) !important;
       border: none;
       padding-left: 20px;
       transform: none !important;
   }
   .offcanvas .dropdown-item {
       color: var(--accent-blue) !important;
       padding: 10px 0;
   }
}

/* --- Hero Section --- */
.hero-section {
   min-height: 100vh;
   padding: 140px 0 80px 0;
   background: radial-gradient(circle at 80% 20%, #1a1f3d 0%, var(--primary-dark) 100%);
}

.gradient-text {
   background: linear-gradient(90deg, var(--primary-pink), var(--accent-blue));
   display: inline-block;
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-weight: 700;
   }

.hero-desc {
   font-size: 1.1rem;
   color: rgb(232 232 240 / 91%);
   max-width: 500px;
}
.navbar-brand img { width: 200px; height: auto; }
/* --- Dashboard Card & Wave --- */
.dashboard-card {
   background: var(--surface-color);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 28px;
   backdrop-filter: blur(20px);
   position: relative;
   overflow: hidden; /* Important to keep wave inside */
   margin-top: 50px;
}

.badge-active {
   font-size: 0.75rem;
   color: #00ff88;
   background: rgba(0, 255, 136, 0.1);
   padding: 5px 12px;
   border-radius: 20px;
}

.stat-box {
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.05);
   padding: 20px;
   border-radius: 20px;
   text-align: center;
   transition: 0.3s;
}

.accent-text {
   color: var(--accent-blue);
}

.btn-glow {
   background: linear-gradient(90deg, var(--primary-pink), var(--accent-blue));
   color: white !important;
   border: none;
   padding: 12px 30px;
   border-radius: 50px;
   font-weight: 600;
   transition: 0.3s;
   text-decoration: none;
   display: inline-block;
}

/* Internal Wave Animation */
.dashboard-wave-container {
   position: absolute;
   bottom: -1px;
   left: 0;
   width: 100%;
   line-height: 0;
}

.waves {
   width: 100%;
   height: 90px;
   transition: height 0.5s ease;
}

.moving-waves > use {
   animation: move-forever 20s cubic-bezier(.55,.5,.45,.5) infinite;
}
.moving-waves > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.moving-waves > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.moving-waves > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }

@keyframes move-forever {
   0% { transform: translate3d(-90px, 0, 0); }
   100% { transform: translate3d(85px, 0, 0); }
}
 /* --- About Section CSS --- */
 .about-section-premium {
   background-color: #f8fbff; /* Light Background */
   padding: 100px 0;
   overflow: hidden;
   }
   .about-image-container {
   position: relative;
   padding-bottom: 40px;
   }
   .image-wrapper img {
   width: 100%;
   transition: transform 0.5s ease;
   }
   /* Floating Experience Badge */
   .experience-badge {
   position: absolute;
   bottom: 0;
   right: 10%;
   background: #fff;
   padding: 25px 35px;
   border-radius: 20px;
   text-align: center;
   animation: floatBadge 4s ease-in-out infinite;
   }
   @keyframes floatBadge {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(-20px); }
   }
   .badge-glow {
   position: absolute;
   top: 0; left: 0; width: 100%; height: 100%;
   background: linear-gradient(135deg, rgba(255, 77, 166, 0.05), rgba(77, 166, 255, 0.05));
   border-radius: 20px;
   }
   .experience-badge h2 {
   color: #0076bd;
   font-weight: 700;
   font-size: 2.5rem;
   }
   .experience-badge p {
   font-size: 0.85rem;
   color: #666;
   font-weight: 500;
   }
   /* Content Styling */
   .about-tag {
   background: rgba(255, 64, 129, 0.1);
   color: #ff4081;
   letter-spacing: 1px;
   font-weight: 600;
   padding: 8px 20px;
   }
   /* Gradient Heading Fix */
   .gradient-heading {
   background: linear-gradient(90deg, #111, #444, #0076bd);
   background-size: 200%;
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: inline-block;
   }
   /* Feature Grid Styling */
   .feature-box {
   display: flex;
   align-items: center;
   gap: 15px;
   padding: 10px;
   transition: 0.3s;
   }
   .feature-box:hover { transform: translateX(10px); }
   .feature-box i { font-size: 1.5rem; opacity: 0.8; }
   .feature-box span { font-weight: 600; color: #444; }
   /* Responsive Adjustments */
   @media (max-width: 991px) {
   .about-section-premium { padding: 60px 0; }
   .about-content-ps {margin-top: 50px; }
   .experience-badge { right: 50%; transform: translateX(50%); bottom: -20px; }
   @keyframes floatBadge {
   0%, 100% { transform: translateX(50%) translateY(0); }
   50% { transform: translateX(50%) translateY(-15px); }
   }
   .gradient-heading { font-size: 2.2rem; }
   .feature-box { justify-content: center; }
   }
   /* --- Services Section CSS --- */
   .services-section-light {
       background-color: #ffffff; /* Light Background */
       padding: 90px 0;
       font-family: 'Space Grotesk', sans-serif;
       }
       .service-tag {
       background: rgba(255, 64, 129, 0.1);
       color: #ff4081;
       font-weight: 600;
       padding: 8px 20px;
       letter-spacing: 1px;
       }
       /* Card Styling */
       .service-card-premium {
       background: #fff;
       padding: 30px;
       border-radius: 20px;
       border: 1px solid rgba(0, 0, 0, 0.05);
       height: 100%;
       transition: all 0.4s ease;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
       }
       .service-card-premium:hover {
       transform: translateY(-10px);
       box-shadow: 0 20px 40px rgba(0, 118, 189, 0.1);
       border-color: rgba(0, 118, 189, 0.2);
       }
       /* Icon Wrappers */
       .icon-wrapper {
       width: 50px;
       height: 50px;
       display: flex;
       align-items: center;
       justify-content: center;
       border-radius: 12px;
       margin-bottom: 20px;
       font-size: 1.5rem;
       }
       .bg-soft-blue { background: rgba(77, 166, 255, 0.1); color: #0076bd; }
       .bg-soft-pink { background: rgba(255, 77, 166, 0.1); color: #ff4da6; }
       .bg-soft-purple { background: rgba(166, 77, 255, 0.1); color: #a64dff; }
       .bg-soft-info { background: rgba(77, 255, 230, 0.1); color: #00b395; }
       .service-card-premium h4 {
       font-size: 1.25rem;
       font-weight: 700;
       color: #111;
       margin-bottom: 15px;
       }
       .service-card-premium p {
       font-size: 0.9rem;
       color: #666;
       line-height: 1.6;
       margin-bottom: 0;
       }
       /* Image Holder */
       .service-image-holder {
       position: relative;
       padding: 10px;
       }
       .service-image-holder img {
       width: 100%;
       object-fit: cover;
       position: relative;
       }
       .image-overlay-glow {
       position: absolute;
       top: 0;
       right: 0;
       width: 100%;
       height: 100%;
       background: radial-gradient(circle, rgba(0, 118, 189, 0.1) 0%, transparent 70%);
       }
       /* Responsive */
       @media (max-width: 991px) {
       .services-section-light { padding: 60px 0; }
       .service-image-holder { margin-top: 40px; }
       .text-center h2 { font-size: 2.2rem; }
       }

        /* --- Process Section Dark CSS --- */
        .process-section-dark {
           background-color: #05081a; /* Deep Dark Blue/Black */
           padding: 100px 0;
           font-family: 'Space Grotesk', sans-serif;
           color: #fff;
           overflow: hidden;
           }
           .process-tag {
           background: rgba(255, 64, 129, 0.15);
           color: #ff4081;
           border: 1px solid rgba(255, 64, 129, 0.3);
           padding: 8px 20px;
           font-weight: 600;
           letter-spacing: 1px;
           }
           .process-grid { position: relative; }
           /* Connecting Line Animation */
           .process-line {
           position: absolute;
           top: 45%;
           left: 5%;
           right: 5%;
           height: 2px;
           background: linear-gradient(90deg, #ff4081, #a64dff, #0076bd, #00ffcc);
           opacity: 0.2;
         
           }
           /* Process Card */
           .process-card {
           background: rgba(255, 255, 255, 0.03);
           border: 1px solid rgba(255, 255, 255, 0.08);
           border-radius: 24px;
           padding: 40px 30px;
           text-align: center;
           transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
           height: 100%;
           position: relative;
           }
           /* Constant Pulse Animation (Bina Hover Ke) */
           .icon-sphere {
           width: 70px;
           height: 70px;
           background: rgba(255, 255, 255, 0.05);
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           margin: 0 auto 25px;
           font-size: 1.5rem;
           color: var(--accent);
           position: relative;
           border: 1px solid rgba(255, 255, 255, 0.1);
           }
           .pulse-ring {
           position: absolute;
           width: 100%;
           height: 100%;
           border-radius: 50%;
           border: 2px solid var(--accent);
           opacity: 0;
           animation: constantPulse 3s infinite;
           }
           @keyframes constantPulse {
           0% { transform: scale(1); opacity: 0.5; }
           100% { transform: scale(1.6); opacity: 0; }
           }
           .step-number {
           font-size: 3rem;
           font-weight: 800;
           opacity: 0.05;
           position: absolute;
           top: 10px;
           right: 20px;
           color: #fff;
           }
           .process-card h4 {
           font-size: 1.4rem;
           font-weight: 700;
           margin-bottom: 15px;
           color: #eee;
           }
           .process-card p {
           font-size: 0.9rem;
           color: #aaa;
           line-height: 1.6;
           }
           /* Hover State */
           .process-card:hover {
           background: rgba(255, 255, 255, 0.07);
           transform: translateY(-15px);
           border-color: var(--accent);
           box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
           0 0 20px rgba(var(--accent-rgb), 0.2);
           }
           .process-card:hover .icon-sphere {
           background: var(--accent);
           color: #fff;
           box-shadow: 0 0 30px var(--accent);
           }
           /* Responsive */
           @media (max-width: 991px) {
           .process-card { margin-bottom: 20px; }
           .step-number { font-size: 2rem; }
           }
           /* Custom Styling for Interactivity */
        .permotion, .contact-section{
           padding: 100px 0px;
           }
           .promo-card {
           transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
           cursor: pointer;
           min-height: 250px;
           }
           .promo-card:hover {
           transform: translateY(-8px);
           }
           .promo-card img {
           transition: transform 0.6s ease;
           }
           .promo-card:hover img {
           transform: scale(1.08);
           }
           /* Overlay Gradient for Text Readability */
           .promo-overlay {
           position: absolute;
           top: 0; left: 0; width: 100%; height: 100%;
           background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
           opacity: 0.9;
           transition: opacity 0.3s ease;
           }
           .promo-card:hover .promo-overlay {
           opacity: 1;
           background: linear-gradient(0deg, rgba(255, 77, 148, 0.4) 0%, rgba(0,0,0,0.1) 100%);
           }
           /* Animated Background Blobs */
           .promo-blob-1, .promo-blob-2 {
           position: absolute;
           width: 400px;
           height: 400px;
           border-radius: 50%;
           filter: blur(80px);
           opacity: 0.4;
           
           animation: promoFloat 20s infinite alternate ease-in-out;
           }
           .promo-blob-1 { background: #ffe4e6; top: -10%; left: -5%; }
           .promo-blob-2 { background: #e0f2fe; bottom: -10%; right: -5%; animation-delay: -5s; }
           @keyframes promoFloat {
           0% { transform: translate(0, 0) scale(1); }
           100% { transform: translate(40px, 40px) scale(1.1); }
           }
           /* Bootstrap 5 object-fit fallback if needed */
           .object-fit-cover { object-fit: cover; }

           /* Background Animation Blobs */
        .contact-bg-elements div {
           position: absolute;
           filter: blur(100px);
        
           border-radius: 50%;
           opacity: 0.4;
           animation: contactFloat 20s infinite alternate ease-in-out;
           }
           .c-blob-1 { width: 450px; height: 450px; background: #ffe4e6; top: -10%; right: -5%; }
           .c-blob-2 { width: 400px; height: 400px; background: #e0f2fe; bottom: -5%; left: -5%; animation-delay: -5s; }
           @keyframes contactFloat {
           0% { transform: translate(0,0) scale(1); }
           100% { transform: translate(40px, 40px) scale(1.1); }
           }
           /* Input Styling */
           .custom-input {
           background: #fbfbfb !important;
           border: 1px solid #eee !important;
           border-radius: 10px !important;
           padding: 12px 15px !important;
           font-size: 15px;
           }
           .custom-input:focus {
           border-color: #ff4d94 !important;
           background: #fff !important;
           box-shadow: 0 4px 12px rgba(255, 77, 148, 0.08) !important;
           }
            /* Dark Theme Core Styles */
        .testimonial-dark {
           background-color: #0b0f19; /* Rich Dark Background */
           position: relative;
           padding: 100px 0;
           }
           /* Animated Glows */
           .testimonial-blobs div {
           position: absolute;
           width: 350px;
           height: 350px;
           border-radius: 50%;
           filter: blur(100px);
           opacity: 0.2;

           animation: floatMove 15s infinite alternate ease-in-out;
           }
           .t-blob-1 { background: #ff4d94; top: 10%; left: -5%; }
           .t-blob-2 { background: #4dabff; bottom: 10%; right: -5%; animation-delay: -5s; }
           @keyframes floatMove {
           0% { transform: translate(0,0); }
           100% { transform: translate(50px, 50px); }
           }
           /* Card Styling */
           .testi-card {
           background: rgba(255, 255, 255, 0.03); /* Glassmorphism */
           border: 1px solid rgba(255, 255, 255, 0.08);
           backdrop-filter: blur(10px);
           transition: all 0.4s ease;
           position: relative;
           }
           .testi-card:hover {
           transform: translateY(-10px);
           background: rgba(255, 255, 255, 0.05);
           border-color: rgba(255, 77, 148, 0.5);
           box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
           }
           /* Active Highlight (Middle Card) */
           .active-testi {
           border-color: rgba(255, 77, 148, 0.3);
           background: rgba(255, 255, 255, 0.06);
           }
           .text-light-50 {
               color: rgb(255 255 255 / 84%) !important;
           }
           /* Image Styling */
           .testi-card img {
           border: 2px solid rgba(255, 77, 148, 0.2);
           }
           /* --- Professional Footer Section --- */
.footer-section {
   background-color: #05081a; /* Background se thoda dark for depth */
   padding: 80px 0 30px;
   color: var(--text-color);
   border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo and Description */
.footer-brand .logo-text {
   font-size: 1.8rem;
   font-weight: 800;
   background: linear-gradient(90deg, var(--primary-pink), var(--accent-blue));
   -webkit-text-fill-color: transparent;
   margin-bottom: 20px;
   display: inline-block;
}

.footer-desc {
   /*color: rgba(232, 232, 240, 0.6);*/
   max-width: 320px;
}

/* Titles */
.footer-title {
   font-weight: 700;
   margin-bottom: 25px;
   color: #fff;
   letter-spacing: 0.5px;
}

/* Links Alignment Fix */
.footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
}

.footer-links li {
   margin-bottom: 12px;
}

.footer-links a {
   color: rgba(232, 232, 240, 0.6);
   text-decoration: none;
   transition: all 0.3s ease;
   display: inline-block;
}

.footer-links a:hover {
   color: var(--primary-pink);
   transform: translateX(5px); /* Chota sa slide effect */
}

/* Social Icons */
.social-links {
   display: flex;
   gap: 12px;
   margin-top: 25px;
}

.social-icon {
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--text-color);
   transition: all 0.3s ease;
}

.social-icon:hover {
   background: var(--primary-gradient);
   border-color: transparent;
   transform: translateY(-5px);
   color: white;
}

/* Newsletter Input Fix */
.newsletter-box {
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 50px;
   padding: 5px;
   display: flex;
   align-items: center;
}

.newsletter-box .form-control {
   background: transparent;
   border: none;
   color: white;
   padding-left: 15px;
}

.newsletter-box .form-control::placeholder {
   color: rgba(255, 255, 255, 0.3);
}

/* Copyright Section */
.footer-bottom {
   margin-top: 60px;
   padding-top: 25px;
   border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Alignment */
@media (max-width: 991px) {
   .footer-section {
       padding: 60px 0 20px;
   }
   .navbar-brand img {
      width: 160px;
      height: auto;
  }
   .footer-desc {
      width: 100%;
   }
   .social-links {
       justify-content: center;
   }
   .newsletter-box {
       max-width: 350px;
       margin: 0 auto;
   }
}
.why-choose-us-clean {
   background-color: #ffffff !important;
   color: #333;
}

.text-pink { color: #FF4DA6; }
.text-blue { color: #1b7cc3; }
.ls-2 { letter-spacing: 2px; }

.section-desc {
   font-size: clamp(1rem, 1.2vw, 1.1rem);
   max-width: 650px;
   line-height: 1.6;
}

.feature-item {
   padding: 20px;
   transition: all 0.3s ease;
   border-radius: 20px;
}

.feature-item:hover {
   background-color: #f8f9fa; 
   transform: translateY(-5px);
}

.icon-circle {
   width: 65px;
   height: 65px;
   background: #f0f4f8; 
   color: #1b7cc3;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   font-size: 1.6rem;
   transition: 0.3s;
}

.feature-item:hover .icon-circle {
   background: #1b7cc3;
   color: #fff;
   box-shadow: 0 10px 20px rgba(77, 166, 255, 0.3);
}

/* Typography - Flexible sizes */
.feature-heading {
   font-size: clamp(1.2rem, 1.5vw, 1.4rem);
   font-weight: 700;
   color: #0A0F2C; /* Dark Blue for text */
   margin-bottom: 15px;
}

.feature-info {
   font-size: clamp(0.9rem, 1vw, 1rem);
   color: #666; /* Gray text for description */
   line-height: 1.7;
}

/* Responsive Alignment */
@media (max-width: 768px) {
    .fixed-top {
    background: #f7fdfe;
            padding: 6px 0;
}
.container, .container-fluid {
    padding: 0px 20px;
}
   .icon-sphere {

      margin: 40px 0px;
   }
   .process-card{
      text-align: left;
   }
   .icon-circle {
      margin: 20px 0px;
   }
}

/* --- Client Logos Section --- */
.client-logos-section {
   background-color: #ffffff; /* Light background as requested */
   border-top: 1px solid #f0f0f0;
   padding: 80px 0;
}

.ls-2 {
   letter-spacing: 2px;
}
.fixed-top {
   position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #0a0f2c;
    z-index: 1030;
}
.client-logo-box {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 10px;
   transition: all 0.4s ease;
}

.client-img {
   max-width: 130px;
   height: auto;
   transition: all 0.3s ease;
}



/* Mobile par logos thode chote dikhein */
@media (max-width: 576px) {
   .client-img {
       max-width: 100px;
   }
}
.footer-section a{
   color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgb(10 15 44) !important;
}
@media (min-width: 992px) {
.left-text {
    height: 700px !important;
    overflow-y: auto !important; 
    position: relative;
    scrollbar-width: none;
    transition: all 0.3s ease;
}

.left-text:hover {
    scrollbar-width: thin;
    scrollbar-color: #ff4b91 transparent;
}


.left-text::-webkit-scrollbar {
    width: 5px;
}


.left-text::-webkit-scrollbar-track {
    background: transparent;
}


.left-text::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.left-text:hover::-webkit-scrollbar-thumb {
    background: #ff4b91; /* Aapka Pink Color */
}

.left-text:hover::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
}
}
/* Custom FAQ Styling */
.custom-faq .accordion-item {
    border: 1px solid #eee !important;
}

.custom-faq .accordion-button {
    color: #001d3d;
    background-color: #fff;
    padding: 20px;
    box-shadow: none !important;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: #ff4b91; /* Pink color when open */
    background-color: #fdf2f7; /* Very light pink background */
}

/* Arrow icon color change */
.custom-faq .accordion-button::after {
    filter: grayscale(1);
}

.custom-faq .accordion-button:not(.collapsed)::after {
    filter: none; /* Shows default or you can customize icon */
}

.custom-faq .accordion-body {
    padding: 20px;
    line-height: 1.6;
    background-color: #fff;
}
.mv-card {
    background: rgba(255, 255, 255, 0.03); /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
    z-index: 1;
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: rgba(255, 75, 145, 0.4); /* Border light up on hover */
}

.mv-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.mv-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
}

.mv-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.text-pink {
    color: #ff4b91 !important;
    font-size: 1.5rem;
    line-height: 1;
    margin-right: 10px;
}

/* Icon Box Animation */
.mv-icon-box {
    display: inline-block;
    padding: 15px;
    background: rgba(255, 75, 145, 0.1);
    border-radius: 18px;
    margin-bottom: 25px;
}

.mv-card:hover .mv-icon-box {
    animation: pulse-pink 2s infinite;
}

@keyframes pulse-pink {
    0% { box-shadow: 0 0 0 0 rgba(255, 75, 145, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 75, 145, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 75, 145, 0); }
}

/* whatsaap icon css */
   .whatsapp {
    position: fixed;
    bottom: 15%;
    right: 15px;
    cursor: pointer;
    z-index: 99;
}