:root {
    --primary-color: #f79f4a;
    --primary-light: rgba(247, 159, 74, 0.1);
    --secondary: #368032;
    --secondary-light: rgba(54, 128, 50, 0.1);
    --light: #f8f9fa;
    --dark: #2a2d34;
    --gray: #6c757d;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* Video Header Styles */
.video-header {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: center;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.content {
    z-index: 1;
    position: relative;
}
   /* Banner Modal Styles */
    .banner-modal {
        position: fixed;
        top: 6;
        left: 0;
        right: 0;
        bottom: 0;
        margin-bottom: 14px;
        background-color: rgba(0,0,0,0.0);
        z-index: 1000;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: fadeIn 0.3s ease;
    }
    
    .modal-content {
        position: relative;
        max-width: 90%;
        max-height: 90vh;
    }
    
    .banner-image {
        max-width: 100%;
        max-height: 90vh;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    
    .close-banner-btn {
        position: absolute;
        top: -15px;
        right: -15px;
        width: 40px;
        height: 40px;
        background: #f79f4a;
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .close-banner-btn:hover {
        background: #e68a3a;
        transform: scale(1.1);
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
/* Who We Are Section */
.who-we-are-section {
    position: relative;
    min-height: 100vh;
    color: white;
}

.who-we-are-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.who-we-are-section .container {
    z-index: 2;
}

.custom-outline {
  border: 2px solid #f79f4a;
  color: #f79f4a;
  background-color: transparent;
  transition: all 0.3s ease;
}

.custom-outline:hover {
  background-color: #f79f4a;
  color: white;
}

.custom-orange-box {
  background-color: rgba(247, 159, 74, 0.1);
  color: #f79f4a;
}

.circle-shape {
    width: 300px;
    height: 300px;
}

.circle-shape.shape1 {
    top: -100px;
    right: -100px;
    background-color: #f79f4a;
    opacity: 0.5;
}

.circle-shape.bg-secondary {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.icon-box {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px);
}

.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Partners Section Styles */
.partners-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(218, 156, 50, 0.05);
  border-radius: 50%;
}

.partners-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(104, 214, 149, 0.05);
  border-radius: 50%;
}

/* Logo Grid */
.logo-grid {
  padding: 20px 0;
 
}

.logo-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 140px;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.logo-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

.logo-img img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  transition: all 0.3s ease;
}

.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(184, 116, 68, 0.9), rgba(251, 201, 143, 0.9));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 15px;
  text-align: center;
}

.logo-card:hover .logo-overlay {
  opacity: 1;
}

