/* ===== RESET & PERFORMANCE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    color: #222;
    background-color: #f7f9fc;
}

img {
    max-width: 100%;
    display: block;
   
}

/* ===== HEADER / NAVBAR ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 61, 46, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 18px;
}

.logo img {
    width: 120px;  /* reduce size */
    max-width: 100%;
    height: auto;
}

.logo-text{
    color: #ffffff;
    font-weight: bold;
}

/* ===== NAV ===== */
.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 15px;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #f5a623;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    margin-left: 20px; /* distance from logo */
    font-size: 26px;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("https://images.unsplash.com/photo-1509395176047-4a66953fd231");
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.hero h1 {
    font-size: clamp(30px, 5vw, 52px);
    max-width: 900px;
}

.hero p {
    margin: 18px 0 28px;
    font-size: 18px;
}

.btn {
    background: #f5a623;
    color: #000;
    padding: 13px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.btn:hover {
    background: #d88c1d;
    transform: translateY(-2px);
}

/* ===== SECTION BASE ===== */
section {
    padding: 80px 25px;
}

section h2 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 34px;
    color: #0b3d2e;
}

section h3 {
    text-align: center;
    margin-bottom: 22px;
    color: #444;
}

section p {
    max-width: 1000px;
    margin: auto;
    font-size: 16px;
}

.section-title{
    text-align: center;
    margin-bottom: 5px;
}

.section-subtitle{
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.testimonials .service-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 25px;
}

.management-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.management-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid #0b3d2e;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.management-card:hover .management-img {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(11, 61, 46, 0.6);
}


/* ===== GRID SECTIONS ===== */
.service-grid {
    max-width: 1200px;
    margin: 45px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ===== CARD ===== */
.service-card {
    background: #fff;
    padding: 32px 26px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: #0b3d2e;
    margin-bottom: 10px;
}

.service-card h4,
.service-card h5 {
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
}

.service-card p {
    font-size: 15px;
    text-align: left;
}

/* ===== PROJECTS TIMELINE ===== */
.projects .service-card {
    border-left: 5px solid #0b3d2e;
    position: relative;
}

.projects .service-card::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 30px;
    width: 18px;
    height: 18px;
    background: #f5a623;
    border-radius: 50%;
}

/* ===== PARTNERS RESPONSE / TESTIMONIALS ===== */
.testimonials {
    background-color: #102a23; /* Dark eco green */
    color: #ffffff;
}

.testimonials h2,
.testimonials p,
.testimonials strong {
    color: #ffffff;
}

.testimonials .section-subtitle {
    color: #cfe7dc;
}

/* Testimonial cards */
.testimonials .service-card {
    background: #ffffff;
    color: #222;
}

/* Names */
.testinomial-name strong {
    color: #0b3d2e;
}





/* ===== CONTACT ===== */
.contact {
    background: #e9f4ef;
}

.contact-form {
    max-width: 460px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 13px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.contact-form button {
    background: #0b3d2e;
    color: #fff;
    padding: 13px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.project-img{
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}


/* ===== CONTACT INFO ===== */
.contact-info {
    max-width: 1000px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.contact-box h3 {
    color: #0b3d2e;
    margin-bottom: 15px;
}

.contact-box p a {
    color: #0b3d2e;
    text-decoration: none;
    font-weight: 600;
}

.call-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.call-btn {
    display: inline-block;
    text-align: center;
    background: #0b3d2e;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.call-btn:hover {
    background: #092f23;
}

/* ===== WORKING HOURS ===== */
.working-hours {
    list-style: none;
    padding: 0;
}

.working-hours li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

/* ===== RESPONSIVE CONTACT ===== */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}


/* ===== FOOTER ===== */
.footer {
    background: #0b3d2e;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #0b3d2e;
        flex-direction: column;
        text-align: center;
    }

    @media (max-width: 768px) {
    .service-img {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-top: 30px;
    }
}


    .nav a {
        padding: 15px 0;
        border-top: 1px solid rgba(255,255,255,0.2);
        margin: 0;
    }

    .menu-toggle {
        display: block;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        margin-top: 30px;
    }
}


@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .hero-buttons .btn {
        width: 220px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 100px;
    }

    .menu-toggle{
        margin-left: 30px;
    }
}



/* ===== SERVICE IMAGES ===== */
.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 15px;
}

/* Make service cards consistent */
.service-card {
    overflow: hidden;
}



/* ===== ABOUT SECTION (DARK THEME) ===== */
.about {
    background-color: #0b0f14; /* Deep black with slight blue tone */
    padding: 90px 20px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


.about-text h2 {
    color: #f5a623; /* Accent gold */
    font-size: 32px;
    margin-bottom: 10px;
}

.about-text h3 {
    color: #9fe0c3; /* Soft green */
    font-size: 22px;
    margin-bottom: 20px;
}

.about-text p {
    color: #e6e6e6; /* Light grey for readability */
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}


.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.08);
}


.secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #f5a623;
    margin-left: 15px;
}

.secondary-btn:hover {
    background: #f5a623;
    color: #000;
}

section:not(.hero):not(.stats) {
    border-top: 1px solid #e6eee9;
}

.management-card h3 {
    font-size: 20px;
}

.management-card h5 {
    color: #1c6b4a;
    margin-bottom: 15px;
    font-weight: 600;
}

.management-card strong {
    font-weight: 400;
    font-size: 14.5px;
    line-height: 1.8;
}

/* ===== HERO BUTTON GROUP ===== */
.hero-buttons {
    display: flex;
    gap: 18px;              /* space between buttons */
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Primary Button */
.primary-btn {
    background: #f5a623;
    color: #000;
}

/* Secondary Button */
.secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #f5a623;
}

/* Hover Effects */
.primary-btn:hover {
    background: #d88c1d;
}

.secondary-btn:hover {
    background: #f5a623;
    color: #000;
}

/* ===== MANAGEMENT SECTION ===== */
.management {
    background: linear-gradient(
        rgba(11, 61, 46, 0.95),
        rgba(11, 61, 46, 0.95)
    );
    padding: 90px 20px;
}

/* Section heading */
.management h2 {
    color: #f5a623;
}

/* Cards inside management */
.management .service-card {
    background: #ffffff;
    color: #333;
}

/* Management text */
.management .service-card h3 {
    color: #0b3d2e;
}

.management .service-card h5 {
    color: #666;
}

/* Management images */
.managementimg {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f5a623;
    margin-bottom: 15px;
}


/* ===== TESTIMONIALS SECTION FIX ===== */
.testimonials {
    background: #0f2f26; /* dark green (same brand color) */
}

/* Force cards to stay white */
.testimonials .service-card {
    background: #ffffff;
}

/* Force ALL text inside cards to be black */
.testimonials .service-card,
.testimonials .service-card p,
.testimonials .service-card strong,
.testimonials .service-card h3,
.testimonials .service-card h4,
.testimonials .service-card h5,
.testimonials .testinomial-name {
    color: #000 !important;
}

.testimonials .service-card strong {
    display: block;
    margin-top: 15px;
    line-height: 1.7;
    
}

/* Mobile header fix */
@media (max-width: 768px) {
  header,
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
  }

  .logo img {
    max-width: 120px;
    height: auto;
  }

  .menu-toggle {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  #about {
    text-align: center;
    padding: 40px 20px;
  }

  #about h2,
  #about h3 {
    text-align: center;
  }

  #about p {
    text-align: center;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .management-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .management-card img {
    margin: 0 auto 15px;
    display: block;
  }
}

