    :root {
            --primary-green: #7DC242;
            --light-green: #8FD14F;
            --dark-green: #2C5234;
            --footer-dark: #0D1B2A;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background: #072032;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }

        .top-bar .left {
            color: #666;
        }

        .top-bar .right {
            text-align: right;
            color: #FFFFFF;
        }

        .top-bar i {
            color: var(--primary-green);
            margin-right: 5px;
        }
.custom-navbar {
    background: #fff;
    border-bottom: 2px solid #1f9d55;
    padding: 10px 0;
}

/* Menu links */
.custom-navbar .nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 30px;
}

.custom-navbar .nav-link:hover {
    color: #1f9d55;
}

/* Active pill */
.custom-navbar .nav-link.active {
    background: #1f9d55;
    color: #fff;
}

/* Right side container */
.header-right {
    display: flex;
    align-items: center;
}

/* Phone section */
.call-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid #1f9d55;
    border-right: none;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
    height: 46px;
}

.call-box i {
    color: #1f9d55;
}

/* Join button */
.join-btn {
    background: #9EC53B;
    color: #fff;
    padding: 14px 22px;
    height: 50px;
    display: flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 0 0;
}

.join-btn:hover {
    background: #178045;
    color: #fff;
}


        /* Navbar */
        .navbar {
            background: white;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .navbar-brand img {
            /*height: 45px;*/
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            padding: 8px 20px !important;
            font-size: 15px;
        }

        .navbar-nav .nav-link.active {
            background: var(--primary-green);
            color: white !important;
            border-radius: 5px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            
        }

        .phone-number {
            color: #333;
            font-weight: 600;
            font-size: 16px;
        }
        .gov-icon.govern {
    background: #6bbf59!important;
}

        .btn-join {
            background: var(--primary-green);
            color: white;
            padding: 10px 30px;
            border-radius: 5px;
            border: none;
            font-weight: 600;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            background: url('../img/Banner.png') center/cover;
            min-height: 550px;
            display: flex;
            align-items: flex-end;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
        }
.hero-sec {
    width: 100%;
    overflow: hidden;
}

/* Main wrapper */
.hero-wrapper {
    display: flex;
    /*min-height: 500px;*/
}

/* LEFT GREEN BOX */
.hero-left {
    width: 50%;
    background: linear-gradient(180deg, #6fb32d, #2f7d32);
    display: flex;
    align-items: center;
    padding: 80px 60px;
    height: 390px;
}

/* TEXT */
.hero-text h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;
}

.hero-text h1 span {
    font-weight: 700;
    display: inline-block;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

/* RIGHT IMAGE */
.hero-right {
    width: 50%;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* TABLET */
@media (max-width: 991px) {

    .hero-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        padding: 60px 30px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        height: 390px;
    }
}

/* MOBILE */
@media (max-width: 575px) {

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-left {
        padding: 40px 20px;
        width:100%;
    }

    .hero-right {
        height: 390px;
         width:100%;
    }
}
.banner-section .carousel-item {
  position: relative;
}

.banner-section img {
  height: 600px;
  object-fit: cover;
}

.banner-section .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  /*left: 10%;
  right: auto;*/
}

.banner-section .carousel-caption h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

.banner-section .carousel-caption p {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
 /* max-width: 500px;*/

}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
}

