
        :root {
            --primary: #FF6B35;
            --secondary: #2C3E50;
            --accent: #FFD166;
            --white: #ffffff;
            --light-bg: #fef9f2;
        }

        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            overflow-x: hidden;
            background-color: var(--white);
            scroll-behavior: smooth;
        }

        /* Sticky Top Bar */
        .top-bar {
            background: var(--secondary);
            color: #ecf0f1;
            font-size: 0.85rem;
            padding: 8px 0;
            transition: all 0.3s;
        }

        .top-bar a {
            color: #f1c40f;
            text-decoration: none;
            margin: 0 8px;
            transition: 0.2s;
        }

        .top-bar a:hover {
            color: var(--primary);
        }

        .social-icons-top a {
            color: #ddd;
            margin: 0 6px;
            font-size: 0.9rem;
        }

        .social-icons-top a:hover {
            color: var(--primary);
        }

        /* Sticky Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            padding: 12px 0;
        }

        .navbar.scrolled {
            padding: 6px 0;
            background: white;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

        .navbar-brand span {
            color: var(--secondary);
        }

        .nav-link {
            font-weight: 600;
            color: var(--secondary);
            margin: 0 5px;
            transition: 0.2s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
        }

        .btn-call-nav {
            background: var(--primary);
            color: white;
            border-radius: 40px;
            padding: 8px 20px;
            font-weight: bold;
            transition: 0.2s;
        }

        .btn-call-nav:hover {
            background: #e55a2b;
            transform: scale(1.02);
            color: white;
        }

        /* Hero Slider */
        .carousel-item {
            height: 100vh;
            min-height: 600px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: white;
            text-align: center;
            max-width: 750px;
            margin: 0 auto;
            top: 50%;
            transform: translateY(-50%);
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 800;
            text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin: 20px 0;
        }

        .btn-hero {
            margin: 8px 10px;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
        }

        .btn-primary-custom {
            background: var(--primary);
            border: none;
            color: white;
        }

        .btn-primary-custom:hover {
            background: #e05a2a;
        }

        .btn-outline-light-custom {
            border: 2px solid white;
            background: transparent;
            color: white;
        }

        .btn-outline-light-custom:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .carousel-fade .carousel-item {
            transition: opacity 0.8s ease-in-out;
        }

        /* Section Headings */
        section{
            overflow: hidden;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            width: 70px;
            height: 4px;
            background: var(--primary);
            display: block;
            margin: 12px auto 0;
            border-radius: 5px;
        }

        .bg-soft {
            background: var(--light-bg);
        }

        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 30px 20px;
            transition: all 0.35s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            text-align: center;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 35px rgba(255, 107, 53, 0.15);
            border-bottom: 3px solid var(--primary);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .btn-learn {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 40px;
            padding: 6px 20px;
            font-weight: 600;
            transition: 0.2s;
        }

        .btn-learn:hover {
            background: var(--primary);
            color: white;
        }

        /* Why Choose Us boxes */
        .feature-box {
            background: white;
            border-radius: 20px;
            padding: 25px 15px;
            text-align: center;
            transition: 0.3s;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .feature-box i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .feature-box h5 {
            font-weight: 700;
            color: var(--secondary);
        }

        /* Gallery */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 24px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            transition: transform 0.5s ease;
            border-radius: 20px;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            width: 100%;
            padding: 15px;
            color: white;
            opacity: 0;
            transition: 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Process Steps */
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            font-size: 2rem;
            font-weight: bold;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
            transition: 0.3s;
        }

        .process-step:hover .step-number {
            transform: scale(1.05);
            background: var(--secondary);
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 30px;
            padding: 30px;
            margin: 20px 15px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary);
        }

        .rating i {
            color: var(--accent);
            margin-right: 2px;
        }

        /* CTA Parallax */
        .cta-parallax {
            background-image: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.pexels.com/photos/6237779/pexels-photo-6237779.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            padding: 85px 0;
            color: white;
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 35px;
            border-radius: 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .form-control,
        .form-select {
            border-radius: 50px;
            padding: 12px 20px;
            border: 1px solid #e2e8f0;
        }

        .btn-submit {
            background: var(--primary);
            border-radius: 50px;
            padding: 12px;
            font-weight: bold;
            width: 100%;
            color: white;
        }

        /* Footer */
        .footer-dark {
            background: #1a252f;
            color: #cdd4d9;
            padding-top: 50px;
            padding-bottom: 20px;
        }

        .footer-dark a {
            color: #bbb;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer-dark a:hover {
            color: var(--primary);
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }

        /* Floating buttons */
        .float-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25d366;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 99;
            transition: 0.2s;
        }

        .float-call {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: var(--primary);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 99;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 100px;
            background: var(--secondary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            color: white;
            z-index: 99;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .back-to-top {
                right: 20px;
                bottom: 100px;
            }

            .float-whatsapp {
                right: 20px;
            }

            .float-call {
                left: 20px;
            }
        }
        /* media queries */
        /* ===================================
   TOP HEADER RESPONSIVE
=================================== */

@media (max-width: 991px) {

    .top-bar {
        text-align: center;
        padding: 10px 0;
    }

    .top-bar .row {
        flex-direction: column;
    }

    .top-bar .col-lg-8,
    .top-bar .col-lg-4 {
        width: 100%;
        text-align: center !important;
        margin-bottom: 8px;
    }

    .top-bar span,
    .top-bar a {
        display: inline-block;
        margin: 3px 5px;
        font-size: 13px;
    }

    .social-icons-top {
        margin-top: 5px;
    }
}

/* Mobile Devices */

@media (max-width: 767px) {

    .top-bar {
        font-size: 12px;
        line-height: 1.8;
    }

    .top-bar span,
    .top-bar a {
        display: block;
        margin: 2px 0;
    }

    .social-icons-top a {
        display: inline-block;
        margin: 0 8px;
        font-size: 16px;
    }
}


/* ===================================
   NAVBAR RESPONSIVE
=================================== */

@media (max-width: 991px) {

    .navbar {
        padding: 10px 0;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .navbar-toggler {
        border: none;
        box-shadow: none !important;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 6px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 16px;
        display: block;
    }

    .btn-call-nav {
        display: block;
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
}

/* Small Mobile */

@media (max-width: 576px) {

    .navbar-brand {
        font-size: 1.3rem;
    }

    .navbar-brand img {
        max-height: 45px;
    }

    .navbar-collapse {
        padding: 15px;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
    }

    .btn-call-nav {
        padding: 10px 15px;
        font-size: 14px;
    }
}


/* ===================================
   FIX STICKY HEADER GAP
=================================== */

@media (max-width: 991px) {

    body {
        overflow-x: hidden;
    }

    .navbar.fixed-top {
        top: 127px;
    }

    .carousel-item {
        min-height: 650px;
    }
}
@media(min-width: 992px) {
    .navbar.fixed-top {
        top: 38px;
    }
}