    :root {
        --primary-orange: #FF8C42;
        --dark-orange: #E67E22;
        --light-orange: #FFD7B5;
        --soft-white: #F8F9FA;
        --off-white: #FFFFFF;
        --text-dark: #2C3E50;
        --text-light: #555555;
        --accent-blue: #3498DB;
        --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
        --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background: var(--soft-white);
        color: var(--text-dark);
        overflow-x: hidden;
        line-height: 1.7;
    }

    header {
        position: fixed;
        top: 0;
        width: 100%;
        background: var(--off-white);
        backdrop-filter: blur(20px);
        padding: 1.2rem 0;
        z-index: 1000;
        box-shadow: var(--shadow-soft);
        transition: all 0.3s ease;
    }

    nav {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
    }

    .logo {
        font-size: 1.3rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .nav-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-orange);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    nav ul {
        display: flex;
        list-style: none;
        align-items: center;
    }

    nav ul li {
        margin-left: 3rem;
        position: relative;
    }

    nav ul li a {
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }

    nav ul li a:hover {
        color: var(--primary-orange);
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-orange), var(--dark-orange));
        transition: width 0.3s ease;
        border-radius: 2px;
    }

    nav ul li a:hover::after {
        width: 100%;
    }

        /* ========== DROPDOWN STYLES - DESKTOP ==========*/
    .dropdown {
        position: relative;
    }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    transform: none;
    background: var(--off-white);
    min-width: 300px;
    max-width: calc(100vw - 2rem);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    z-index: 2000;
    border: 1px solid rgba(255, 140, 66, 0.15);
    display: flex;
    flex-direction: column;
}


    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

   .dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: block;
}


    .dropdown-menu a {
    padding: 0.8rem 1.5rem;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
    box-sizing: border-box;
}

    }

    .dropdown-menu a:hover {
        background: var(--soft-white);
        color: var(--primary-orange);
        padding-left: 2rem;
    }

    .dropdown-menu a::after {
        display: none !important;
    }

    /* Product Card in Dropdown */
    .dropdown-product {
    padding: 1rem 1.5rem !important;
    border-top: 1px solid rgba(255, 140, 66, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}


    .dropdown-product:hover {
        background: var(--soft-white);
        padding-left: 2rem !important;
    }

    .product-icon {
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, var(--light-orange), var(--primary-orange));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .product-info {
        flex: 1;
    }

    .product-name {
        font-weight: 600;
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .product-desc {
        font-size: 0.75rem;
        color: var(--text-light);
        margin-top: 0.2rem;
    }

    /* Dropdown Section Header */
    .dropdown-header {
        padding: 0.8rem 1.5rem;
        font-weight: 700;
        color: var(--primary-orange);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1px solid rgba(255, 140, 66, 0.1);
        margin-bottom: 0;
    }

    /* ========== END DROPDOWN STYLES ==========*/


    /* Hero Section with Sliding Background */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding-top: 6rem;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('https://v3b.fal.media/files/b/0a8e2421/nRHYFanPadwo8mxdW7OLw_03f638be6b7f42959dfc3541210ee6f9.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        animation: slideBackground 15s infinite ease-in-out;
        z-index: 1;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    @keyframes slideBackground {
        0%, 100% {
            background-image: url('https://v3b.fal.media/files/b/0a8e2421/nRHYFanPadwo8mxdW7OLw_03f638be6b7f42959dfc3541210ee6f9.webp');
            background-position: center;
        }
        50% {
            background-image: url('https://v3b.fal.media/files/b/0a8e2421/EuSj4QvaI3O2YdrSpMh1B_1e304cff3858456e901576f4621fba5e.webp');
            background-position: center;
        }
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: white;
        max-width: 900px;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
        font-weight: 700;
    }

    .hero-content h1 span {
        color: #FFD4A3;
    }

    .hero-content .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
        font-weight: 500;
        color: #FFE5CC;
    }

    .hero-content .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.8;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        border: none;
        background: var(--primary-orange);
        color: white;
        box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
    }

    .cta-button:hover {
        background: var(--dark-orange);
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
    }

    .cta-button.secondary {
        background: transparent;
        border: 2px solid white;
        color: white;
    }

    .cta-button.secondary:hover {
        background: white;
        color: var(--primary-orange);
    }

    .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        animation: bounce 2s infinite;
        color: white;
        font-size: 1.5rem;
    }

    @keyframes bounce {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(10px); }
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .section {
        padding: 8rem 0;
    }

    .section.light {
        background: var(--soft-white);
    }

    .section.white {
        background: var(--off-white);
    }

    .section h2 {
        font-size: clamp(2.5rem, 6vw, 4rem);
        text-align: center;
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-weight: 700;
    }

    .section-subtitle {
        text-align: center;
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 4rem;
        font-weight: 400;
    }

    .section h2 span {
        background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }

    .card {
        background: var(--off-white);
        border-radius: 20px;
        padding: 3rem 2.5rem;
        box-shadow: var(--shadow-soft);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        text-align: center;
        border: 1px solid rgba(255, 140, 66, 0.1);
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-orange), var(--dark-orange));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(255, 140, 66, 0.15);
        border-color: var(--primary-orange);
    }

    .card:hover::before {
        transform: scaleX(1);
    }

    .card i {
        font-size: 3.5rem;
        background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        display: block;
    }

    .card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
        font-weight: 600;
    }

    .card p {
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .card ul {
        list-style: none;
        padding: 0;
        text-align: left;
    }

    .card li {
        padding: 0.8rem 0;
        color: var(--text-light);
        position: relative;
        padding-left: 2rem;
        font-size: 0.95rem;
    }

    .card li::before {
        content: '✓';
        color: var(--primary-orange);
        position: absolute;
        left: 0;
        font-weight: bold;
        font-size: 1.2rem;
    }

    /* About Section */
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-text h3 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        font-weight: 600;
    }

    .about-text p {
        color: var(--text-light);
        line-height: 1.9;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .about-image {
        width: 100%;
        height: 400px;
        background: linear-gradient(135deg, var(--light-orange), var(--primary-orange));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 50px rgba(255, 140, 66, 0.2);
    }

    .about-image i {
        font-size: 8rem;
        color: white;
        opacity: 0.3;
    }

    /* Timeline */
    .timeline {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        position: relative;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, var(--primary-orange), var(--light-orange));
        transform: translateX(-50%);
    }

    .timeline-item {
        display: flex;
        align-items: center;
        gap: 3rem;
        position: relative;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .timeline-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--off-white);
        box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
        z-index: 2;
        flex-shrink: 0;
    }

    .timeline-content {
        background: var(--off-white);
        padding: 2.5rem;
        border-radius: 20px;
        max-width: 500px;
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(255, 140, 66, 0.1);
    }

    .timeline-content h3 {
        color: var(--text-dark);
        margin-bottom: 1rem;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .timeline-content p {
        color: var(--text-light);
        font-size: 0.95rem;
    }

    /* Stats */
    .stat {
        text-align: center;
        background: var(--off-white);
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(255, 140, 66, 0.1);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        margin-bottom: 0.5rem;
    }

    .stat p {
        color: var(--text-light);
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonials {
        background: linear-gradient(135deg, #FFF5ED 0%, var(--soft-white) 100%);
        border-radius: 25px;
        padding: 4rem 2rem;
        position: relative;
        border: 1px solid rgba(255, 140, 66, 0.15);
    }

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        gap: 2rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 1rem 0;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 380px;
        background: var(--off-white);
        padding: 2.5rem;
        border-radius: 20px;
        text-align: center;
        scroll-snap-align: start;
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(255, 140, 66, 0.1);
        transition: all 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(255, 140, 66, 0.15);
    }

    .stars {
        color: #FFB84D;
        font-size: 1.4rem;
        margin-bottom: 1rem;
        letter-spacing: 2px;
    }

    .testimonial-card p {
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        font-style: italic;
    }

    .testimonial-card strong {
        color: var(--text-dark);
        display: block;
        font-weight: 600;
    }

    /* Newsletter */
    .newsletter {
        background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
        border-radius: 25px;
        padding: 4rem 2rem;
        text-align: center;
        box-shadow: 0 20px 50px rgba(255, 140, 66, 0.25);
    }

    .newsletter h2 {
        color: var(--off-white);
        margin-bottom: 1rem;
    }

    .newsletter p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    .newsletter form {
        display: flex;
        gap: 0;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 600px;
        margin: 0 auto;
    }

    .newsletter input {
        padding: 1.1rem 2rem;
        border: none;
        border-radius: 50px 0 0 50px;
        background: rgba(255, 255, 255, 0.95);
        color: var(--text-dark);
        font-size: 1rem;
        width: 300px;
        max-width: 100%;
        font-family: 'Poppins', sans-serif;
    }

    .newsletter input::placeholder {
        color: rgba(0, 0, 0, 0.4);
    }

    .newsletter button {
        padding: 1.1rem 2rem;
        background: var(--off-white);
        border: none;
        color: var(--primary-orange);
        border-radius: 0 50px 50px 0;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem;
    }

    .newsletter button:hover {
        background: var(--light-orange);
        color: var(--off-white);
    }

    /* Footer */
    footer {
        background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
        color: white;
        padding: 4rem 2rem 2rem;
        margin-top: 6rem;
        border-top: 2px solid var(--primary-orange);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 2rem;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid > div {
        display: flex;
        flex-direction: column;
    }

    .footer-grid h4 {
        font-size: 1.1rem;
        color: var(--primary-orange);
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .footer-grid ul {
        list-style: none;
        padding: 0;
    }

    .footer-grid ul li {
        margin-bottom: 0.8rem;
    }

    .footer-grid a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-grid a:hover {
        color: var(--primary-orange);
        transform: translateX(5px);
    }

    .footer-grid p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin: 2rem 0;
        flex-wrap: wrap;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-orange);
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: var(--primary-orange);
        color: white;
        transform: translateY(-3px);
    }

    footer hr {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin: 2rem 0;
    }

    footer p {
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
    }

    footer a {
        color: var(--primary-orange);
        text-decoration: none;
    }

    footer a:hover {
        text-decoration: underline;
    }

   .to-top {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    z-index: 9999 !important;
    width: 55px !important;
    height: 55px !important;
    background: linear-gradient(135deg, #ff8c42, #ff6b1a) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #f5f5f5 !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3) !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* This is the important part - matching the class name */
.to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.to-top:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(255, 140, 66, 0.4) !important;
}




    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin: 3rem 0;
    }

    .badge {
        padding: 1.2rem 2rem;
        background: var(--off-white);
        border-radius: 15px;
        font-size: 0.95rem;
        color: var(--text-dark);
        box-shadow: var(--shadow-soft);
        border: 1px solid rgba(255, 140, 66, 0.1);
        font-weight: 500;
    }

    .badge i {
        color: var(--primary-orange);
        margin-right: 0.5rem;
    }

    /* ========== MOBILE RESPONSIVE ==========*/
    @media (max-width: 768px) {
        .timeline::before {
            left: 30px;
        }

        .timeline-item {
            flex-direction: column;
            align-items: flex-start !important;
        }

        .timeline-item:nth-child(even) {
            flex-direction: column;
        }

        .timeline-icon {
            position: absolute;
            left: 20px;
            top: 20px;
        }

        .timeline-content {
            margin-left: 80px;
            max-width: 100%;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        nav ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--off-white);
            flex-direction: column;
            padding: 1rem;
            box-shadow: var(--shadow-medium);
            z-index: 1999;
        }

        nav ul li {
            margin: 0.5rem 0;
        }

        nav ul.active {
            display: flex;
        }

        .nav-toggle {
            display: flex;
        }

        .newsletter form {
            flex-direction: column;
        }

                .newsletter input {
            border-radius: 50px;
            width: 100%;
        }

        .newsletter button {
            border-radius: 50px;
            width: 100%;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 1rem;
        }

        .cta-button {
            width: 100%;
            justify-content: center;
        }

        .about-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .about-image {
            height: 300px;
        }

        .about-image i {
            font-size: 5rem;
        }

               /* ========== MOBILE DROPDOWN STYLES ==========*/
        .dropdown-menu {
            position: static;
            opacity: 0;
            visibility: hidden;
            max-height: 0;
            overflow: hidden;
            transform: none !important;
            box-shadow: none;
            background: var(--soft-white);
            border: none;
            padding: 0;
            margin: 0;
            border-radius: 0;
            max-width: 100%;
            min-width: auto;
        }

        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            max-height: 500px;
            padding: 0.5rem 0;
            margin-left: 1rem;
            border-top: 1px solid rgba(255, 140, 66, 0.1);
        }

        .dropdown-toggle::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: auto;
            transition: transform 0.3s ease;
            font-size: 0.75rem;
        }

        .dropdown-toggle.active::after {
            transform: rotate(180deg);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 0;
            visibility: hidden;
            transform: none;
        }

        nav ul {
            flex-wrap: wrap;
            width: 100%;
        }

        nav ul li {
            margin-left: 0;
            width: 100%;
        }

        .dropdown {
            width: 100%;
        }
    
    }

