/* =====================
   Variables and Reset
   ===================== */

:root {
    --white: #FFFFFF;
    --grey: #646464;
    --green: #67A443;
    --black: #000000;
    --dark-grey: #323232;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--grey);
    background: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =====================
   Header
   ===================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.header.scrolled {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
    color: var(--grey);
}

.header.scrolled .nav-link.active {
    color: var(--green);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-link.active {
    color: var(--green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

/* =====================
   Hero Section
   ===================== */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.video-slider video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.video-slider video.active {
    opacity: 1;
    z-index: 1;
}

.video-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* =====================
   Hero Banner
   ===================== */

.hero-banner {
    position: relative;
    min-height: 60vh;
    background-color: var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin-top: 0;
}

.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-banner .hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-banner h1 {
    font-size: 3.5rem;
    margin: 0 0 1rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.hero-banner p {
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
    line-height: 1.5;
}

/* =====================
   Services Page Hero Banner
   ===================== */

.services-page .hero-banner {
    background: #323232;
    padding: 12rem 0 6rem;
    min-height: auto;
    display: block;
}

.services-page .hero-banner .container {
    position: relative;
    z-index: 2;
}

.services-page .hero-banner .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    position: static;
    transform: none;
}

.services-page .hero-banner h1 {
    margin-bottom: 1rem;
    color: var(--white);
}

.services-page .hero-banner p {
    margin: 0 0 3rem;
    color: var(--white);
    opacity: 0.9;
}

.services-page .hero-stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 4rem;
}

.services-page .stat-item {
    text-align: center;
}

.services-page .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.services-page .stat-label {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
}

/* =====================
   About Page Hero Banner
   ===================== */

.about-page .hero-banner {
    min-height: 50vh;
    padding: 8rem 0 4rem;
}

.about-page .hero-banner .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =====================
   Projects Page Hero Banner
   ===================== */

.projects-page .hero-banner {
    min-height: 50vh;
    padding: 8rem 0 4rem;
}

.projects-page .hero-banner .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =====================
   About Section
   ===================== */

.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--green);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* =====================
   Services Section
   ===================== */

.services {
    background: var(--white);
}

.section-title {
    color: var(--green);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    color: var(--grey);
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 270px);
    gap: 2rem;
    justify-content: center;
    padding: 2rem 0;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 270px);
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 270px);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 270px;
    }
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
    cursor: default;
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-card span.material-icons {
    font-size: 40px;
    color: var(--black);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover span.material-icons {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.4;
}

/* =====================
   Projects Section
   ===================== */

.projects {
    padding: 8rem 0;
    background: var(--white);
}

.projects-slider {
    position: relative;
    overflow: hidden;
    height: 600px;
    border-radius: 8px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
}

.slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--white);
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.btn:hover {
    background: #558e37;
}

/* Slider navigation arrows */
.slider-nav {
    display: none;
}

.slider-nav button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-nav button:hover {
    background: rgba(255,255,255,0.3);
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: var(--white);
}

/* =====================
   News Section
   ===================== */

.news {
    padding: 8rem 0;
    background: #f8f8f8;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.news-item.large {
    height: 620px;
}

.news-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-item:hover img {
    transform: scale(1.05);
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    z-index: 2;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.news-item:not(.large) .news-content h3 {
    font-size: 1.2rem;
}

.news-item:not(.large) .news-content p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* =====================
   Video Section
   ===================== */

.video-section {
    height: 70vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.video-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);  /* black overlay */
    z-index: 1;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;          /* align to left */
    justify-content: center;
    color: var(--white);
    z-index: 2;
}

.video-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.video-content h2 {
    font-size: 6rem;                  /* much bigger font */
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
}

@media (max-width: 1024px) {
    .video-content h2 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .video-content h2 {
        font-size: 3rem;
    }

    .video-content {
        left: 5%;
    }
}

@media (max-width: 480px) {
    .video-content h2 {
        font-size: 2.2rem;
    }

    .video-logo {
        height: 40px;
    }
}

/* =====================
   Footer Section (GCLA)
   ===================== */

