/* Base Styles & Variables */
:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #81c784;
    --secondary: #ff8f00;
    --secondary-dark: #e65100;
    --accent: #00796b;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --light-gray: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
  }
  
  p {
    margin-bottom: 1.5rem;
  }
  
  a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 143, 0, 0.1);
    border-radius: 50px;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
  }
  
  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }


/* Project Page Specific Styles */
.project-page {
    padding-top: var(--navbar-height);
}


/* Project Hero Section */
.project-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}


.hero-text{
    margin-left: 10%;
}
.project-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem 0;
    z-index: 10;
}

.project-hero-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--white);
    font-weight: 500;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.project-meta i {
    margin-right: 0.5rem;
}

.project-meta .status {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Project Overview */
.project-overview {
    padding: 4rem 0;
    background-color: var(--white);
}

.overview-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.overview-text {
    flex: 1;
}

.overview-text h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.overview-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    min-width: 120px;
}

.stat-item .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.overview-image {
    flex: 1;
    min-width: 300px;
}

.overview-image img {
    width: 100%;
    max-height: 400px !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Project Goals */
.project-goals {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.project-goals h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

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

.goal-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.goal-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.goal-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* Project Impact */
.project-impact {
    padding: 4rem 0;
    background-color: var(--white);
}

.project-impact h2 {
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.impact-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.impact-image {
    flex: 1;
    min-width: 300px;
}

.impact-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.impact-text {
    flex: 1;
}

.impact-text h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.impact-list {
    list-style: none;
    margin: 1.5rem 0;
}

.impact-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.impact-list i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--primary);
}

/* Project Gallery */
.project-gallery {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.project-gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 250px;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Project CTA */
.project-cta {
    padding: 4rem 0;
    background-color: var(--primary);
    color: var(--white);
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .project-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .overview-content, .impact-content {
        flex-direction: column;
    }
    
    .overview-image, .impact-image {
        width: 100%;
    }
    
    .impact-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .project-hero-swiper {
        height: 60vh;
        min-height: 400px;
    }
    
    .project-meta {
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions a {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .project-hero-swiper {
        height: 70vh;
    }
    
    .project-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
    }
}