/* ===================================
   BK GREEN ENERGY - ABOUT PAGE
   =================================== */

:root {
    --primary-green: #90cf4d;
    --secondary-green: #90cf4d;
    --white: #ffffff;
    --dark: #1a1a1a;
    --light-bg: #f8f9fa;
    --light-green-bg: #e8f5e9;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ==============================
   Light Transparent Navbar
================================ */

/* Base transparent navbar */
.custom-navbar {
    background-color: #fff6;
    border-radius: 50rem;
    justify-content: space-between;
    align-items: center;
    width: 97%;
    height: auto;
    min-height: 4.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
}

/* Nav link normal */
.custom-navbar .nav-link {
    color: #000000;
    font-weight: 700;        /* was 500 → now bold */
    margin-left: 18px;
    transition: 0.3s ease;
    letter-spacing: 0.5px;   /* optional: cleaner look */
}

.custom-navbar .nav-link:hover {
    color: #ffffff;
}

/* Contact button */
.btn-nav {
    /* border: 2px solid #e6eee9; */
    padding: 6px 18px;
    border-radius: 30px;
    color: #eaf3ee;
    font-weight: 700;        /* make button text bold */
    transition: all 0.3s ease;
}

.btn-nav:hover {
    /* background: #0f7c3a; */
    color: #fff !important;
}

/* Mobile toggler icon style */
.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-toggler::after {
    content: "☰";
    font-size: 24px;
    color: #0f7c3a;
}

/* Change navbar on scroll */
.navbar-scrolled {
    background: #90cf4d;
    padding: 12px 0;
    box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.15);
}

.navbar-scrolled .nav-link {
    color: #000000;
}

.navbar-scrolled .btn-nav {
    color: #000000;
}
/* ===================================
   INTRODUCTION SECTION (FIXED)
   =================================== */

.intro-section {
    position: relative;
    padding: 170px 20px 120px;
    background-image: url("../assets/images/About us.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* overlay */
.intro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}

/* keep content above overlay */
.intro-section .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* flexbox layout: text left, logo right */
.intro-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* text block - left side */
.intro-text {
    flex: 1;
    max-width: 600px;
}

.intro-text h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
}

/* logo block - right side */
.intro-logo-block {
    flex-shrink: 0;
}

.intro-big-logo {
    width: auto;
    height: 220px;
    filter: drop-shadow(0 8px 20px rgba(144, 207, 77, 0.5));
    animation: fadeInRight 1s ease;
}

/* White background behind logo - ABOUT PAGE ONLY */
body.about-page .intro-logo-block {
    background: #ffffff;
    padding: 8px 15px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* decoration */
.bg-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15,124,58,0.1), transparent);
    border-radius: 50%;
    z-index: 1;
}

/* ---------- MOBILE ---------- */
@media (max-width: 991px){
    .intro-content{
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .intro-text{
        max-width: 100%;
    }

    .intro-big-logo{
        height: 180px;
    }

    .intro-section{
        padding: 150px 20px 90px;
    }

    .intro-text h1{
        font-size: 2.2rem;
    }

    .intro-text p{
        font-size: 1.05rem;
    }
}


/* ===================================
   VISION SECTION
   =================================== */

.vision-section {
    padding: 100px 20px;
    background: #90cf4d;
}

.vision-content {
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.vision-text {
    flex: 2;
}

.vision-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 124, 58, 0.2);
    animation: float 3s ease-in-out infinite;
    padding: 30px;
}

.icon-circle svg {
    width: 100%;
    height: 100%;
}

.accent-line {
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, var(--primary-green), transparent);
    margin-top: 20px;
}

.vision-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.vision-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* ===================================
   MISSION SECTION
   =================================== */

.mission-section {
    padding: 100px 20px;
    background: #90cf4d;
}

.mission-content {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.mission-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.mission-image .icon-circle {
    width: 150px;
    height: 150px;
    animation: float 3.5s ease-in-out infinite;
}

.mission-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
    margin-bottom: 15px;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

/* ===================================
   JOURNEY SECTION
   =================================== */

.journey-section {
    padding: 100px 20px;
    background: var(--white);
}

.journey-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 60px;
    font-weight: 700;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
    z-index: 0;
}

.timeline-item {
    position: relative;
    flex: 1;
    text-align: center;
    z-index: 1;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 4px solid var(--primary-green);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(15, 124, 58, 0.3);
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(15, 124, 58, 0.5);
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.1rem;
    color: #666;
}

/* ===================================
   Footer SECTION
   =================================== */

footer {
    background: #000000;
    color: #e2e8f0;
    padding: 60px 40px 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

/* Top Row */
.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,0.1);
    padding-bottom:20px;
}

/* Circular logo */
.footer-logo img{
    height:70px;
    width:70px;
    object-fit:contain;
    background:#fff;
    padding:8px;
    border-radius:50%;
}

/* Contact right side */
.footer-contact{
    display:flex;
    flex-direction:column;   /* stack vertically */
    align-items:flex-end;    /* keep aligned to right side */
    gap:6px;
    font-size:16px;
}