.btn-filled {
    background: #fff;
    color: #2f7d32;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* Right image */

.hero-right img {
    width: 100%;
    height: 390px;
}

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-green-box {
            background: var(--primary-green);
            padding: 50px 0;
        }

        .hero-text h1 {
            color: white;
            font-size: 2.8rem;
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 30px;
        }

        .hero-text h1 strong {
            font-weight: 700;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        .btn-learn-more {
            background: transparent;
            color: white;
            padding: 12px 35px;
            border-radius: 25px;
            border: 2px solid white;
            font-weight: 600;
            font-size: 15px;
        }

        .btn-about-sai {
            
			background: white;
            color: var(--dark-green);
            padding: 12px 35px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
            font-size: 15px;
        }

        .hero-image {
            position: relative;
            margin-top: 10px;
        }
.video-banner {
    position: relative;
}

.banner-wrapper {
    position: relative;
}

/* Play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Triangle play icon */
.play-icon {
    width: 0;
    height: 0;
    border-left: 22px solid #6fb32d;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 5px;
}

/* Hover effect */
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

        .hero-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Content Section */
        .content-section {
        padding: 45px 0px 45px 0px;
            background: white;
        }

        .content-left {
            position: relative;
        }

        .image-grid {
            gap: 15px;
            height: 450px;
        }

        .image-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .image-grid .img-1 {
            grid-row: 1 / 3;
        }

        .sai-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border: 3px solid var(--primary-green);
        }

        .sai-badge-inner {
            text-align: center;
        }

        .sai-badge-inner .sai-text {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-green);
            line-height: 1;
        }

        .sai-badge-inner .group-text {
            font-size: 10px;
            color: #666;
            margin-top: -5px;
        }

        .content-right h2 {
            font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #333;
        }

        .content-right h2 .green-text {
            color: var(--primary-green);
            font-weight: 600;
        }

        .content-right p {
            color: #666;
            line-height: 1.8;
            font-size: 15px;
            margin-bottom: 25px;
            text-align: :justify;
        }

        .btn-learn-green {
            background: var(--primary-green);
            color: white;
            padding: 10px 30px;
            border-radius: 25px;
            border: none;
            font-weight: 600;
        }

        /* Video Section */
        .video-section {
            padding: 45px 0px;
            background: #f8f9fa;
        }

        .video-wrapper {
            position: relative;
            background: #000;
            border-radius: 10px;
            overflow: hidden;
           
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }

        .play-button i {
            color: var(--primary-green);
            font-size: 24px;
            margin-left: 5px;
        }

        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.8);
            padding: 10px 15px;
            color: white;
            font-size: 14px;
        }

        /* Quote Section */
        .quote-section {
            background: url('../img/background.png') center/cover;
            padding: 60px 0;
            text-align: center;		
			background-color: #0F3520;
			
        }

        .quote-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-green);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .quote-icon i {
            color: white;
            font-size: 28px;
        }

        .quote-text {
            color: white;
            font-size: 2.4rem;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
            font-weight: 600;
        }

        /* Focus Areas */
        /* SECTION */
.focus-section {
    padding: 80px 0 60px;
    background: #f9fbfc;
    position: relative;
    overflow: hidden;
}

/* dotted vector background */
.focus-section::before,
.focus-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background-image: radial-gradient(#e2e2e2 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.6;
}

.focus-section::before {
    top: 40px;
    left: 40px;
}

.focus-section::after {
    bottom: 40px;
    right: 40px;
}

/* TITLE */
.focus-title {
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* SLIDER */
.focus-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* CARD */
.focus-cards {
    background: #fff;
    width: 320px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.35s;
}

/* highlighted center card */
.focus-cards.active {
    transform: translateY(-12px);
}

/* IMAGE */
.focus-img {
    padding: 12px;
}

.focus-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

/* CONTENT */
.focus-card-content {
    padding: 18px 22px 26px;
}

.focus-card-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.focus-card-content p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 18px;
}

/* BUTTON */
.focus-btn {
    display: inline-block;
    background: #63ad45;
    color: #fff;
    padding: 6px 18px;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
}

/* INDICATORS */
.focus-indicators {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.focus-indicators span {
    width: 22px;
    height: 4px;
    background: #cfcfcf;
    border-radius: 4px;
    transition: 0.3s;
}

.focus-indicators span.active {
    background: #63ad45;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .focus-slider {
        flex-wrap: wrap;
    }

    .focus-cards.active {
        transform: none;
    }
}

.btn-learn-green {
    background: #4caf50;
    color: #fff;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 13px;
    text-decoration: none;
}

