/* RESET & TYPOGRAPHY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff; /* White background */
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* LAYOUT UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.align-center { align-items: center; }
.section-padding { padding: 60px 0; }

/* COLORS */
:root {
    --primary-green: rgb(25, 76, 38); /* Dark Green */
    --primary-black: #111111;
    --secondary-green: #1e5a2d;
    --text-grey: #666;
}

/* TOP BAR */
.top-bar {
    background: var(--primary-black);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

/* HEADER */
header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 2px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-box {
  
    padding: 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  
    height: 85px;          /* Fixed height to keep it consistent */
    width: auto;
}
.logo-main { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.logo-sub { font-size: 1rem; font-weight: 700; }
.logo-tag { font-size: 0.7rem; color: #fff; background: var(--primary-black); padding: 2px 4px; margin-top: 2px; text-align: center; }

nav ul { display: flex; gap: 20px; }
nav ul li a { 
    font-weight: 700; 
    font-size: 0.9rem; 
    color: var(--primary-black); 
    padding: 5px 10px;
    transition: 0.3s;
}
nav ul li a:hover, nav ul li a.active { 
    background: var(--primary-green); 
    color: #ffffff; 
}
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }


/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }
.overlay-text {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: var(--primary-black);
    color: #fff;
    padding: 20px 40px;
    max-width: 600px;
}
.overlay-text h1 { font-size: 3.5rem; }
.overlay-text .highlight { color: #ffffff; background: var(--primary-green); padding: 2px 8px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px; height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active { background: var(--primary-green); }

/* GRID & CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.grid-2-about { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.grid-3-home { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }

.gallery-card img { height: 250px; width: 100%; object-fit: cover; }
.green-box {
    background: var(--primary-green);
    color: #ffffff;
    padding: 15px;
    height: 75px;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--primary-black);
}

/* TEXT BLOCKS */
.text-block h2 { margin-bottom: 15px; font-size: 1.5rem; color: var(--primary-green); }
.text-block p { margin-bottom: 15px; color: var(--text-grey); }

/* BUTTONS */
.btn {
    display: inline-block;
    border: 2px solid var(--primary-green);
    padding: 8px 20px;
    background: transparent;
    font-weight: 700;
    color: var(--primary-green);
    transition: 0.3s;
    cursor: pointer;
}
.btn:hover { background: var(--primary-green); color: #fff; }

/* SERVICE LIST (Home Page) */
.service-list li {
    background: var(--primary-black);
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-left: 5px solid var(--primary-green);
}

/* PAGE HEADER */
.page-header {
    background: var(--primary-green);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-bottom: 4px solid var(--primary-black);
}
.page-subtitle {
    margin-top: 10px;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}

/* SECTION LABEL / DEFINED SECTION HEADERS */
.section-label {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 35px;
}
.section-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #e2e2e2;
    line-height: 1;
}
.section-title {
    font-size: 1.7rem;
    color: var(--primary-black);
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background: var(--primary-green);
}

/* ALTERNATE SECTION BACKGROUND (visual separation) */
.section-alt {
    background: #f4f4f4;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

/* ABOUT PAGE */
.values-box { background: #f9f9f9; padding: 20px; border: 1px solid #ddd; }
.values-heading { color: var(--primary-green); margin-bottom: 15px; font-size: 1.1rem; }
.value-item { margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.value-item.last { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.value-item h4 { color: var(--primary-green); }

/* MISSION & VISION CARDS */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.mv-card {
    background: #fff;
    border: 1px solid #ddd;
    border-top: 4px solid var(--primary-green);
    padding: 30px;
}
.mv-card-dark {
    background: var(--primary-black);
    color: #fff;
    border-top: 4px solid var(--primary-green);
}
.mv-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}
.mv-tag-light { color: #fff; }

/* SERVICE PAGE */
.service-card {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-bottom: 4px solid var(--primary-green);
}
.service-card h3 { color: var(--primary-green); margin-bottom: 10px; }

.industry-box {
    background: var(--primary-black);
    color: #fff;
    text-align: center;
    padding: 30px 10px;
    font-weight: bold;
    border: 1px solid var(--primary-green);
}

/* TEAM PAGE */
.team-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    border-top: 4px solid var(--primary-green);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    background: #f4f4f4;
    border: 3px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-placeholder-text {
    display: none;
    font-size: 0.75rem;
    color: var(--text-grey);
    text-align: center;
    padding: 0 10px;
}
.team-photo.no-photo .photo-placeholder-text { display: block; }
.team-card h3 { margin-bottom: 5px; color: var(--primary-green); }
.team-card .role {
    display: block;
    font-weight: bold;
    color: var(--text-grey);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* FOUNDER CARD - larger, more prominent layout with bigger photo */
.founder-wrap {
    display: flex;
    justify-content: center;
}
.founder-card {
    max-width: 720px;
    width: 100%;
    padding: 40px;
}
.founder-card .team-photo {
    width: 280px;
    height: 320px;
    border-radius: 12px; /* rounded corners instead of circle */
    overflow: hidden;
    margin: 0 auto 20px;
}

.founder-card .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.founder-card h3 {
    font-size: 1.4rem;
}
.founder-card .role {
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary-green);
}
.founder-card p {
    text-align: left;
    color: var(--text-grey);
    margin-top: 10px;
}

/* FOOTER */
footer {
    background: var(--primary-black);
    color: #fff;
    padding: 40px 0 20px 0;
    border-top: 4px solid var(--primary-green);
}
.footer-content { align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid #333; margin-bottom: 20px; }
.footer-logo {background:#fff; padding: 10px 15px; font-weight: bold; font-size: 1.2rem; display: inline-block; margin-bottom: 15px; }
.footer-info p { margin-bottom: 5px; font-size: 0.9rem; }
.footer-social .social-link { color: var(--primary-green); font-weight: bold; }
.footer-copy { font-size: 0.8rem; color: #aaa; text-align: center; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid-3, .grid-2-about, .grid-3-home, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .grid-3, .grid-2, .grid-2-about, .grid-3-home, .grid-4, .mv-grid { grid-template-columns: 1fr; }
    .hamburger { display: block; }
    nav ul { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 80px; left: 0; width: 100%; 
        background: #fff; padding: 20px; 
        border-bottom: 2px solid #ddd;
    }
    nav ul.open { display: flex; }
    .hero-slider { height: 300px; }
    .overlay-text { max-width: 100%; padding: 15px; }
    .overlay-text h1 { font-size: 1.5rem; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .footer-copy { text-align: center; }
    .founder-card .team-photo { width: 160px; height: 160px; }
}

/* CONTACT PAGE SPECIFIC STYLES */
.grid-2-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info .info-item {
    margin-bottom: 20px;
}
.contact-info h4 {
    color: rgb(25, 76, 38);
    margin-bottom: 5px;
}
.contact-form-box {
    background: #f9f9f9;
    padding: 30px;
    border: 1px solid #eee;
    border-top: 4px solid rgb(25, 76, 38);
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    outline: 2px solid rgb(25, 76, 38);
    border-color: transparent;
}
.btn-submit {
    width: 100%;
    background: rgb(25, 76, 38);
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1rem;
    cursor: pointer;
}
.btn-submit:hover {
    background: #1e5a2d;
    color: #fff;
}
.map-container {
    border: 2px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
    .grid-2-contact { grid-template-columns: 1fr; }
}

/* CUSTOM LOGO IMAGE STYLES */
.custom-logo {
    max-height: 70px;      /* Limits the height so it doesn't push the header too big */
    width: auto;           /* Keeps the aspect ratio of your image */
   
    object-fit: contain;
}

.footer-social {
    text-align: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #1877f2;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 22px;
    transition: 0.3s ease;
}

.social-link:hover {
    background: #145dbf;
    transform: translateY(-3px);
}
.service-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-bottom: 4px solid var(--primary-green);
    overflow: hidden;
}
.service-card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #e8e8e8;
    position: relative;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card-img.no-photo::after {
    content: "Image coming soon";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: var(--text-grey);
}
.service-card-body {
    padding: 20px;
}
.service-card h3 { color: var(--primary-green); margin-bottom: 10px; }

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--primary-green);
    color: #fff;
    padding: 50px 0;
    border-top: 4px solid var(--primary-black);
    border-bottom: 4px solid var(--primary-black);
}
.cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.cta-content {
    flex: 1;
    min-width: 240px;
}
.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.cta-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin: 0;
}
.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}
.cta-btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: 0.3s;
    text-decoration: none;
}
.cta-btn-primary:hover {
    background: transparent;
    color: #ffffff;
}
.cta-btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: 0.3s;
    text-decoration: none;
}
.cta-btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-green);
}

/* responsive */
@media (max-width: 768px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
}