
    /* Base Typography */
    body {
        font-family: 'Anek Bangla', sans-serif !important;
        color: #353642;
        overflow-x: hidden;
        scroll-behavior: smooth;
        /* padding-top: 80px; */
    }

    section {
        scroll-margin-top: 90px;
    }


    /* Colors */
    :root {
        --brand-color: #203F92;
        --brand-hover: #152a61;
        --dark-gray: #232323;
        --light-gray: #f8f9fa;
        --highlight: #30BD9B;
        --blue-accent: #2C3E50;
    }

    /* Utility Classes */
    .text-highlight {
        color: var(--brand-color);
        font-weight: 700;
    }

    .bg-base-color {
        background-color: var(--brand-color);
    }

    .text-dark-gray {
        color: var(--dark-gray);
    }

    /* Header */
    .header-top-bar {
        background: linear-gradient(to right, #203F92, #1a252f);
        padding: 10px 0;
        color: white;
        font-size: 14px;
    }

    .navbar {
        background: white;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        padding: 1px 0;
    }

    .navbar-brand img {
        max-height: 50px;
    }

    .nav-link {
        color: #333 !important;
        font-weight: 600;
        margin: 10px 10px;
    }

    /* Hero Carousel Section */
    .hero-slider-section {
        position: relative;
        padding: 0;
    }

    .hero-slide-item {
        height: 700px;
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: center;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(32, 63, 146, 0.75);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: white;
    }

    .hero-badge {
        background: rgba(255, 255, 255, 0.2);
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 20px;
        display: inline-block;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .carousel-indicators li {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.5);
    }

    .carousel-indicators .active {
        background-color: #fff;
        width: 30px;
        border-radius: 10px;
    }

    /* Feature Boxes */
    .feature-box {
        background: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        border-bottom: 3px solid transparent;
    }

    .feature-box:hover {
        transform: translateY(-5px);
        border-bottom: 3px solid var(--brand-color);
    }

    .feature-icon {
        font-size: 30px;
        color: var(--brand-color);
        margin-bottom: 20px;
    }

    /* Feature Highlights */
    .feature-highlight-section {
        padding: 80px 0;
        border-bottom: 1px solid #eee;
    }

    .feature-highlight-section:nth-child(even) {
        background-color: #fff;
    }

    .feature-highlight-section:nth-child(odd) {
        background-color: #f9f9f9;
    }

    .feature-highlight-img {
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
        width: 100%;
        height: auto;
    }

    .feature-highlight-img:hover {
        transform: scale(1.02);
    }

    .feature-list-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }

    .feature-list-icon {
        min-width: 30px;
        height: 30px;
        background: rgba(32, 63, 146, 0.1);
        color: var(--brand-color);
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        margin-right: 15px;
        margin-top: 3px;
    }

    /* Pain Points */
    .pain-point-item {
        background: #fff0f3;
        padding: 15px 20px;
        border-radius: 6px;
        margin-bottom: 15px;
        border-left: 4px solid #dc3545;
    }

    /* Buttons */
    .btn-custom {
        background: var(--brand-color);
        color: white;
        padding: 16px 30px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(32, 63, 146, 0.4);
        transition: all 0.3s;
        border: 2px solid var(--brand-color);
    }

    .btn-custom:hover {
        background: white;
        color: #000 !important;
        transform: translateY(-2px);
        text-decoration: none;
    }

    .btn-custom-light {
        background: white;
        color: var(--brand-color);
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
    }

    .btn-custom-light:hover {
        background: #f0f0f0;
        color: var(--brand-color);
        transform: translateY(-2px);
        text-decoration: none;
    }

    .btn-outline-custom {
        background: transparent;
        border: 2px solid var(--brand-color);
        color: var(--brand-color);
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 700;
        margin-left: 15px;
        transition: all 0.3s;
    }

    .btn-outline-custom:hover {
        background: var(--brand-color);
        color: white;
        text-decoration: none;
    }

    .btn-outline-light-hero {
        background: transparent;
        border: 2px solid white;
        color: white;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 700;
        margin-left: 15px;
        transition: all 0.3s;
    }

    .btn-outline-light-hero:hover {
        background: white;
        color: var(--brand-color);
        text-decoration: none;
    }

    /* Video Section */
    .video-section {
        position: relative;
        padding: 100px 0;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2070&auto=format&fit=crop');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        text-align: center;
        color: white;
    }

    .video-play-btn {
        width: 80px;
        height: 80px;
        background: white;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-color);
        font-size: 30px;
        animation: pulse-white 2s infinite;
        transition: all 0.3s;
        margin-bottom: 20px;
        cursor: pointer;
    }

    .video-play-btn:hover {
        transform: scale(1.1);
        color: #D94E6F;
    }

    @keyframes pulse-white {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        }
    }

    /* Form Styling (Enhanced for Bangla) */
    .form_box {
        margin-bottom: 20px;
        position: relative;
    }

    .form_box input,
    .form_box textarea,
    .form_box select {
        width: 100%;
        padding: 5px 20px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background-color: #fff;
        transition: all 0.3s;
        font-size: 15px;
        color: #333;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    }

    .form_box input::placeholder,
    .form_box textarea::placeholder {
        color: #070404;
        font-size: 14px;
    }

    .form_box input:focus,
    .form_box textarea:focus,
    .form_box select:focus {
        border-color: var(--brand-color);
        background-color: #fff;
        outline: none;
        box-shadow: 0 4px 15px rgba(32, 63, 146, 0.1);
    }

    .form-button button {
        width: 100%;
        padding: 15px;
        background: var(--brand-color);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s;
        font-size: 16px;
        cursor: pointer;
    }

    .form-button button:hover {
        background: var(--brand-hover);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(32, 63, 146, 0.3);
    }

    .modal-header {
        border-bottom: none;
        padding-bottom: 0;
    }

    .modal-title {
        color: var(--brand-color);
        font-weight: 700;
    }

    /* Client Slider */
    .client-slider-container {
        overflow: hidden;
        white-space: nowrap;
        position: relative;
    }

    .client-slider-container:before,
    .client-slider-container:after {
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        content: "";
        z-index: 2;
    }

    .client-slider-container:before {
        left: 0;
        background: linear-gradient(to right, white, transparent);
    }

    .client-slider-container:after {
        right: 0;
        background: linear-gradient(to left, white, transparent);
    }

    .client-logos {
        display: inline-block;
        animation: slide 30s infinite linear;
    }

    /* Slower speed for more logos */
    .client-logos img {
        height: 160px;
        margin: 0 10px;
        filter: grayscale(0%);
        opacity: 0.7;
        transition: all 0.3s;
    }

    .client-logos img:hover {
        filter: grayscale(100%);
        opacity: 1;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* Changed to -50% for seamless loop */


    /* Testimonials */
    .testimonial-card {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        text-align: center;
        margin: 20px 10px;
    }

    .testimonial-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 15px;
        border: 3px solid var(--brand-color);
    }

    /* Pricing */
    .pricing-card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .pricing-header {
        background: var(--brand-color);
        color: white;
        padding: 30px 20px;
    }

    .pricing-body {
        padding: 30px 20px;
    }

    .pricing-list li {
        margin-bottom: 10px;
        color: #666;
    }

    /* Comparison Table */
    .comparison-table th {
        background: var(--blue-accent);
        color: white;
        border: none;
    }

    .comparison-table td {
        vertical-align: middle;
        font-weight: 500;
    }

    .check-icon {
        color: #2ecc71;
        font-size: 1.2rem;
    }

    .times-icon {
        color: #e74c3c;
        font-size: 1.2rem;
    }

    /* Sticky Button Container */
    .sticky-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
    }

    /* WhatsApp Button */
    .wa-btn {
        width: 50px;
        height: 50px;
        background-color: #25D366;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: transform 0.3s;
    }

    .wa-btn:hover {
        transform: scale(1.1);
        color: white;
    }

    /* Demo Button */
    .demo-btn button {
        background:#203F92; /* Brand Color */
        color: #fff;
        border: none;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        animation: pulse 2s infinite;
    }

    /* Pulse Animation */
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(13, 110, 253, 0); }
        100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
    }


    /* FAQ */
    .card-header {
        background-color: #fff;
        border-bottom: 1px solid #eee;
    }

    .btn-link {
        color: #333;
        font-weight: 600;
        text-decoration: none;
        font-size: 1.1rem;
    }

    .btn-link:hover {
        text-decoration: none;
        color: var(--brand-color);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .hero-slide-item {
            height: 550px;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 2rem !important;
        }

        .hero-content p {
            font-size: 1rem !important;
        }

        .btn-outline-custom,
        .btn-outline-light-hero {
            margin-left: 0;
            margin-top: 15px;
            width: 100%;
            display: block;
        }

        .btn-custom,
        .btn-custom-light {
            width: 100%;
            display: block;
        }

        .sticky-btn {
            display: none;
        }

        .client-logos img {
            height: 120px;
            margin: 0 15px;
        }

        .feature-highlight-section {
            padding: 50px 0;
        }

        .feature-highlight-img {
            margin-top: 30px;
        }

        .order-mobile-2 {
            order: 2 !important;
        }

        .order-mobile-1 {
            order: 1 !important;
        }
    }

     /* Footer Styling */
     footer {
        background-color: #1a1a1a !important; /* Deep dark background */
    }

    .footer-logo img {
        max-width: 160px;
        background: rgba(255, 255, 255, 0.9);
        padding: 8px 15px;
        border-radius: 8px;
    }

    .footer-text p {
        line-height: 1.6;
        font-size: 0.95rem;
        color: #b0b0b0;
    }

    /* Social Icons */
    .social-icons li {
        display: inline-block;
        margin-right: 10px;
    }

    .social-icons li a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-icons li a:hover {
        transform: translateY(-3px);
    }
    .social-icons li a.facebook:hover { background-color: #1877F2; }
    .social-icons li a.instagram:hover { background-color: #E4405F; }
    .social-icons li a.twitter:hover { background-color: #1DA1F2; }
    .social-icons li a.youtube:hover { background-color: #FF0000; }

    /* Quick Links */
    .footer-link {
        color: #b0b0b0;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        transition: 0.3s;
        position: relative;
        padding-left: 0;
    }

    .footer-link:hover {
        color: #fff;
        padding-left: 8px;
    }

    .footer-link::before {
        content: "\f054"; /* FontAwesome Chevron Right */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 10px;
        opacity: 0;
        position: absolute;
        left: -15px;
        top: 4px;
        transition: 0.3s;
    }

    .footer-link:hover::before {
        opacity: 1;
        left: 0;
    }

    /* Contact Info */
    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
        color: #b0b0b0;
    }

    .contact-item i {
        color: #0d6efd; /* Bootstrap Primary Color */
        margin-top: 5px;
        margin-right: 12px;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

    .section-title {
        color: #fff;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 10px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 50px;
        background-color: #0d6efd;
    }