.btn-learn-green:hover {
    background: #43a047;
    color: #fff;
}


        /* CTA Section 
        .cta-section {
            position: relative;
            background: url('https://images.unsplash.com/photo-1497436072909-60f360e1d4b1?w=1400') center/cover;
            padding: 120px 0;
            text-align: center;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 31, 68, 0.85);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-phone {
            color: var(--primary-green);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .cta-content h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 35px;
        }

        .btn-contact {
            background: var(--primary-green);
            color: white;
            padding: 15px 45px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            font-size: 16px;
        }
*/
        /* Footer */
        .footer-wrapper {
    background: url('../img/footer-background.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* CTA */
.cta-section {
    padding: 90px 0 70px;
}

.cta-phone {
    color: #7dc242;
    font-size: 14px;
    margin-bottom: 10px;
}

.cta-section h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}

.btn-cta {
    background: #7dc242;
    color: #fff;
    padding: 10px 26px;
    border-radius: 25px;
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 70px 0 30px;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}
.footer-contact a {
    /* background-color: #ffffff; */
    color: #FFFFFF!important;
    margin: 10px;
}
.footer-logo {
    margin-bottom: 15px;
}

.footer-desc {
    color: #cbd5e1;
    font-size: 14px;
}

.footer-contact {
    color: #7dc242;
    font-weight: 500;
    margin-top: 10px;
}

.footer-title {
    color: #7dc242;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-links a:hover {
    color: #7dc242;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 13px;
}

.newsletter-form button {
    background: #7dc242;
    border: none;
    padding: 0 18px;
    color: #fff;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #9ca3af;
}


        .copyright {
            text-align: center;
            padding: 25px 0;
            margin-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #666;
            font-size: 14px;
        }
		
		
		
/*about us*/

/* ---------- TOP STRIP ---------- */
/* Tablet */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0;
        background-position: center top;
    }
    .banner-section .carousel-caption p {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    /* max-width: 500px; */
    margin: -34px 0px 0px 0px;
}

}

/* Mobile */
@media (max-width: 576px) {
    .hero {
        padding: 70px 0;
        background-position: center;
    }
.banner-section .carousel-caption p {
    font-size: 15px;
    color: #fff;
    /* max-width: 500px; */
    margin: -34px 0px 0px 0px;
}

}
.hero {
    background: url('../img/about-banner.png');
    background-size: cover;
    padding: 130px 0;
}