.overlay-content h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.overlay-content p {
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.grayscale {
  filter: grayscale(100%);
  opacity: 0.2;
}

.logo-card:hover .grayscale {
  filter: grayscale(0%);
  opacity: 0.2;
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(90deg, #f79f4a, #eac8a5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-grid-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .logo-card {
    height: 120px;
  }
}

@media (max-width: 576px) {
  .logo-grid-inner {
    grid-template-columns: 1fr;
  }
}



/* Owl Carousel Navigation */
.owl-nav button {
    width: 40px;
    height: 40px;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button.owl-prev {
    left: -20px;
}

.owl-nav button.owl-next {
    right: -20px;
}

.owl-nav button span {
    font-size: 24px;
    line-height: 1;
    color: #368032;
}


   /* Footer Styles */
.footer-section {
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(78, 84, 200, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.footer-brand h2 {
  font-weight: 700;
  font-size: 2rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--bs-primary);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bs-primary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.footer-links a:hover::before {
  width: 100%;
}

.contact-info i {
  width: 20px;
  text-align: center;
}

.legal-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 15px;
}

.legal-links a:hover {
  color: var(--bs-primary);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .newsletter form {
    justify-content: center;
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
}


.testimonial-section {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }
    
    
    
        h2 {
        font-weight: 700;
        color: #2c3e50;
    }
/*     
    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: #368032;
        margin: 15px auto 0;
    } */
    
    .testimonial-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 100%;
        margin: 15px;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .testimonial-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid rgba(52, 152, 219, 0.3);
        margin: 0 auto 20px;
        display: block;
    }
    
    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 20px;
        position: relative;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        content: '"';
        font-size: 24px;
        color: rgba(52, 152, 219, 0.5);
        position: absolute;
    }
    
    .testimonial-text::before {
        top: -10px;
        left: -15px;
    }
    
    .testimonial-text::after {
        bottom: -20px;
        right: -15px;
    }
    
    .testimonial-author {
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 5px;
    }
    
    .testimonial-position {
        color: #7f8c8d;
        font-size: 14px;
    }
    
    .rating {
        color: #f1c40f;
        margin-bottom: 15px;
    }
    
    /* Carousel controls */
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        background-color: #368032;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 1;
    }
    
    .carousel-control-prev {
        left: -20px;
    }
    
    .carousel-control-next {
        right: -20px;
    }
    
    /* Decorative elements */
    .testimonial-bg-element {
        position: absolute;
        opacity: 0.1;
        z-index: 0;
    }
    
    .testimonial-bg-element-1 {
        top: 20%;
        left: 5%;
        font-size: 100px;
        color: #368032;
    }
    
    .testimonial-bg-element-2 {
        bottom: 10%;
        right: 5%;
        font-size: 120px;
        color: #368032;
    }
    /* Service section */
    .services-section {
        padding: 100px 0;
        background-color: #f8f9fa;
    }
    
    .section-title {
        position: relative;
        margin-bottom: 60px;
        text-align: center;
        border-bottom: 2px dashed rgba(54, 128, 50, 0.3);
    }
    
    .section-title h6 {
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
    }
    
    .section-title p {
        color: #7f8c8d;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: #368032;
        margin: 20px auto 0;
    }
    
    .service-card {
        background: white;
        border-radius: 10px;
        /* padding: 40px 30px; */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        margin-bottom: 30px;
        height: 100%;
        text-align: center;
        border-top: 4px solid transparent;
    }
    
    /* .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 4px solid #f79f4a;
    } */
    
    .service-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(247, 159, 74, 0.1);
        border-radius: 50%;
        color: #f79f4a;
        font-size: 36px;
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        background: #368032;
        color: white;
        transform: rotateY(180deg);
    }
    
    .service-card h3 {
        font-weight: 600;
        margin-bottom: 15px;
        color: #2c3e50;
    }
    
    .service-card p {
        color: #7f8c8d;
        margin-bottom: 15px;
    }
    
    .service-link {
        color: #3498db;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .service-link i {
        margin-left: 5px;
        transition: all 0.3s ease;
    }
    
    .service-link:hover {
        color: #2980b9;
    }
    
    .service-link:hover i {
        transform: translateX(5px);
    }
    
    /* Animation for section */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .service-card {
        animation: fadeInUp 0.5s ease forwards;
        opacity: 0;
    }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }






/* CONTACT CSS */

    .contact-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        position: relative;
    }

    
    /* Location Cards */
    .location-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: all 0.4s ease;
        margin-bottom: 30px;
        border-left: 5px solid transparent;
    }

    .location-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        border-left: 5px solid var(--primary-color);
    }

    .location-map {
        height: 200px;
        width: 100%;
        border: none;
    }

    .location-info {
        padding: 25px;
    }

    .location-info h3 {
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--dark-color);
    }

    .location-info p {
        color: #666;
        margin-bottom: 10px;
    }

    .location-info i {
        color: var(--primary-color);
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

    /* Contact Form */
    .contact-form {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        padding: 40px;
    }

    /* .form-control {
        height: 38px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        padding-left: 20px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
    } */

    textarea.form-control {
        height: 150px;
        padding-top: 15px;
    }

    /* .submit-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
    } */

    /*  .submit-btn:hover {
        background: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
    } */

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .location-card {
            margin-bottom: 30px;
        }
    }

