        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            margin-top: 80px; /* Space for fixed header */
        }

        /* Header Styles */
        .header {
    background: linear-gradient(0deg, rgb(0 0 0 / 0%) -0.16%, rgb(255 255 255) 100%);
                position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            position: relative;
        }

        .logo {
            font-size: 22px;
            font-weight: bold;
            color: #fff;
            transition: color 0.3s ease;
        }

        .header.scrolled .logo {
            color: #333;
        }

        .header-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .top-layer, .bottom-layer {
            display: flex;
            align-items: center;
        }

        .top-layer {
            margin-bottom: 8px;
        }

        .contact-info, .nav-links, .destinations {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .contact-info a, .nav-links a, .destinations a {
      color: #000000;
    text-decoration: none;
    font-size: 16px;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-weight: 500;
}

        .header.scrolled .contact-info a,
        .header.scrolled .nav-links a,
        .header.scrolled .destinations a {
            color: #333;
        }

        .nav-links a {
            text-transform: uppercase;
            font-weight: 500;
        }

        .destinations a {
    padding: 4px 3px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    color: black;
    font-weight: 700;
    font-size: 16px;
}

  a:not([href]):not([tabindex]) {
    color: black!important;
    text-decoration: none;
}
        /* Mobile Menu Toggles */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #fff;
            margin-left: 15px;
            transition: color 0.3s ease;
        }

        .header.scrolled .mobile-toggle {
            color: #333;
        }

        /* Mobile Styles */
        @media (max-width: 992px) {
            .header-right {
                position: absolute;
                top: 100%;
                right: 0;
                background: white;
                width: 100%;
                padding: 0 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                z-index: 1000;
                max-height: 800px;
                /* overflow: hidden; */
                transition: max-height 0.3s ease;
                /* flex-direction: column; */
                align-items: flex-start;
            }

            .header.scrolled .header-right {
                top: 60px;
            }

            .top-layer, .bottom-layer {
                flex-direction: row;
                width: 70%;
                padding: 15px 0;
                display: none;
            }

            .top-layer {
                border-bottom: none;
            }

            .bottom-layer {
                order: 1;
                margin-top: 0;
                padding-top: 0;
            }

            .top-layer.active + .bottom-layer.active {
                display: flex;
                border-top: 1px solid #eee;
                padding-top: 15px;
            }

            .top-layer.active, .bottom-layer.active {
                display: flex;
            }

            .contact-info, .nav-links {
                flex-direction: column;
                width: 100%;
                gap: 10px;
            }

            .contact-info a, .nav-links a, .destinations a {
                color: #333;
            }

            .destinations {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px;
            }

            .mobile-toggles {
                display: flex;
            }

            .mobile-toggle {
                display: block;
            }
        }

        /* Banner Slider Styles */
        .banner-slider {
            position: relative;
            height: 670px;
            overflow: hidden;
            top:-85px;
        }

        .banner-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.8s ease;
        }

        .banner-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

        .banner-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
        }

        .banner-slide-1 {
            background: url('../../images/ban1.jpg') center/cover;
        }

        .banner-slide-2 {
            background: url('/images/ban2.jpg') center/cover;
        }

        .banner-slide-3 {
            background: url('/images/ban3.jpg') center/cover;
        }

        .banner-container {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            color: white;
        }

        .banner-content {
            flex: 1;
            max-width: 50%;
            z-index: 1;
        }

        .banner-content h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .quote-form {
            background:linear-gradient(45deg, #7bc83a, #006024);
            padding: 20px;
            border-radius: 8px;
            width: 100%;
            max-width: 380px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 1;
            margin-top: 40px;
        }

        .quote-form h2 {
            color: #333;
            margin-bottom: 10px;
            font-size: 24px;
        }

        .quote-form p {
            color: #666;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: #333;
            font-weight: 500;
            font-size: 14px;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
       
        }
        select{
                 color: white;
        }
        option{
            color: black;
        }

        .form-submit {
            background-color: #ff6b6b;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        .form-submit:hover {
            background-color: #ff5252;
        }

        /* Slider Indicators */
        .slider-indicators {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 2;
        }

        .slider-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-indicator.active {
            background-color: #fff;
            transform: scale(1.2);
        }

        /* Responsive Banner */
        @media (max-width: 768px) {
            .banner-slider {
                /* height: auto; */
                min-height: 1170px;
            }
            
            .banner-container {
                flex-direction: column;
                padding: 80px 20px;
            }
            
            .banner-content {
                max-width: 100%;
                margin-bottom: 30px;
                text-align: center;
            }
            
            .quote-form {
                max-width: 100%;
            }
        }
/* header styling end here  */