.footer {
    background: var(--grey);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    align-items: start;
}

.footer-about img {
    margin-bottom: 1rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-services h3,
.footer-links h3,
.footer-newsletter h3 {
    font-size: 1.2rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.footer-services ul,
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-services ul li,
.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-services ul li a,
.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-services ul li a:hover,
.footer-links ul li a:hover {
    color: var(--green);
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #558e37;
}

.newsletter-form .form-group {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px 0 0 20px;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form button.btn {
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 0 20px 20px 0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.newsletter-form button.btn:hover {
    background: #558e37;
}

.privacy-notice {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 2rem;
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
}

.footer-bottom-content p {
    font-size: 0.8rem;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--green);
}

.footer-bottom-icons {
    display: flex;
    gap: 40px;
}

.footer-bottom-icons a {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-icons a:hover {
    color: var(--green);
}

/* =====================
   Animations
   ===================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

/* =====================
   Media Queries
   ===================== */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-item.large {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-link {
        color: var(--grey);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-banner {
        padding: 10rem 0 4rem;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-banner p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .news-small-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ====================================================
                   SERVICES PAGE
   ==================================================== */

.services-page .nav-link.active {
  font-weight: bold;
  color: var(--green) !important;
  position: relative;
}

.services-page .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--green);
}

.services-page .page-title {
  padding: 8rem 0 4rem;
  background: #f8f8f8;
  text-align: center;
}

.services-page .page-title h1 {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.services-page .page-title p {
  font-size: 1rem;
  color: var(--grey);
}

.services-page .hero-banner {
    position: relative;
    background: none;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 8rem;
}

.services-page .hero-banner .overlay {
    display: none;
}

.services-page .hero-banner .hero-content {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    color: var(--black);
}

.services-page .hero-banner h1 {
    font-size: 3.5rem;
    margin: 0 0 1rem;
    font-weight: 800;
    color: var(--black);
}

.services-page .hero-banner p {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 3rem;
}

.services-page .two-column-layout {
    display: flex;
    align-items: flex-start;
    gap: 8rem;
    max-width: 1200px;
    margin: 8rem auto;
    padding: 0 1.5rem;
}

.intro-left {
    flex: 0 0 400px;
}

.intro-left h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.intro-left .subtitle {
    font-size: 1.2rem;
    color: var(--green);
    margin-top: 1rem;
    font-weight: 500;
}

.intro-right {
    flex: 1;
    padding-top: 1rem;
}

.intro-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 2rem;
}

.intro-right p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .two-column-layout {
        gap: 4rem;
    }

    .intro-left {
        flex: 0 0 300px;
    }

    .intro-left h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .two-column-layout {
        flex-direction: column;
        gap: 3rem;
        margin: 4rem auto;
    }

    .intro-left {
        flex: none;
    }

    .intro-left h1 {
        font-size: 3.5rem;
    }
}

/* ====================================================
                   PARTNERS PAGE
   ==================================================== */

.partners-page .nav-link.active {
    font-weight: bold;
    color: var(--green) !important;
    position: relative;
}

.partners-page .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    margin-bottom: 1.5rem;
    min-height: 120px;
    max-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.partner-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.partner-logo img {
    max-width: 90%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-info h3 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-info p {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.partner-type {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--green);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item span.material-icons {
    font-size: 48px;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    color: var(--black);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--grey);
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--green);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: var(--grey);
    font-style: italic;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author h4 {
    color: var(--black);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--green);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Styles for Partners Page */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card,
    .benefit-item,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .partner-logo {
        min-height: 100px;
        max-height: 120px;
    }
    
    .partner-logo img {
        max-height: 100px;
    }
    
    .benefit-item span.material-icons {
        font-size: 40px;
    }
}

/* ====================================================
                   CONTACT US
   ==================================================== */

.contact-heading {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.contact-heading .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.contact-heading .section-subtitle {
  color: var(--grey);
  font-size: 1rem;
}

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
    display: flex; /* Add this to make it a flex container */
    justify-content: space-between; /* Spread the columns evenly */
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #72a040;
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #4a4b49;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.row {
    display: flex;
    justify-content: space-between;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #67a42f;              /* ✅ visible on white background */
  border: 1px solid #67a42f;   /* ✅ visible border */
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #67a42f;
  color: #fff;                /* ✅ switch to white text on hover */
  border: 1px solid #67a42f;
}

/* ====================================================
                   ABOUT PAGE
   ==================================================== */

.about-page .nav-link.active {
    font-weight: bold;
    color: var(--green) !important;
    position: relative;
}

.about-page .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green);
}

.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.story-layout {
    display: flex;
    align-items: flex-start;
    gap: 8rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story-title {
    flex: 0 0 auto;
}

.story-title h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
}

.story-content {
    flex: 1;
    padding-top: 0.5rem;
}

.story-content .subtitle {
    font-size: 1.2rem;
    color: var(--green);
    margin-bottom: 2rem;
    font-weight: 500;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 2rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: #f8f8f8;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.mission-card {
    background: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mission-card span.material-icons {
    font-size: 48px;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--grey);
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    padding: 6rem 0;
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.expertise-item {
    padding: 2rem;
    border-left: 4px solid var(--green);
    background: #f8f8f8;
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateX(10px);
}

.expertise-item h3 {
    color: var(--black);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.expertise-item p {
    color: var(--grey);
    line-height: 1.6;
}

/* Management Team Section */
.management-team-section {
    padding: 6rem 0;
    background: var(--white);
}

.management-team-section .section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--grey);
    font-size: 1.1rem;
    line-height: 1.6;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.management-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.management-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-photo {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.management-card:hover .member-photo img {
    transform: scale(1.05);
}

.linkedin-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.management-card:hover .linkedin-overlay {
    opacity: 1;
}

.linkedin-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    color: var(--green);
    transform: scale(1.1);
}

.linkedin-link i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #0077b5;
}

.linkedin-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    color: var(--black);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.position {
    color: var(--green);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.bio {
    color: var(--grey);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f8f8f8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-content {
    padding: 2rem;
    text-align: center;
}

.team-content h3 {
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.team-content p {
    color: var(--grey);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .story-layout {
        gap: 4rem;
    }

    .story-title h1 {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .mission-grid,
    .team-grid,
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .story-title h1 {
        font-size: 3.5rem;
    }

    .story-content {
        padding-top: 0;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .mission-grid,
    .team-grid,
    .management-grid {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .expertise-item,
    .team-card {
        padding: 1.5rem;
    }
    
    .management-card {
        margin-bottom: 2rem;
    }
    
    .member-photo {
        height: 250px;
    }
    
    .member-info {
        padding: 1.5rem;
    }
}

/* ====================================================
                   PROJECTS PAGE
   ==================================================== */

.projects-page .nav-link.active {
    font-weight: bold;
    color: var(--green) !important;
    position: relative;
}

.projects-page .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green);
}

.project-filters {
    padding: 3rem 0;
    background: var(--white);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--green);
    background: transparent;
    color: var(--green);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green);
    color: var(--white);
}

.projects-grid-section {
    padding: 3rem 0 6rem;
    background: #f8f8f8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay span.material-icons {
    color: var(--white);
    font-size: 2rem;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.project-content p {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.project-category {
    color: var(--green);
    font-weight: 500;
}

.project-location {
    color: var(--grey);
}

.project-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    background: transparent;
    color: var(--green);
    border: 1px solid var(--green);
    transition: all 0.3s ease;
}

.project-btn:hover {
    background: var(--green);
    color: var(--white);
}

@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 200px;
    }
}

/* Services Hero Section */
.services-hero {
    background-color: #323232;
    min-height: 70vh;
    position: relative;
}

.services-hero .hero-content {
    text-align: center;
}

.services-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.services-hero p {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    color: var(--white);
}

.services-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 8rem;
}

.services-hero .stat-item {
    text-align: center;
}

.services-hero .stat-number {
    font-size: 4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.services-hero .stat-label {
    font-size: 1.2rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 60px;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p {
        font-size: 1.2rem;
    }

    .services-hero .hero-stats {
        gap: 2rem;
        flex-direction: column;
    }

    .services-hero .stat-number {
        font-size: 3rem;
    }
}

/* Updated Service Cards */
.services-section {
    padding: 6rem 0;
    background: #f8f8f8;
}

.services-section .container > div:first-of-type {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.services-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--green);
    text-align: left;
    margin-bottom: 0;
    flex-shrink: 0;
    min-width: 300px;
}

.services-section .section-subtitle {
    text-align: left;
    margin: 0;
    color: var(--grey);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
}

@media (max-width: 992px) {
    .services-section .container > div:first-of-type {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .services-section .section-title {
        min-width: auto;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content .material-icons {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .material-icons {
    transform: translateY(-5px);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-content p {
    color: var(--grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: var(--grey);
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--green);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.service-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--green);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 3rem;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 2rem;
    }
}

/* Service Detail Page Styles */
.service-detail-page .hero-banner {
    background: var(--white);
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    text-align: center;
}

.service-detail-page .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-page .service-icon {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 2rem;
    display: block;
}

.service-detail-page h1 {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.service-detail-page .hero-content p {
    font-size: 1.2rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

.service-details {
    padding: 6rem 0;
    background: #f8f8f8;
}

.service-overview {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.service-overview h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.service-overview p {
    font-size: 1.1rem;
    color: var(--grey);
    line-height: 1.8;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--grey);
    line-height: 1.6;
}

.service-process {
    max-width: 1000px;
    margin: 0 auto;
}

.service-process h2 {
    font-size: 2.5rem;
    color: var(--black);
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green);
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--grey);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-detail-page h1 {
        font-size: 2.5rem;
    }

    .service-detail-page .service-icon {
        font-size: 3rem;
    }

    .service-overview h2,
    .service-process h2 {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-detail-page h1 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: var(--white);
}

.why-choose-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive styles for Why Choose Us section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-content h2 {
        font-size: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #323232;
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--green);
}

.cta-btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-page .hero-banner {
    background: var(--dark-grey);
    padding: 12rem 0 6rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-page .hero-banner .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-page .hero-banner h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-page .hero-banner p {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Info Section */
.contact-info-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: #f8f8f8;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.form-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-content h2 {
    font-size: 2.5rem;
    color: var(--green);
    margin-bottom: 1rem;
    text-align: center;
}

.form-content p {
    color: var(--grey);
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    color: var(--grey);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #558e37;
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background: var(--white);
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-page .hero-banner h1 {
        font-size: 2.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-content {
        padding: 2rem;
    }

    .form-content h2 {
        font-size: 2rem;
    }

    .nav-link.active::after {
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-page .hero-banner h1 {
        font-size: 2rem;
    }
}

/* Project Detail Page Styles */
.project-detail-page .hero-banner {
    height: 60vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg');
    background-position: center;
    background-size: cover;
}

.project-detail-page .hero-banner .hero-content {
    padding-top: 0;
    margin-top: 0;
}

.project-details {
    padding: 80px 0;
}

.project-overview {
    margin-bottom: 60px;
}

.project-image-main {
    margin-bottom: 40px;
}

.project-image-main img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-info .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.info-item h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-item p {
    color: #666;
    font-size: 1rem;
}

.project-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.project-description h2 {
    color: #333;
    margin-bottom: 24px;
    font-size: 2rem;
}

.project-description h3 {
    color: #444;
    margin: 32px 0 16px;
    font-size: 1.5rem;
}

.project-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.objectives-list, .scope-content ul {
    list-style: none;
    padding: 0;
}

.objectives-list li, .scope-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #666;
}

.objectives-list li:before, .scope-content li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.project-gallery {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

@media (max-width: 992px) {
    .project-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .project-info .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .project-info .info-grid {
        grid-template-columns: 1fr;
    }
    
    .project-details {
        padding: 40px 0;
    }
}

/* Form Message Styles */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Form Styles */
.form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.form-select option {
    padding: 10px;
}



