/* Your provided toggle switch styles */
/* WhatsApp Button Styles */
        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-button i {
            color: white;
            font-size: 30px;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-links {
                justify-content: center;
            }
            
            .whatsapp-button {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
        }
@import url('https://fonts.googleapis.com/css2?family=Playwrite+MX+Guides&display=swap');
       /* .switch {
            position: relative;
            display: inline-block;
            margin: 0 5px;
        }
        
        .switch > span {
            position: absolute;
            top: 14px;
            pointer-events: none;
            font-family: 'Helvetica', Arial, sans-serif;
            font-weight: bold;
            font-size: 12px;
            text-transform: uppercase;
             width: 50%;
            text-align: center;
        }
        
        input.check-toggle-round-flat:checked ~ .off {
            color: #767676;
        }
        
        input.check-toggle-round-flat:checked ~ .on {
            color: #a1a1a1;
        }
        
        .switch > span.on {
            left: 0;
            padding-left: 2px;
            color: #767676;
        }
        
        .switch > span.off {
            right: 0;
            padding-right: 4px;
            color: #424242;
        }
        
        .check-toggle {
            position: absolute;
            margin-left: -9999px;
            visibility: hidden;
        }
        
        .check-toggle + label {
            display: block;
            position: relative;
            cursor: pointer;
            outline: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        input.check-toggle-round-flat + label {
            padding: 2px;
            width: 104px;
            height: 45px;
            -webkit-border-radius: 60px;
            -moz-border-radius: 60px;
            -ms-border-radius: 60px;
            -o-border-radius: 60px;
            border-radius: 60px;
        }
        
        input.check-toggle-round-flat + label:before, 
        input.check-toggle-round-flat + label:after {
            display: block;
            position: absolute;
            content: "";
        }
        
        input.check-toggle-round-flat + label:before {
            top: 2px;
            left: 2px;
            bottom: 2px;
            right: 2px;
            background-color: #78788029;
            -webkit-border-radius: 60px;
            -moz-border-radius: 60px;
            -ms-border-radius: 60px;
            -o-border-radius: 60px;
            border-radius: 60px;
        }
        
        input.check-toggle-round-flat + label:after {
            top: 4px;
            left: 4px;
            bottom: 4px;
            width: 48px;
            background-color: #fff;
            -webkit-border-radius: 52px;
            -moz-border-radius: 52px;
            -ms-border-radius: 52px;
            -o-border-radius: 52px;
            border-radius: 52px;
            -webkit-transition: margin 0.2s;
            -moz-transition: margin 0.2s;
            -o-transition: margin 0.2s;
            transition: margin 0.2s;
        }
        
        input.check-toggle-round-flat:checked + label {
        }
        
        input.check-toggle-round-flat:checked + label:after {
            margin-left: 44px;
        }*/
        
        /* Language toggle positioning */
       /* .language-toggle-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }*/

        /* -------------swticher css-----------------*/

        .language-switch {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .switch {
            position: relative;
            display: inline-block;
            width: 90px;
            height: 40px;
        }
        
        .switch input { 
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #9d9d9d;
            border-radius: 34px;
            transition: .4s;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 32px;
            width: 32px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            border-radius: 50%;
            transition: .4s;
        }
        
        input:checked + .slider {
            background-color: #f8f9fc;
        }
        
        input:checked + .slider:before {
            transform: translateX(50px);
            background-color: #2e59d9;
        }
        
        .slider:after {
            content: "EN";
            color: white;
            display: block;
            position: absolute;
            transform: translate(-50%, -50%);
            top: 50%;
            left: 60%;
            font-size: 12px;
            font-weight: 700;
        }
        
        input:checked + .slider:after {
            content: "BN";
            left: 40%;
            color: #2e59d9;
        }
        
         @media (max-width: 768px) {
            .hero-section {
                padding: 3rem 0;
            }
            
            .language-switch {
                top: 10px;
                right: 10px;
            }
            
            .switch {
                width: 70px;
                height: 30px;
            }
            
            .slider:before {
                height: 22px;
                width: 22px;
            }
            
            input:checked + .slider:before {
                transform: translateX(40px);
            }
        }
        /* Rest of your existing styles */
        :root {
            --primary-color: #4e73df;
            --secondary-color: #1cc88a;
            --accent-color: #f6c23e;
        }
        
        
        .hero-section-imge {
            height: 75vh;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }
    

       /* .hero-section-bg {
            background: #66c8e8;
            background: linear-gradient(90deg, rgba(102, 200, 232, 0.29) 0%, rgba(9, 121, 110, 0) 100%, rgba(0, 212, 255, 1) 100%);
            z-index: 1;
            opacity: 0.9;
        } */
        
        .hero-title {
            
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #2e3a4d;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: #6c757d;
            margin-bottom: 3rem;
        }
        
        .tagline {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 3rem;
        }
        
        /* Radio-style slider */
        .radio-slider {
            margin-top: 4rem;
            display: flex;
            gap: 1rem;
        }
        
        .radio-slider-btn {
            position: relative;
            flex: 1;
            height: 60px;
            border-radius: 30px;
            background: white;
            border: 2px solid #dee2e6;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #6c757d;
            cursor: pointer;
        }
        
        .radio-slider-btn.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            box-shadow: 0 5px 15px rgba(78, 115, 223, 0.3);
        }
        
        .radio-slider-btn:nth-child(1).active {
            background: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .radio-slider-btn:nth-child(2).active {
            background: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .radio-slider-btn:nth-child(3).active {
            background: var(--accent-color);
            border-color: var(--accent-color);
        }

        .main-card {
            border: none;
           
            height: 100%;
        }
        .feature-item {
            padding: 1.5rem;
           
            transition: background-color 0.3s;
        }
        .feature-item:hover {
            background-color: #f8f9fa;
        }
        .feature-item:last-child {
            border-bottom: none;
        }
        .card-icon {
            font-size: 2rem;
            color: #0d6efd;
            min-width: 50px;
            text-align: center;
        }
        .left-text {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .right-icon {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .feature-content {
            flex: 1;
        }
        .btn-sm {
            padding: 0.25rem 0.5rem;
            font-size: 0.875rem;
        }
        /* Pricing Section Styles */
        .pricing-section {
            background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
        }
        .stats-card {
            background-color: white;
            border-radius: 20px;
            padding: 26px;
            box-shadow: 10px 14px 84px rgba(160, 164, 171, 0.25);
        }
        .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        }

        .card-header {
            border-bottom: none;
            
        }

        /* Testimonials Section Styles */
        .testimonials-section {
            background-color: ;
        }

        .testimonials-section .card {
            border-radius: 12px;
        }

        .testimonials-section img {
            object-fit: cover;
        }


        :root {
            --primary-blue: #189FFF;
            --primary-purple: #7209b7;
            --dark-text: #2b2d42;
            --light-text: #8d99ae;
            --white: #ffffff;
            --light-bg: #f8f9fa;
        }
        
        body {
            
            color: var(--dark-text);
            background-color: var(--white);
            line-height: 1.6;
        }
        
        .hero-section {
            padding: 80px 0;
           
        }
        
        .headline {
            font-family: 'Poppins', sans-serif;  font-weight: 600;
            font-size: 50px;
            line-height: 1.2;
            margin-bottom: 60px;
           
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-item {
            display: flex;
            margin-bottom: 40px;
            position: relative;
            padding-left: 70px;
        }
        
        .feature-number {
            position: absolute;
            left: 0;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--light-text);
            opacity: 0.6;
        }
        
        .feature-item.active {
            border-left: 4px solid var(--primary-blue);
            padding-left: 66px;
        }
        
        .feature-icon {
            font-size: 1.5rem;
            margin-right: 20px;
            color: var(--primary-blue);
        }
        
        .feature-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 8px;
        }
        
        .feature-desc {
            color: var(--light-text);
            font-size: 1rem;
        }
        
        /* Enhanced Gradient Card */
        .case-study-card {
            background-image: url("https://pub-602bd23b4c2d4b7c84f9141692f1dabc.r2.dev/Hero-Banner.png");
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(67, 97, 238, 0.1);
            height: 100%;
            border: 1px solid rgba(67, 97, 238, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .case-study-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(114, 9, 183, 0.05) 70%, transparent 100%);
            z-index: 0;
        }
        
        .case-study-content {
            position: relative;
            z-index: 1;
        }
        
        .case-study-title {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
            line-height: 1.3;
            font-family: 'Poppins', sans-serif;
            
        }
        
        .case-study-meta {
            font-size: 0.9rem;
            color: var(--light-text);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .case-study-meta i {
            font-size: 0.8rem;
            opacity: 0.7;
        }
        
        .case-study-image {
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.2) 0%, rgba(114, 9, 183, 0.2) 100%);
            height: 200px;
            border-radius: 12px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-purple);
            border: 1px dashed rgba(114, 9, 183, 0.3);
        }
        
        .status-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .status-box {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .status-running {
            background-color: rgba(67, 97, 238, 0.2);
            color: var(--primary-blue);
            border: 1px solid rgba(67, 97, 238, 0.3);
        }
        
        .status-completed {
            background-color: rgba(40, 167, 69, 0.2);
            color: #28a745;
            border: 1px solid rgba(40, 167, 69, 0.3);
        }
        
        .status-failed {
            background-color: rgba(108, 117, 125, 0.2);
            color: #6c757d;
            border: 1px solid rgba(108, 117, 125, 0.3);
        }
        
        @media (max-width: 768px) {
            .headline {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }
            
            .feature-item {
                padding-left: 60px;
            }
            
            .feature-item.active {
                padding-left: 56px;
            }
            
            .case-study-card {
                margin-top: 40px;
            }
        }

        /* Contained CTA Section Styles */
.cta-contained-section {
    padding: 6rem 0;
}

.cta-box {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: none;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

.gradient-accent {
    background: #F6F6F9;
    background: linear-gradient(34deg, oklab(46.1% -0.018 -0.279), oklab(63.651% -0.0599 -0.17396 / 0.103), oklab(68.955% -0.04043 -0.14712 / 0), oklab(93.403% 0 -0.00011));
    z-index: 1;
    opacity: 0.9;
}

.z-index-2 {
    z-index: 2;
}

/* Text and Button Styling */
.cta-box h2 {
    line-height: 1.2;
    /*text-shadow: 0 2px 4px rgba(0,0,0,0.3);*/
}

.cta-box .lead {
    /*text-shadow: 0 1px 2px rgba(0,0,0,0.3);*/
    font-weight: 400;
}

.cta-box .btn-light {
    
    transition: all 0.3s ease;
    min-width: 200px;
    border: none;
}

.cta-box .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .cta-box {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .cta-contained-section {
        padding: 4rem 0;
    }
    
    .cta-box {
        min-height: 400px;
    }
    
    .cta-box h2 {
        font-size: 2.5rem;
    }
    
    .cta-box .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-box .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .gradient-accent {
        clip-path: polygon(0 50%, 100% 100%, 100% 100%, 0% 100%);
    }
}

/* Contact Info Styling */
.contact-info {
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-3px);
}

.contact-info i {
    min-width: 24px;
    text-align: center;
}

/** Text Gradient Example */ 
.text-gradient {
 color: #E04F67; 
 background-image: linear-gradient(45deg, #E04F67 , #00FFA2 , #C72C4A , #FF00D0 ); 
 background-clip: text; 
 -webkit-background-clip: text; 
 -webkit-text-fill-color: transparent; 
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info {
        padding: 1.5rem 1rem !important;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-info .fs-4 {
        font-size: 1.2rem;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

.sponsors-section {
            background: #f9f9f9;
            padding: 40px 0;
            overflow: hidden;
            position: relative;
        }
        
        .sponsors-title {
            text-align: center;
            font-size: 24px;
            margin-bottom: 30px;
            color: #333;
            font-weight: 600;
        }
        
        .sponsors-slider {
            display: flex;
            animation: scroll 25s linear infinite;
            width: calc(200px * 12); /* Double the width for seamless looping */
        }
        
        .sponsor-item {
            height: 80px;
            width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
            flex-shrink: 0;
        }
        
        .sponsor-logo {
            max-width: 100%;
            max-height: 100%;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }
        
        .slider-container {
            position: relative;
            overflow: hidden;
        }
        
        .slider-container::before,
        .slider-container::after {
            content: "";
            position: absolute;
            width: 100px;
            height: 100%;
            z-index: 2;
            top: 0;
        }
        
        .slider-container::before {
            left: 0;
            background: linear-gradient(to right, #f9f9f9 0%, transparent 100%);
        }
        
        .slider-container::after {
            right: 0;
            background: linear-gradient(to left, #f9f9f9 0%, transparent 100%);
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 6)); /* Half the width */
            }
        }
        
        @media (max-width: 768px) {
            .sponsor-item {
                width: 150px;
                height: 60px;
            }
            
            .sponsors-slider {
                width: calc(150px * 12);
                animation: scroll 20s linear infinite;
            }
            
            @keyframes scroll {
                100% {
                    transform: translateX(calc(-150px * 6));
                }
            }
        }

    body { font-family: 'Poppins', sans-serif;  font-weight: 500;
            font-style: normal; 
        }
    .nav-pills .nav-link {
      border-radius: 0;
      padding: 0.6rem;
      font-weight: bold;
      font-size: 1.1rem;
      color: #999;
      text-align: center;
    }
    .nav-pills .nav-link.active {
      background: none;
      color: #000;
      border-left: 4px solid #007bff;
    }
    .sticky-tabs {
      position: sticky;
      top: 100px;
    }
    .feature-content {
      padding-bottom: 0;
    }
    .icon {
      font-size: 2rem;
      color: #007bff;
      margin-bottom: 0.5rem;
    }
/*/////////////card Pricing/////////////////*/
        .poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: medium;
  line-height: 90px;
  letter-spacing: ;

}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.faq-section {
            padding: 80px 0;
            background-color: ;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            color: #2b2d42;
        }
        
        .accordion-item {
            margin-bottom: 15px;
            border-radius: 8px !important;
            border: 1px solid #e9ecef;
            overflow: hidden;
        }
        
        .accordion-button {
            font-weight: 600;
            color: #2b2d42;
            background-color: white;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            color: #189FFF;
            background-color: rgba(67, 97, 238, 0.05);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(67, 97, 238, 0.25);
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234361ee'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-body {
            color: #6c757d;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
        }

     .bottom-footer {
            background-color: #f8f9fa;
            color: #333;
            padding: 20px 0;
            font-family: 'Arial', sans-serif;
            border-top: 1px solid #e9ecef;
            font-size: 14px;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            flex-wrap: wrap;
        }
        
        .footer-left a {
            color: #6c757d;
            text-decoration: none;
            margin-right: 20px;
            transition: color 0.3s;
        }
        
        .footer-left a:hover {
            color: #0056b3;
        }
        
        .footer-center {
            color: #6c757d;
        }
        
        .footer-center i {
            color: #dc3545;
            margin: 0 3px;
        }
        
        .footer-right {
            display: flex;
            gap: 15px;
        }
        
        .footer-right a {
            color: #6c757d;
            transition: color 0.3s;
        }
        
        .footer-right a:hover {
            color: #0056b3;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-left, .footer-center, .footer-right {
                width: 100%;
                justify-content: center;
            }
            
            .footer-left {
                order: 1;
                margin-bottom: 5px;
            }
            
            .footer-right {
                order: 2;
                margin-bottom: 10px;
            }
            
            .footer-center {
                order: 3;
            }
        }


        