        /* Global Styles */
        :root {
            --primary-color: #EE1754;
            --secondary-color: #c51143;
            --accent-color: #ff4d7a;
            --text-color: #1f2937;
            --light-text: #6b7280;
            --background-color: #f9fafb;
            --white: #ffffff;
            --gray-100: #f3f4f6;
            --dark-bg: #0f172a;
            --dark-card: #1e293b;
            --dark-text: #f8fafc;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Philosopher', sans-serif;
            color: var(--text-color);
            background-color: var(--background-color);
            line-height: 1.6;
            transition: var(--transition);
            top: 0 !important;
        }

        body.dark-mode {
            background-color: var(--dark-bg);
            color: var(--dark-text);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            border: none;
            font-family: 'Philosopher', sans-serif;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(238, 23, 84, 0.2);
        }

        .btn-outline {
            border: 2px solid var(--primary-color);
            color: black;
            background: transparent;
        }

        section {
            padding: 50px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--text-color);
            position: relative;
            font-weight: 700;
        }

        .dark-mode .section-title {
            color: var(--dark-text);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
            margin: 15px auto;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--light-text);
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
        }

        .dark-mode .section-subtitle {
            color: #94a3b8;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(109, 2, 47, 0.77), rgba(3, 7, 53, 0.8)),
                url('../assets/herobackground.jpeg');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            color: var(--white);
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Content (Left Side) */
        .hero-content {
            flex: 1;
            max-width: 800px;
            text-align: left;
        }

        .greeting {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            animation: fadeInDown 1s ease;
        }

        .dark-mode .greeting {
            background-color: rgba(30, 41, 59, 0.9);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--white);
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease 0.2s both;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 40px 0;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease 0.4s both;
            max-width: 100%;
        }

        /* Hero Image (Right Side) */
        .hero-image {
            flex: 1;
            display: flex;
            margin-left: 200px;
            justify-content: center;
            align-items: center;
            z-index: 1100;
        }

        /* Download Buttons */
        .download-buttons {
            display: flex !important;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .download-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background-color: var(--white);
            color: var(--text-color);
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-family: 'Philosopher', sans-serif;
            text-decoration: none;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            background-color: var(--primary-color);
            color: var(--white);
        }

        .download-btn i {
            font-size: 1.5rem;
        }

        /* Floating Animation */
        @keyframes float {

            0%,
            100% {
                transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0);
            }

            50% {
                transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-20px);
            }
        }

        /* Content Entrance Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero .container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            .hero-content {
                text-align: center;
                max-width: 100%;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                margin: 0 auto 40px;
            }

            .download-buttons {
                justify-content: center;
            }

            @keyframes float {

                0%,
                100% {
                    transform: perspective(1000px) rotateY(0) rotateX(5deg) translateY(0);
                }

                50% {
                    transform: perspective(1000px) rotateY(0) rotateX(5deg) translateY(-15px);
                }
            }
        }

        @media (max-width: 768px) {
            .hero .container {
                margin-top: -30%;
            }

            .hero {
                padding: 80px 0;
            }

            .hero-image {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .download-buttons {
                flex-direction: column;
                align-items: center;
            }

            .download-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .greeting {
                font-size: 1rem;
                padding: 6px 15px;
            }

            .download-btn {
                padding: 12px 25px;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dark-mode .service-card {
            background-color: var(--dark-card);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-color);
            font-weight: 700;
        }

        .dark-mode .service-title {
            color: var(--dark-text);
        }

        .service-description {
            color: var(--light-text);
            font-size: 1rem;
            line-height: 1.7;
        }

        .dark-mode .service-description {
            color: #94a3b8;
        }

        /* How It Works Section */
        /* ===============================
   HOW IT WORKS – BASE
================================ */
        .how-it-works {
            background-color: var(--white);
            padding: 5rem 1.5rem;
        }

        .dark-mode .how-it-works {
            background-color: var(--dark-bg);
        }

        /* ===============================
   CONTAINER LAYOUT
================================ */
        .how-it-works-container {
            max-width: 1900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: flex-start;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .how-it-works-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .steps-container {
                order: 2;
            }

            .how-it-works-right {
                order: 1;
            }
        }

        /* ===============================
   LEFT SIDE – STEPS
================================ */
        .steps-container {

            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .step {
            display: flex;
            gap: 1.5rem;
            padding: 1.8rem 2rem;
            background: var(--white);
            border-radius: 18px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .step:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 55px rgba(0, 0, 0, 0.09);
        }

        .dark-mode .step {
            background: var(--dark-card);
        }

        /* Step content */
        .step-content h3 {
            margin: 0 0 0.6rem;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-color);
        }

        .dark-mode .step-content h3 {
            color: var(--dark-text);
        }

        .step-content p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.7;
            color: var(--light-text);
        }

        .dark-mode .step-content p {
            color: #94a3b8;
        }

        /* ===============================
   RIGHT SIDE – DOWNLOAD STEPS
================================ */
        .how-it-works-right {
            background: linear-gradient(135deg, #f8fafc, #eef2f7);
            border-radius: 22px;
            padding: 3rem 2.5rem;
            border: 1px solid rgba(238, 23, 84, 0.12);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
        }

        .dark-mode .how-it-works-right {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-color: rgba(238, 23, 84, 0.25);
        }

        /* Title */
        .how-it-works-right h3 {
            text-align: center;
            font-size: 1.7rem;
            font-weight: 800;
            margin-bottom: 2.2rem;
            color: var(--text-color);
            position: relative;
        }

        .dark-mode .how-it-works-right h3 {
            color: var(--dark-text);
        }

        .how-it-works-right h3::after {
            content: "";
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        /* Download steps */
        .download-steps {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
        }

        .download-step {
            display: flex;
            gap: 1rem;
            padding-bottom: 1.4rem;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
        }

        .download-step:last-child {
            border-bottom: none;
        }

        .dark-mode .download-step {
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }

        /* Number */
        .download-step-number {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--primary-color);
            color: var(--white);
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(238, 23, 84, 0.35);
            flex-shrink: 0;
        }

        /* Content */
        .download-step-content h4 {
            margin: 0 0 0.4rem;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-color);
        }

        .dark-mode .download-step-content h4 {
            color: var(--dark-text);
        }

        .download-step-content p {
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--light-text);
        }

        .dark-mode .download-step-content p {
            color: #94a3b8;
        }

        /* Conclusion */
        .download-conclusion {
            margin-top: 2.5rem;
            padding: 1.5rem;
            background: rgba(238, 23, 84, 0.08);
            border-left: 4px solid var(--primary-color);
            border-radius: 14px;
        }

        .dark-mode .download-conclusion {
            background: rgba(238, 23, 84, 0.15);
        }

        .download-conclusion p {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-color);
        }

        .dark-mode .download-conclusion p {
            color: var(--dark-text);
        }

        /* ===============================
   MOBILE POLISH
================================ */
        @media (max-width: 480px) {
            .step {
                padding: 1.5rem;
            }

            .step-number {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
            }

            .how-it-works-right {
                padding: 2rem 1.6rem;
                order: 2;
            }
        }


        /* Pricing Section */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .pricing-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .pricing-card a {
            color: var(--text-color);
        }

        .dark-mode .pricing-card a {
            color: var(---white);
        }

        .dark-mode .pricing-card {
            background-color: var(--dark-card);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary-color);
            position: relative;
        }

        .popular-tag {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-color);
            color: var(--white);
            padding: 8px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 4px 6px rgba(238, 23, 84, 0.2);
        }

        .package-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .plate-limit {
            font-size: 1.2rem;
            color: var(--light-text);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .dark-mode .plate-limit {
            color: #94a3b8;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            margin: 20px 0;
            color: var(--text-color);
        }

        .dark-mode .price {
            color: var(--dark-text);
        }

        .price span {
            font-size: 1rem;
            color: var(--light-text);
            font-weight: normal;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
            flex-grow: 1;
            text-align: left;
            padding: 0 15px;
        }

        .features-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--gray-100);
            color: var(--light-text);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .features-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-color);
        }

        .dark-mode .features-list li {
            border-bottom: 1px solid #334155;
            color: #94a3b8;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--white);
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dark-mode .faq-item {
            background-color: var(--dark-card);
            border-color: rgba(255, 255, 255, 0.05);
        }

        .faq-question {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .dark-mode .faq-question {
            color: var(--dark-text);
        }

        .faq-question:hover {
            background-color: var(--gray-100);
        }

        .dark-mode .faq-question:hover {
            background-color: #334155;
        }

        .faq-question i {
            transition: var(--transition);
            color: var(--primary-color);
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--light-text);
            line-height: 1.7;
        }

        .dark-mode .faq-answer {
            color: #94a3b8;
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 500px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Contact Section */
        .contact {
            background-color: var(--white);
        }

        .dark-mode .contact {
            background-color: var(--dark-card);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-color);
            font-weight: 700;
        }

        .dark-mode .contact-info h3 {
            color: var(--dark-text);
        }

        .contact-info p {
            color: var(--light-text);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .dark-mode .contact-info p {
            color: #94a3b8;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            color: var(--light-text);
            line-height: 1.6;
        }

        .dark-mode .contact-detail {
            color: #94a3b8;
        }

        .contact-detail i {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-top: 5px;
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Philosopher', sans-serif;
            transition: var(--transition);
            background-color: var(--white);
            color: var(--text-color);
            font-size: 1rem;
        }

        .dark-mode .contact-form input,
        .dark-mode .contact-form textarea {
            background-color: #1e293b;
            border-color: #334155;
            color: var(--dark-text);
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(238, 23, 84, 0.1);
        }

        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--text-color);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .dark-mode footer {
            background-color: #0f172a;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo-img {
            height: 60px;
            width: auto;
        }

        .footer-about p {
            margin-bottom: 25px;
            color: #d1d5db;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            color: var(--white);
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: var(--white);
            font-weight: 700;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #d1d5db;
            transition: var(--transition);
            font-size: 1rem;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #d1d5db;
            font-size: 0.95rem;
        }

        .footer-bottom a {
            color: #EE1754;
        }

        /* Floating Buttons */
        .floating-btn {
            position: fixed;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: var(--transition);
            z-index: 999;
        }

        .back-to-top {
            bottom: 30px;
            left: 30px;
            background-color: var(--primary-color);
            color: var(--white);
            font-size: 1.3rem;
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            background-color: var(--secondary-color);
        }

        .whatsapp-btn {
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: var(--white);
            font-size: 1.8rem;
        }

        .whatsapp-btn:hover {
            transform: translateY(-5px);
            background-color: #128C7E;
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }

            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .how-it-works-right {
                padding: 2rem 1.6rem;
                order: 2;
            }

            .mobile-login-btn {
                display: block;
                color: black;
            }

            .dark-mode .mobile-login-btn {
                color: whitesmoke;
            }

            .desktop-login-btn {
                display: none;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 180px 0 100px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

        }

        .step {
            flex-direction: column;
            gap: 20px;
        }

        .step-number {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }

        .back-to-top,
        .whatsapp-btn {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
        }

        .whatsapp-btn {
            font-size: 1.5rem;
        }

        @media (max-width: 576px) {
            section {
                padding: 80px 0;
            }

            .how-it-works-right {
                padding: 2rem 1.6rem;
                order: 2;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .greeting {
                font-size: 1rem;
                padding: 6px 15px;
            }

            .back-to-top,
            .whatsapp-btn {
                bottom: 20px;
            }

            .back-to-top {
                left: 20px;
            }

            .whatsapp-btn {
                right: 20px;
            }
        }



        /* Language Selector Styles */
        .lang-dropdown {
            display: block;
            min-width: 180px;
            padding: 12px 40px 12px 16px;
            font-weight: 600;
            font-size: 15px;
            color: #ffffff;
            background-color: #1a2238;
            /* dark matte blue */
            border: 2px solid #1a2238;
            border-radius: 10px;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20fill%3D'none'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M0%200L5%206L10%200H0Z'%20fill%3D'%23EE1754'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }

        .lang-dropdown:hover {
            border-color: #EE1754;
            background-color: #212947;
            /* slightly lighter on hover */
            box-shadow: 0 8px 20px rgba(238, 23, 84, 0.4);
            transform: translateY(-2px);
        }

        .lang-dropdown:focus {
            outline: none;
            border-color: #EE1754;
            box-shadow: 0 0 0 4px rgba(238, 23, 84, 0.3);
        }

        /* Dark mode override if needed */
        .dark-mode .lang-dropdown {
            background-color: #1a2238;
            color: #ffffff;
            border-color: #1a2238;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .dark-mode .lang-dropdown:hover {
            background-color: #212947;
            box-shadow: 0 8px 20px rgba(238, 23, 84, 0.5);
        }


        /* Responsive: Hide on mobile */
        @media (max-width: 767px) {

            #lang-btn,
            #lang-dropdown {
                display: none !important;
            }
        }



        /* mobile language selector Full-width mobile language selector */
        /* Modern Language Selector with Direct Color Codes */
        .mobile-lang-selector {
            width: 100%;
            margin: 20px 0;
        }

        .lang-btn {
            width: 100%;
            margin: auto;
        }

        .custom-select {
            position: relative;
            cursor: pointer;
            border-radius: 12px;
            background: #F3F4F6;
            padding: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .dark-mode .custom-select {
            background: #334155;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid #334155;
        }

        .custom-select:hover {
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .dark-mode .custom-select:hover {
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
        }

        .custom-select .selected {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            font-weight: 600;
            font-size: 16px;
            color: #1e293b;
            transition: all 0.3s ease;
            position: relative;
        }

        .dark-mode .custom-select .selected {
            color: #f1f5f9;
        }

        .custom-select .selected::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20px;
            right: 20px;
            height: 1px;
            background: linear-gradient(90deg, #eef2ff, transparent);
        }

        .dark-mode .custom-select .selected::after {
            background: linear-gradient(90deg, #4338ca, transparent);
        }

        /* Fixed Arrow Positioning */
        .custom-select .selected i {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 12px;
            color: #64748b;
            margin-left: 8px;
            flex-shrink: 0;
        }

        .dark-mode .custom-select .selected i {
            color: #94a3b8;
        }

        .custom-select.active .selected i {
            transform: rotate(180deg);
            color: #EE1754;
        }

        .dark-mode .custom-select.active .selected i {
            color: #EE1754;
        }

        .custom-select .options {
            list-style: none;
            margin: 0;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            opacity: 0;
            background-color: #ffffff;
        }

        .dark-mode .custom-select .options {
            background-color: #1e293b;
        }

        .custom-select.active .options {
            max-height: 200px;
            opacity: 1;
        }

        .custom-select .options li {
            padding: 14px 20px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
            color: #64748b;
        }

        .dark-mode .custom-select .options li {
            border-bottom: 1px solid #334155;
            color: #94a3b8;
        }

        .custom-select .options li:last-child {
            border-bottom: none;
        }

        .custom-select .options li:hover {
            background: #f1f5f9;
            padding-left: 24px;
            color: #EE1754;
        }

        .dark-mode .custom-select .options li:hover {
            background: #334155;
            color: #6366f1;
        }

        .custom-select .options li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #EE1754;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .dark-mode .custom-select .options li::before {
            background: #EE1754;
        }

        .custom-select .options li:hover::before {
            opacity: 1;
        }

        /* Active option styling */
        .custom-select .options li.active-option {
            background: #eef2ff;
            color: #EE1754;
        }

        .dark-mode .custom-select .options li.active-option {
            background: rgba(99, 102, 241, 0.15);
            color: #EE1754;
        }

        /* Language specific styles */
        .custom-select .options li[data-value="en"] {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        .custom-select .options li[data-value="bn"] {
            font-family: 'Noto Sans Bengali', 'Mukti', 'SolaimanLipi', sans-serif;
        }

        /* Active state enhancement */
        .custom-select.active {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .dark-mode .custom-select.active {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        /* Focus state for accessibility */
        .custom-select:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        }

        .dark-mode .custom-select:focus {
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
        }

        /* Responsive adjustments */
        @media (max-width: 480px) {
            .custom-select .selected {
                padding: 14px 16px;
                font-size: 15px;
            }

            .custom-select .options li {
                padding: 12px 16px;
            }
        }