/* ////////////////////// GALLERY SECTION //////////////// */
        .gallery-section {
            padding: 100px 0;
            position: relative;
            background: #f9f9f9;
        }

        .gallery-container {
            display: flex;
            align-items: center;
            min-height: 500px;
            position: relative;
        }

        .gallery-stack {
            position: relative;
            width: 70%;
            height: 500px;
            margin-left: 10%;
        }

        .gallery-img {
            position: absolute;
            width: 500px;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            opacity: 2;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            transition: all 0.5s ease;
        }

        .gallery-img:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            z-index: 10 !important;
        }

        .gallery-img:nth-child(1) {
            top: 0;
            left: 0;
            z-index: 3;
            transform: rotate(-5deg);
        }

        .gallery-img:nth-child(2) {
            top: 30px;
            left: 150px;
            z-index: 2;
            transform: rotate(3deg);
        }

        .gallery-img:nth-child(3) {
            top: 10px;
            left: 300px;
            z-index: 1;
            transform: rotate(-2deg);
        }

        .gallery-cta {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            text-align: center;
            width: 25%;
        }

        .view-more-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(247, 159, 74, 0.3);
            display: inline-flex;
            align-items: center;
        }

        .view-more-btn:hover {
            /* background: var(--secondary-color); */
            transform: translateY(10px);
            box-shadow: 0 15px 30px rgba(54, 128, 50, 0.3);
        }

        .view-more-btn i {
            margin-left: 10px;
            transition: all 0.3s ease;
        }

        .view-more-btn:hover i {
            transform: translateX(5px);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .gallery-stack {
                width: 80%;
                margin-left: 5%;
                margin-right: 10%;
            }
            
            .gallery-img {
                width: 250px;
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .gallery-container {
                flex-direction: column;
            }
            
            .gallery-stack {
                width: 100%;
                margin-left: 0;
                height: 400px;
            }
            
            .gallery-cta {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 100%;
                margin-top: 40px;
            }
            
            .gallery-img {
                width: 200px;
                height: 300px;
            }
            
            .gallery-img:nth-child(1) {
                left: 10%;
            }
            
            .gallery-img:nth-child(2) {
                left: 40%;
            }
            
            .gallery-img:nth-child(3) {
                left: 70%;
            }
        }

        @media (max-width: 576px) {
            .gallery-img {
                width: 150px;
                height: 250px;
            }
        }







         .track-record {
            padding: 100px 0;
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            overflow: hidden;
            position: relative;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-heading h2 {
            font-weight: 800;
            color: var(--dark);
            position: relative;
            display: inline-block;
        }

        .section-heading h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .client-highway {
            display: flex;
            flex-wrap: nowrap;
            transform: rotate(-3deg);
            margin: 80px -200px;
            padding: 40px 0;
            position: relative;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: none;
        }

        .client-highway::-webkit-scrollbar {
            display: none;
        }

        .client-marker {
            flex: 0 0 auto;
            width: 280px;
            height: 180px;
            margin: 0 30px;
            position: relative;
            transition: all 0.5s ease;
        }

        .client-marker:hover {
            transform: scale(1.1) rotate(1deg);
        }

        .client-link {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
            text-decoration: none;
        }

        .client-logo-container {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .client-marker:hover .client-logo-container {
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .client-logo {
            max-width: 100%;
            max-height: 80px;
            filter: grayscale(100%) contrast(80%);
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .client-marker:hover .client-logo {
            filter: grayscale(0) contrast(100%);
            opacity: 1;
        }

        .year-badge {
            position: absolute;
            top: -20px;
            right: 20px;
            background: var(--secondary);
            color: #f79f4a;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 5px 15px rgba(54,128,50,0.3);
            z-index: 2;
        }

        /* .timeline-bar {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            z-index: 1;
            transform: translateY(-50%);
        } */

        .scroll-hint {
            text-align: center;
            margin-top: 40px;
            color: #666;
            font-weight: 500;
        }

        .scroll-hint i {
            margin-left: 10px;
            color: var(--primary-color);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateX(0);}
            40% {transform: translateX(-10px);}
            60% {transform: translateX(-5px);}
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .client-highway {
                margin: 80px -100px;
            }
        }

        @media (max-width: 768px) {
            .client-highway {
                transform: rotate(-1deg);
                margin: 60px -50px;
            }
            
            .client-marker {
                width: 220px;
                height: 150px;
                margin: 0 20px;
            }
        }

        @media (max-width: 576px) {
            .client-highway {
                transform: rotate(0);
                margin: 40px -30px;
            }
            
            .client-marker {
                width: 180px;
                height: 120px;
                margin: 0 15px;
            }
            
            .year-badge {
                top: -15px;
                right: 10px;
                font-size: 12px;
            }
        }

        /* //////////////BOOKINGS PAGE//////////////// */
/* Base Styles */
.booking-container {
  max-width: 800px;
  margin: 7rem auto;
  font-family: 'Inter', sans-serif;
  color: #2d3748;
}

/* Form Styles */
.user-details-section,
.booking-form-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.25rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

input, select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Fancy Select */
.fancy-select {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #94a3b8;
}

/* Price Display */
.price-display {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  text-align: center;
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: #368032;
}

.price-duration {
  color: #64748b;
  font-size: 0.9rem;
}

.price-note {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

/* Rules Section */
.rules-section {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.rules-section h3 {
  color: #1e293b;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rules-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.dos, .donts {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
}

.dos {
  border-left: 4px solid #10b981;
}

.donts {
  border-left: 4px solid #ef4444;
}

.dos h4, .donts h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
}

.dos h4 i {
  color: #10b981;
}

.donts h4 i {
  color: #ef4444;
}

.rules-section ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
}

.rules-section li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Submit Button */
/* .submit-btn {
  width: 100%;
  padding: 1rem;
  background: #f79f4a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.submit-btn:hover {
  background: #10b981;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 56, 202, 0.2);
} */

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .rules-columns {
    grid-template-columns: 1fr;
  }
}

/* Add to your layout head */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');




 /* Header Styles */
        .services-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #4a9e46 100%);
            color: white;
            padding: 100px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .services-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.05)" points="0,100 100,0 100,100"/></svg>');
            background-size: cover;
            opacity: 0.3;
        }
        .services-header h1::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }
        
        .services-header p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            position: relative;
        }
        
        .services-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(54,128,50,0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"/></svg>');
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: bottom center;
            z-index: -1;
        }
        
        .service-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 40px;
            overflow: hidden;
            transition: var(--transition);
            border-left: 5px solid var(--primary-color);
            position: relative;
        }
        
        /* .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        } */
        
        .service-number {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 60px;
            height: 60px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(247, 159, 74, 0.4);
            z-index: 2;
        }
        
        .service-header {
            background-color: white;
            color: var(--dark);
            padding: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            position: relative;
        }
        
        .service-header h2 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-left: 50px;
            color: var(--primary-color);
        }
        
        .service-header i {
            font-size: 1.5rem;
            transition: var(--transition);
            color: var(--secondary);
        }
        
        .service-header.active i {
            transform: rotate(180deg);
        }
        
        .service-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .service-content.active {
            padding: 0 30px 30px;
            max-height: 3000px;
        }
        
        .service-intro {
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-weight: 500;
            color: var(--primary-color);
            position: relative;
            padding-left: 25px;
        }
        
        .service-intro::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .what-we-offer, .who-its-for, .benefits {
            margin-bottom: 30px;
        }

        .custom-list {
            list-style: none;
        }
        
        .custom-list li {
            margin-bottom: 15px;
            padding-left: 35px;
            position: relative;
            transition: var(--transition);
        }
        
        .custom-list li:hover {
            transform: translateX(5px);
        }
        
        .custom-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 20px;
            height: 20px;
            background-color: var(--primary-light);
            border-radius: 50%;
        }
        
        .custom-list li::after {
            content: "";
            position: absolute;
            left: 5px;
            top: 13px;
            width: 10px;
            height: 10px;
            background-color: var(--primary-color);
            border-radius: 50%;
            transform: scale(0);
            transition: var(--transition);
        }
        
        .custom-list li:hover::after {
            transform: scale(1);
        }
      
     
        .impact-snapshot {
            background-color: var(--secondary-light);
            padding: 25px;
            border-radius: 12px;
            margin-top: 25px;
            border-left: 4px solid var(--secondary);
        }
        
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }
        
        .impact-item {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            transition: var(--transition);
        }
        
        .impact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        
        .impact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--secondary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .impact-icon i {
            color: var(--secondary);
            font-size: 1.2rem;
        }
        
        .impact-text {
            font-weight: 500;
        }
        
        .highlight-box {
            background-color: var(--primary-light);
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        
        @media (max-width: 768px) {
            .services-header h1 {
                font-size: 2.4rem;
            }
            
            .services-header p {
                font-size: 1rem;
            }
            
            .service-header h2 {
                font-size: 1.4rem;
                margin-left: 40px;
            }
            
            .service-number {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .impact-grid {
                grid-template-columns: 1fr;
            }
        }

/* BECOME A WENNOVATOR */
 .wennovator-container {
    
        max-width: 900px;
        margin: 0 auto;
        padding: 2rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
    }

    .header-section {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    h2 {
        font-size: 1.5rem;
        color: #555;
        margin-bottom: 1.5rem;
    }

    .intro-box {
        background-color: #f8f9fa;
        border-left: 4px solid #f79f4a;
        padding: 1.5rem;
        border-radius: 0 5px 5px 0;
        text-align: left;
        margin-bottom: 2rem;
    }

    .time-estimate {
        font-weight: 600;
        color: #368032;
        margin-top: 1rem;
    }

    .form-section {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .section-header {
        /* display: flex; */
        align-items: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }

    .section-number {
        background: #4e73df;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        font-weight: bold;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-row {
        display: flex;
        gap: 1.5rem;
    }

    .form-row .form-group {
        flex: 1;
    }

    label {
        display: block;
        font-weight: 600;
        margin-bottom: 0.3rem;
    }

    .subtext {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
    }

    textarea {
        min-height: 100px;
        resize: vertical;
    }
 .radio-group {
        display: grid;
        gap: 10px;
    }
    .radio-option {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 8px;
        align-items: center;
    }
    .radio-input-group {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .inline-input {
        width: 150px;
    }

    .checkbox-group {
        display: grid;
        gap: 10px;
    }
    .checkbox-option {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 8px;
        align-items: center;
    }

    .inline-input {
        margin-left: 0.5rem;
        padding: 0.5rem;
        width: 120px;
    }

    .submit-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--primary-light);
    }

    .form-footer {
        text-align: center;
        margin-top: 2rem;
    }

    .privacy-notice {
        font-size: 0.85rem;
        color: #666;
        margin-top: 1rem;
    }

    .text-gradient {
        background: var(--primary-color);;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .highlight {
        color: #f79f4a;
        font-weight: 700;
    }

/* END OF BECOME A WENNOVATOR */



/* TEAMS SECTION */
.team-hero {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .team-hero::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--primary-light);
            border-radius: 50%;
            z-index: 0;
        }
        
        .team-hero::after {
            content: "";
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background-color: var(--secondary-light);
            border-radius: 50%;
            z-index: 0;
        }
        
        /* .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
            font-weight: 700;
            color: var(--dark);
        }
        
        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: 2px;
        } */
        
        .team-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .team-card .team-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 45px auto 1rem;
            position: relative;
            z-index: 1;
            background-color: white;
        }
        
        .team-card .card-body {
            padding: 2rem 1.5rem;
        }
        
        .team-card .card-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .team-card .position {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .team-card .card-text {
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }
        
        .team-card .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary-color);
            margin: 0 0.25rem;
            transition: var(--transition);
        }
        
        .team-card .social-link:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .team-values {
            background-color: var(--light);
            padding: 5rem 0;
        }
        
        .value-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-light);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin: 0 auto 1.5rem;
        }
        
        .value-card h4 {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .join-team {
            background: linear-gradient(rgba(42, 45, 52, 0.9), rgba(42, 45, 52, 0.9)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        .join-team h2 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .join-team p {
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        
        
        @media (max-width: 768px) {
            .team-hero {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .team-card .team-img {
                width: 120px;
                height: 120px;
                margin: 60px auto 1rem;
            }
        }




        /* CONSULT WITH US */
        .consult-hero {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .consult-hero::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--primary-light);
            border-radius: 50%;
            z-index: 0;
        }
        
        .consult-hero::after {
            content: "";
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background-color: var(--secondary-light);
            border-radius: 50%;
            z-index: 0;
        }

          .consult-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }
        
        .consult-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .consult-header {
            background-color: var(--primary-color);
            color: white;
            padding: 2rem;
            text-align: center;
        }
        
        .consult-header h2 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .consult-body {
            background-color: white;
            padding: 2.5rem;
        }