.footer-contact a{
    color:#cbd5e1;
    text-decoration:none;
    transition:0.3s;
    text-align:right;
}

.footer-contact a:hover{
    color:#90cf4d;
}

.footer-contact .gst-number {
    color:#cbd5e1;
    font-size:15px;
    text-align:right;
    display:block;
}



/* Columns */
.footer-columns{
    display:flex;
    justify-content:space-between;
    gap:40px;
    margin-top:40px;
}

/* Links stay left */
.footer-links{
    text-align:left;
}

/* Address pushed to right */
.footer-address{
    text-align:right;
    margin-left:auto;   /* pushes it to the right */
}


.footer-title {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.footer-link {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: #90cf4d;
    padding-left: 5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-col a:hover {
    color: #90cf4d;
}


/* ===== FIXED ADDRESS + VIDEO ALIGNMENT ===== */

.address-video-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.address-text {
    flex: 1;
}

.map-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.map-placeholder video {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
/* Divider */
.footer-divider {
    height: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}



/* Footer Bottom Layout */
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
    font-size:13px;
    color:#94a3b8;
}

/* Social icons container */
.footer-social{
    display:flex;
    gap:15px;
}

/* Icon style */
.footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    color:#cbd5e1;
    font-size:16px;
    transition:0.3s;
}

/* Hover effect */
.footer-social a:hover{
    background:#0f7c3a;
    color:#fff;
    transform:translateY(-3px);
}
.footer-social img{
    width: 70px;
    height:40px;
    object-fit:cover;
}

.footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    transition:0.3s;
}

.footer-social a:hover{
    background:#0f7c3a;
    transform:translateY(-3px);
}



/* ===================================
   ANIMATIONS
   =================================== */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(2) {
    transition-delay: 0.1s;
}

.timeline-item:nth-child(3) {
    transition-delay: 0.2s;
}

