 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background-color: #00695c;
    }

/* Header Styles */
header {
    height: 75px;        /* Explicit header height */
    background: linear-gradient(135deg, #004d40, #00695c);
    padding: 10px 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    padding-bottom: 0;
 }

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin-left: 0;
    margin-right: auto;
    padding: 0 10px;  /* Line where padding is defined */
}


.logo {
    display: flex;
    align-items: center;  /* ✅ Vertically center text and image */
    gap: 0.5rem;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    margin-right: auto; /* this pushes nav to the right */
}

.logo-img {
  height: 40px;         /* Controls the visible size */
  width: auto;          /* Maintains aspect ratio */
  max-width: 100%;      /* Prevents overflow */
  object-fit: contain;  /* Ensures it doesn’t stretch weirdly */
  background: transparent;
}

.logo span {
    color: #4caf50;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #4caf50;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4caf50;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #00695c;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
  height: calc(100vh - 75px); /* Subtract header height */
  margin-top: 75px; /* Equal to your header height */ 
  background-image: url('assets/images/img1.jpg');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  z-index: 1;

  background-color: #267268; /* light green fills rest of area */
  background-blend-mode: normal; /* ensure blend doesn’t interfere */
}

.hero + section {
  margin-top: 0;
}

.hero-content {
    margin-left: 63vw; /* or try 10vw for more shift */
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Section Styles */
.section {
    padding: 80px 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}
.section-title1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}
.section-subtitle1 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 1rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  display: flex;
  justify-content: center;
  text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #aaa9a9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #004d40;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 2rem;
    margin-top: 3rem;
}

#reporting {
  grid-column: 2; /* Places the card in the center column */
}

.service-card {
    background: rgb(186, 252, 173);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #4caf50;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #004d40;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.service-card li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.service-card li:last-child {
    border-bottom: none;
}

.events {
  min-height: 80vh;
  background: linear-gradient(135deg, #004d40, #00695c);
  color: #2b2b2b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* ESG Landscape */
.landscape {
    background: linear-gradient(135deg, #004d40, #00695c);
    color: white;
}

.landscape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.landscape-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.landscape-card h3 {
    color: #4caf50;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    background: linear-gradient(135deg, #004d40, #00695c);
    color: white;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    padding: 1rem;
    background-color: #267268; /* light green fills rest of area */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    background: #4caf50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    margin-right: 1rem;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    color: #4caf50;
    margin-bottom: 0.5rem;
}

/* Partners Section */
.partners {
    background: #00695c;;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    text-align: center;
    background: rgb(186, 252, 173);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #004d40, #4caf50);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.partner-card h3 {
    color: #004d40;
    margin-bottom: 0.5rem;
}

.partner-card .experience {
    color: #4caf50;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #004d40, #00695c);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #4caf50;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.contact-item i {
    margin-right: 1rem;
    color: #4caf50;
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4caf50;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background: #4caf50;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4caf50;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4caf50;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }

    nav {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 60px 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #004d40, #00695c);
        z-index: 2000;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        padding: 1rem 2rem;
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    /* Make dropdown vertical on mobile */
    nav .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: #00695c;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: flex;
        flex-direction: column !important;
        gap: 0;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-green {
    color: #4caf50;
}

.bg-green {
    background: #4caf50;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #004d40;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Page Specific Styles */
.about-page {
    background: linear-gradient(135deg, #004d40, #00695c);
    color: white;
    padding-top: 120px;
    min-height: 100vh;
}

.about-page .section-title {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-page .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-page .about-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-page .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #e8f5e8;
}

.about-page h3 {
    color: #4caf50;
    font-size: 2rem;
    margin: 2rem 0 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.about-page .esg-matters {
    list-style: none;
    margin: 1.5rem 0;
}

.about-page .esg-matters li {
    background: rgba(255, 255, 255, 0.05);
    margin: 1rem 0;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #4caf50;
    transition: all 0.3s ease;
}

.about-page .esg-matters li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.about-page .esg-matters li strong {
    color: #4caf50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-page .approach {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(230, 236, 230, 0.633);
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    font-style: italic;
}

/* Vision Section */
.vision-section {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-section h3 {
    color: #4caf50;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.vision-section p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e8f5e8;
    max-width: 900px;
    margin: 0 auto;
}

/* Core Values Section */
.core-values {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.core-values h3 {
    color: #4caf50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.values-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e8f5e8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.green-values {
    text-align: center;
    margin-top: 2rem;
}

.green-values h4 {
    font-size: 3rem;
    color: #4caf50;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 4px;
}

.acronym-meaning {
    font-size: 1.1rem;
    color: #b8e6b8;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-item h5 {
    color: #4caf50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: #e8f5e8;
    line-height: 1.6;
    font-size: 1rem;
}

.section.about-page {
  padding-top: 5rem;
}

.values-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.column {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.5rem;
}

.center-column {
  justify-content: center; /* vertically center the single item */
  align-items: center;
}

.value-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