/* ===== About ===== */
.about-img {
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.about-box {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
}

.btn-green {
    background: #6bbf59;
    color: #fff;
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 14px;
}

.about-img-wrapper {
    position: relative;
    max-width: 450px;
    margin-left: auto;
}

/* Large Image */
.about-img-large {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* Small Image */
.about-img-small {
    position: absolute;
   top: 30px;
    left: -60px;
    width: 198px;
    border-radius: 15px;
    /*border: 5px solid #fff;*/
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Button */
.btn-green {
    background-color: #5cb85c;
    color: #fff;
}

.btn-green:hover {
    background-color: #4cae4c;
    color: #fff;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .about-img-wrapper {
        margin: 23px 23px;
    }

    .about-img-small {
        left: -20px;
        width: 140px;
    }
}

/* ===== Governance ===== */
.governance {
    background: #e9f6e5;
    padding: 50px;
    border-radius: 20px;
}

.icon-circle {
    width: 46px;
    height: 46px;
    background: #6bbf59;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/* ===== Focus Cards ===== */
.focus-section h4 {
    font-weight: 600;
}

/* Card */
.focus-card {
    height: 100%;
    background: #ffffff;
    border: 1.5px solid #cfd8dc;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.35s ease;
}

/* Icon circle */
.focus-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e9f9e7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.focus-icon i {
    font-size: 22px;
    color: #4caf50;
    transition: all 0.35s ease;
}

/* Text */
.focus-card h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.focus-card p {
    font-size: 14px;
    color: #5f6f7a;
    margin-bottom: 0;
}

/* HOVER EFFECT */
.focus-card:hover {
    background: #5cab42;   /* green highlight */
    border-color: #5cab42;
    transform: translateY(-5px);
}

.focus-card:hover h6,
.focus-card:hover p {
    color: #ffffff;
}

.focus-card:hover .focus-icon {
    background: #ffffff;
}

.focus-card:hover .focus-icon i {
    color: #5cab42;
}

/* ===== Green Panels ===== */
.green-panel {
    background: linear-gradient(to right, #14532d, #1f7a3e);
    color: #fff;
    border-radius: 20px;
    padding: 40px;
}

/* ===== Team ===== */
.team-card img {
    border-radius: 14px;
    height: 12rem;
}

.team-card h6 {
    margin-top: 12px;
    font-weight: 600;
}

.team-card p {
    font-size: 13px;
    color: #6b7280;
}

/* ===== Governance Section ===== */
.governance-section {
    padding: 50px 0;
    background: #ffffff;
    position: relative;
}

/* Green box */
.gov-box {
    background: #eaf7e6;
    /* border-radius: 36px; */
    padding: 48px 60px 60px 600px;
    min-height: 0;
    border-top: 4px solid #6bbf59;
}

.gov-box h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111827;
}

.gov-desc {
    font-size: 17px;
    color: #4b5563;
    max-width: 460px;
}

/* Icons */
.gov-icon {
    width: 72px;
    height: 72px;
    background: #6bbf59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #fff;
    font-size: 24px;
}

.gov-box span {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    display: block;
}

/* Overlapping image */
.gov-image-wrap {
      left: 16px;
    bottom: 15%;
    /* transform: translateY(-4%); */
    z-index: 2;
    position:absolute;
    
}

.gov-image-wrap img {
    width: 100%;
    max-width: 520px;
    /* border-radius: 36px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    height: 20rem;
}
/* ========================= */
/* RESPONSIVE BREAKPOINTS */
/* ========================= */

/* TABLET */
@media (max-width: 991px) {

    .gov-box {
        padding: 60px 40px;
        text-align: center;
    }

    .gov-desc {
        margin: 0 auto;
    }

    .gov-image-wrap {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 40px;
        text-align: center;
    }

    .gov-image-wrap img {
        max-width: 80%;
    }

    .gov-box .row {
        margin-top: 40px;
    }

    .gov-box .col-3 {
        width: 50%;
        margin-bottom: 30px;
    }
}

/* MOBILE */
@media (max-width: 575px) {

    .gov-box {
        padding: 50px 20px;
    }

    .gov-box .col-3 {
        width: 100%;
    }

    .gov-image-wrap img {
        max-width: 100%;
    }

    .gov-box span {
        font-size: 13px;
    }
}
/* ===== Full Width Section ===== */
.values-section {
    width: 100%;
    overflow: hidden;
}

/* Common box */
.value-box {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

/* Integrity */
.value-box.integrity {
    background:
        linear-gradient(rgba(20,83,45,0.85), rgba(20,83,45,0.85)),
        url("../img/intergrity.jpg");
    background-size: cover;
    background-position: center;
}

/* Collaboration */
.value-box.collaboration {
    background:
        linear-gradient(rgba(34,139,34,0.85), rgba(34,139,34,0.85)),
        url("../img/collobration.jpg");
    background-size: cover;
    background-position: center;
}

/* Content */
.value-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align:justify;
}

.value-line {
    display: block;
    width: 60px;
    height: 3px;
    background: #7dc242;
    margin: 0 auto 12px;
}

.value-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #e5f3e1;
     text-align:justify;
}

/* Mobile */
@media (max-width: 768px) {
    .value-box {
        min-height: 220px;
    }
    .banner-section img {
     height: auto; 
    object-fit: cover;
}
}

/* Responsive fix */
@media (max-width: 991px) {
    .gov-image-wrap {
        position: static;
        transform: none;
        margin-bottom: 30px;
    }

    .gov-box {
        padding: 40px 30px;
        min-height: auto;
    }
    .banner-section img {
     height: auto; 
    object-fit: cover;
}
}
/* ===== Focus Section ===== */
.focus-section {
    background: #ffffff;
}

/* Card */
.focus-card {
    border: 1px solid #021526;
    border-radius: 14px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
}

.focus-card h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.focus-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* Icon circle */
.focus-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eef7ea;
    color: #6bbf59;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 13px;
    font-size: 20px;
}

/* Active (middle) */
.focus-card.active {
    background: #6bbf59;
    border-color: #6bbf59;
    color: #fff;
    box-shadow: 0 15px 35px rgba(107,191,89,.35);
}

.focus-card.active h6,
.focus-card.active p {
    color: #fff;
}

.focus-card.active .focus-icon {
    background: #ffffff;
    color: #6bbf59;
}

/* Hover */
.focus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    background: #6bbf59;
    border-color: #6bbf59;
    color: #fff;
    box-shadow: 0 15px 35px rgba(107, 191, 89, .35);
}

/* Mobile */
@media (max-width: 768px) {
    .focus-card {
        padding: 25px 20px;
    }
}


/* News*/


@media (max-width: 991px) {
    .hero1 {
        padding: 50px 0;
        background-position: center top;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero1 {
        padding: 70px 0;
        background-position: center;
    }
    .banner-section .carousel-caption p {
    font-size: 15px;
    color: #fff;
    /* max-width: 500px; */
    margin: -34px 0px 0px 0px;
}
.banner-section img {
     height: auto; 
    object-fit: cover;
}

}
.hero1 {
    background: url('../img/blog-banner.jpg');
    background-size: cover;
    padding: 130px 0;
}

/* ===== FILTER ===== */
.filter-select {
      border-radius: 30px;
    padding: 10px 15px;
    border: 4px solid #59AA46;
  
}

.search-box {
  position: relative;
}

.search-box input {
 
    border-radius: 30px;
    border: 4px solid #59AA46;
    padding: 10px 28px;
}

.search-box i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #999;
}

/* ===== CARDS ===== */
.custom-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.custom-card:hover {
  transform: translateY(-5px);
}

.custom-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.custom-card .card-body {
  padding: 20px;
}

.badge-green {
  background: #e6f4dc;
  color: #4b9e2f;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.custom-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.custom-card small {
  color: #4b9e2f;
  font-weight: 500;
}

/* ===== PAGINATION ===== */
.custom-pagination .page-link {
  border-radius: 50%;
  margin: 0 6px;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-pagination .active .page-link {
  background: #6fbf4a;
  color: #fff;
}

/* Conatct us */


@media (max-width: 991px) {
    .hero-contact {
        padding: 50px 0;
        background-position: center top;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-contact {
        padding: 70px 0;
        background-position: center;
    }
}
.hero-contact {
    background: url('../img/hero-contact.jpg');
    background-size: cover;
    padding: 130px 0;
}
/* ===== SECTION ===== */
.contact-wrapper {
  background: #fff;
}

/* TOP IMAGE */
.contact-hero {
 height: 250px;
    background: linear-gradient(rgba(32, 120, 60, .92), rgba(32, 120, 60, .92)), url(../img/formback.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.contact-hero h2 {
  color: #fff;
  font-weight: 600;
  margin-top: 30px;
}

/* CARD */
.contact-card {
  background: #fff;
  max-width: 780px;
  margin-top: -140px;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 15px 45px rgba(0,0,0,.15);
  position: relative;
  z-index: 2;
}
.industry-card {
    height: auto;
  }
/* FLOATING INPUTS */
.form-floating .form-control {
  border-radius: 25px;
  padding-left: 20px;
  font-size: 14px;
}

.form-floating textarea.form-control {
  border-radius: 16px;
  height: 120px;
}

/* BUTTON */
.btn-send {
  background: #5cab3d;
  color: #fff;
  border-radius: 30px;
  padding: 14px;
  font-weight: 600;
  border: none;
}

.btn-send:hover {
  background: #4a9933;
}

/* INFO */
.contact-info {
  margin: 45px 0 30px;
}

.contact-info small {
  display: block;
  color: #777;
}

.contact-info .green {
  color: #4caf50;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-card {
    margin-top: -100px;
    padding: 25px;
  }
  .industry-card {
    height: auto;
  }
}

/* Initiatives */


@media (max-width: 991px) {
    .hero-initiatives {
        padding: 100px 0;
        background-position: center top;
    }
    .industry-card {
    height: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-initiatives {
        padding: 70px 0;
        background-position: center;
    }
}
.hero-initiatives {
    background: url('../img/initiatives.png');
    background-size: cover;
    padding: 130px 0;
}
/* Industry */


.industry-section {
  padding: 60px 0;
}

.section-title {
  font-weight: 600;
  margin-bottom: 35px;
}

/* CARD */
.industry-card {
  text-align: center;
  background: #EEEEEE;
}

/* IMAGE WRAPPER */
.industry-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* TITLE */
.industry-title {
 
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 12px 10px;
  text-align: center;
  font-size: 14px;
  background: rgba(255,255,255,0.9);
  color: #333;
  transition: all 0.3s ease;
}

/* IMAGE */
.industry-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* HOVER EFFECT */
.industry-card:hover .industry-title {
  background: #5fb046;
  color: #fff;
}
.industry-img::after {
  content: "";
  inset: 0;
  background: rgba(95,176,70,0.65);
  opacity: 0;
  transition: 0.3s;
}

.industry-card:hover .industry-img::after {
  opacity: 1;
}


/* MOBILE */
@media (max-width: 576px) {
  .industry-img img {
    height: 160px;
  }
}




/* Research */
.research-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.research-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.research-card:hover {
  transform: translateY(-6px);
}

.research-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.research-body {
  padding: 18px;
}

.research-body h6 {
  font-size: 15px;
  margin-top: 6px;
}

.research-body p {
  font-size: 13px;
  color: #777;
}

.date {
  color: #5fb046;
  font-size: 12px;
}


/* Export */
.export-section {
  background: #5fb046;
}
.export-card {
  background: #fff;
  color: #333;
  padding: 25px;
  border-radius: 10px;
}
.export-card i {
  font-size: 30px;
  color: #474747;
  
}

/* Collaboration */
.logo-box {
  height: 60px;
  background: #eaeaea;
  border-radius: 6px;
}

/* Governance */
.bg-soft-green {
  background: #eaf6e5;
}
.gov-icon {
  background: #FFFFFF;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.gov-icon img.img-fluid.rounded {
    width: 30px;
}
.gov {
    margin-bottom: 25px;
    background: #ecedeb !important;
    padding: 30px 30px 30px 30px;
}
.gov i.fa-solid.fa-calendar-days {
    color: #4D592B !important;
}
.heading{
	
	color: #5fb046;
	font-weight: bold;
}
.explore{
	color: #116236;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}
@media (max-width: 576px) {
  .industry-card {
    height: auto;
  }

  .research-card img {
    height: 160px;
  }
  h6 {
    font-size: 15px;
  }
  
}

/* SECTION BACKGROUND */
.fa-wrapper {
    padding: 80px 0;
    background-color: #f9fbfc;
    position: relative;
    overflow: hidden;
}

/* dotted vector background */
.fa-wrapper::before,
.fa-wrapper::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: 0.5;
}

.fa-wrapper::before {
    top: 40px;
    left: 40px;
}

.fa-wrapper::after {
    bottom: 40px;
    right: 40px;
}

/* TITLE */
.fa-title {
    font-weight: 600;
}

/* CARD */
.fa-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
}

/* highlighted middle card */
.fa-card.active {
    transform: translateY(-10px);
}

/* IMAGE */
.fa-image {
    border-radius: 14px;
    overflow: hidden;
}

.fa-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.export-section {
    background: #63ad45;
}
.export-icon img {
    width: 100%;
    /* margin: -4px 0px 0px 0px; */
}
/* Title */
.export-title {
    font-weight: 600;
}

/* Circle card */
.export-circle {
    background: #ffffff;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Icon */
.export-icon {
    width: 70px;
    height: 70px;
    background: #eef6ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.export-icon i {
    font-size: 28px;
    color: #63ad45;
}

/* Text */
.export-text {
    color: #59AA46;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
}

/* Hover effect (optional) */
.export-circle:hover {
    transform: translateY(-6px);
}
.edu-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Image wrapper */
.edu-image-wrap {
    display: inline-block;
    position: relative;
}

/* Image itself */
.edu-image-wrap img {
    max-width: 100%;
    border-radius: 22px;
    position: relative;
    z-index: 2;
}

/* Orange organic outline */
.edu-image-wrap::before {
    content: "";
    position: absolute;
    inset: -10px;
    /*background: #ff8c1a;*/
    border-radius: 28px;
    z-index: 1;
    transform: rotate(-2deg);
}

/* Content */
.edu-content h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.edu-content p {
    color: #6c757d;
    max-width: 480px;
}

/* IMAGE ANIMATION BASE */
/* ============================
   SCROLL + HOVER IMAGE ANIMATION
============================ */

img {
 
  transform: scale(1.12);
  transition:
    transform 1.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 1.3s ease;
  will-change: transform, opacity;
}

/* Scroll visible state */
img.zoom-visible {
  opacity: 1;
  transform: scale(1);
}
img.animate {
  opacity: 1;
  transform: scale(1);
}

/* Hover animation (desktop only) */
@media (hover: hover) {
  img.zoom-visible:hover {
    transform: scale(1.06);
  }
}
@media (hover: hover) {
  img.animate:hover {
    transform: scale(1.06);
  }
}

/* Prevent hover zoom for icons/logos */
.navbar img,
.footer img,
.footer-logo,
.icon,
svg {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 768px) {
  img {
    transform: scale(1.06);
    transition-duration: 1.4s;
  }
}
@media (min-width: 1200px) {
  img {
    transition-duration: 2.2s;
  }
}