.timeline-item:nth-child(4) {
    transition-delay: 0.3s;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* ===== TABLET ===== */
@media (max-width: 968px) {

    /* ---------- NAVBAR FIX ---------- */
    .custom-navbar{
        width:92%;
        margin:10px auto;
        border-radius:40px;
        padding:10px 16px;
    }

    .navbar > .container{
        padding-left:0;
        padding-right:0;
    }

    .navbar-collapse{
        width:100%;
        margin-top:12px;
    }


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

    .hero p { font-size: 1.1rem; }

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

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

    .services-heading h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px){

    /* Reduce logo size on mobile */
    body.about-page .intro-big-logo {
        height: 120px !important;
    }

    body.about-page .intro-logo-block {
        text-align: center !important;
    }

    /* Intro section - mobile layout */
    body.about-page .intro-content {
        flex-direction: column !important;
        text-align: center !important;
    }

    body.about-page .intro-logo-block {
        order: 1 !important;
        margin: 0 auto 30px !important;
    }

    body.about-page .intro-text {
        order: 2 !important;
        text-align: center !important;
    }

    /* Vision section - mobile layout */
    body.about-page .vision-content {
        flex-direction: column !important;
        gap: 20px !important;
    }

    body.about-page .vision-image {
        order: 1 !important;
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto 20px !important;
    }

    body.about-page .vision-text {
        order: 2 !important;
    }

    body.about-page .vision-text h2 {
        text-align: center !important;
    }

    body.about-page .vision-text p {
        text-align: left !important;
        width: 100% !important;
    }

    body.about-page .vision-section {
        padding: 60px 20px !important;
    }

    /* Timeline - stack vertically */
    body.about-page .timeline {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }

    body.about-page .timeline-item {
        text-align: left !important;
        max-width: 400px !important;
        width: 100% !important;
    }

    .completed-projects-section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .epc-name {
        font-size: 1rem;
    }

    .project-category {
        padding: 25px 20px;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .project-row {
        padding: 15px 18px;
    }

    .project-row:hover {
        transform: translateX(5px);
    }

    .project-content h4 {
        font-size: 1.05rem;
    }

    .location {
        font-size: 0.9rem;
    }

    .footer-top{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .footer-contact{
        flex-direction:column;
        gap:8px;
        align-items:center;
    }

    .footer-columns{
        flex-direction:column;
        text-align:center;
    }

    .footer-address{
        text-align:center;
        margin-left:0;
    }
}


/* ===== SMALL MOBILE ===== */
@media (max-width: 640px) {

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

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

    .hero-logo { max-width: 150px; }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn { width: 100%; }

    .about-text h2,
    .consultation h2,
    .location h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .location-details {
        flex-direction: column;
    }
}

/* services page navbar brand force */
#services-page .navbar .navbar-brand{
  font-weight: 800 !important;
  color: #209b28 !important;
  font-size: 22px !important;
  display: flex !important;
  align-items: center !important;
}

/* sevices navbar vertical align */
#services-page .navbar{
  display: flex !important;
  align-items: center !important;
}

.navbar-brand {
    font-weight: 900;
    color: #000 !important;
}

/* TEAM STRENGTH */
.team-strength-section{
    padding: 80px 0;
    background: #ffffff;
}

.team-title{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f5f7f3;
    margin-bottom: 40px;
}

.team-grid{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.team-card{
    background: #f8f9fa;
    border: 2px solid #e8f5e9;
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    transition: 0.25s ease;
}

.team-card:hover{
    transform: translateY(-4px);
    border-color: #90cf4d;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.team-count{
    font-size: 2.4rem;
    font-weight: 900;
    color: #90cf4d;
    line-height: 1;
    margin-bottom: 10px;
}

.team-role{
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
}

.team-total{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #32530e, #2a490a);
    border-radius: 14px;
    color: #ffffff;
    font-weight: 800;
}

.team-total-label{
    opacity: 0.95;
}

.team-total-value{
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px){
    .team-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 576px){
    .team-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .team-title{ font-size: 2rem; }
}
.team-strength-section{
    padding: 100px 0;
    background: #8BC34A;   /* Green background */
}

.navbar-brand{
    font-weight: 700;
    color: #2e7d32 !important;
    font-size: 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar{
    display: flex;
    align-items: center;
}
/* ABOUT page navbar brand force */
#about-page .navbar .navbar-brand{
  font-weight: 800 !important;
  color: #1b5e20 !important;
  font-size: 22px !important;
  display: flex !important;
  align-items: center !important;
}

/* About navbar vertical align */
#about-page .navbar{
  display: flex !important;
  align-items: center !important;
}


.navbar-brand {
    font-weight: 900;
    color: #000 !important;
}

/* ===== BIG NAVBAR + BIG TEXT ===== */

/* Navbar container bigger vertical space */
.custom-navbar {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
    min-height: 100px !important;    /* sets bigger navbar height */
}

/* Brand text BIG */
.custom-navbar .navbar-brand-text,
.custom-navbar .navbar-brand,
.custom-navbar .navbar-brand-text a {
    font-size: 27px !important;       /* large brand text */
    font-weight: 800 !important;      /* bold text */
    color: #000000 !important;
}

/* Nav links bigger */
.custom-navbar .nav-link {
    font-size: 20px !important;      /* larger menu text */
    font-weight: 700 !important;
    padding: 12px 20px !important;   /* bigger clickable padding */
}

/* Nav link spacing */
.custom-navbar .nav-item + .nav-item {
    margin-left: 3px;               /* more gap between links */
}

/* Contact button bigger */
.btn-nav {
    font-size: 20px !important;
    padding: 12px 10px !important;
    font-weight: 900 !important;
}

/* Toggler icon bigger (mobile) */
.navbar-toggler::after {
    font-size: 20px !important;
}
.hero-title{
    font-weight: 800;   /* or 900 for extra bold */
}
.roles-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 37px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.role-card {
    grid-column: span 2;
}

.role-card:nth-child(4) {
    grid-column: 2 / 4;
}

.role-card:nth-child(5) {
    grid-column: 4 / 6;
}


/* Mobile responsive - Tablet (768px and below) */
@media (max-width: 768px) {
    .mission-section {
        padding: 80px 20px;
        background: #90cf4d;
    }

    .mission-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 40px 25px;
        width: 100%;
        max-width: 100%;
        background: var(--white);
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        margin: 0 auto;
    }

    .mission-image {
        flex: 0 0 auto;
        min-width: auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
    }

    .mission-image .icon-circle {
        width: 140px;
        height: 140px;
        flex-shrink: 0;
        background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(15, 124, 58, 0.2);
    }

    .mission-text {
        flex: 1;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        order: 2;
    }

    .mission-text h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 18px;
        color: var(--primary-green);
        font-weight: 700;
    }

    .mission-text p {
        font-size: 1.1rem;
        text-align: center;
        line-height: 1.7;
        color: #555;
        margin-bottom: 12px;
    }

    .mission-text p:last-child {
        margin-bottom: 0;
    }
}

/* Mobile responsive - Small Mobile (480px and below) */
@media (max-width: 480px) {
    .mission-section {
        padding: 60px 15px;
        background: #90cf4d;
    }

    .mission-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        padding: 30px 18px;
        width: 100%;
        max-width: 100%;
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        margin: 0 auto;
    }

    .mission-image {
        flex: 0 0 auto;
        min-width: auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
    }

    .mission-image .icon-circle {
        width: 110px;
        height: 110px;
        flex-shrink: 0;
        background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(15, 124, 58, 0.2);
    }

    .mission-text {
        flex: 1;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        order: 2;
    }

    .mission-text h2 {
        font-size: 1.9rem;
        text-align: center;
        margin-bottom: 15px;
        color: var(--primary-green);
        font-weight: 700;
    }

    .mission-text p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
        color: #555;
        margin-bottom: 10px;
    }

    .mission-text p:last-child {
        margin-bottom: 0;
    }
}

/* Brand logo styling */
.brand {
    display: flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 35px;
    }
}

/* Brand text styling */
.brand-text {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.brand-text:hover {
    color: #0f7c3a;
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 27px;
    }
}



