/**
* Template Name: Reveal
* Template URL: https://bootstrapmade.com/reveal-bootstrap-corporate-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0c2e8a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #50d8af; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #555555;  /* The default color of the main navmenu links */
  --nav-hover-color: #50d8af; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #50d8af; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #091e5b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0e2d89;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    /*color: var(--heading-color);*/
    color: #0f2b12;
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/*.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}*/

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
/*.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}*/

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    /*background-color: var(--background-color);*/
    background-color: #F6FAFA;
    padding: 30px 0;
    scroll-margin-top: 118px;
    overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 30px;
  position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: #0f2b12;
    }

        .section-title h2:after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            /*background: var(--accent-color);*/
            background: #019345;
            left: 0;
            right: 0;
            bottom: 0;
        }

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Global Content
--------------------------------------------------------------*/
.site-content {
    padding: 0px !important;
    background-color: #F6FAFA !important;
    border: 0px !important;
}

.content-frame { /* Hide Border */
    border-left: 0 solid #F7FAFB !important;
    border-left-width: 0;
    border-left-style: solid;
    border-left-color: rgb(229, 231, 235);
    border-right: 0 solid #F7FAFB !important;
    box-shadow: 0 0 0 0px #F7FAFB !important;
}



/*--------------------------------------------------------------
# Sticky Navbar
--------------------------------------------------------------*/
.site-header {
    position: sticky;
    top: 0;
    z-index: 2000; /* above hero overlays, cards, AOS */
    background: #F6FAFA; /* IMPORTANT so content doesn’t show behind */
    /*box-shadow: 0 5px 5px -7px #333;*/
    
}

:target {
    scroll-margin-top: 120px; /* adjust to your header height */
}

/* or better if you wrap sections in <section> */
section {
    scroll-margin-top: 120px;
}

.nav-link {
font-family:Montserrat;
font-weight: 500;

}

.navbar .nav-link.active {
    font-weight: 700;
}

.navbar .nav-link, .navbar .nav-link:visited, .navbar .dropdown-item, .navbar .dropdown-item:visited {
    color: #0f2b12 !important;
}

    .navbar .nav-link:hover {
        color: #E97900 !important;
    }


/* Navbar Dropdown*/
.dropdown-item.active, .dropdown-item:active {
    /*color: var(--bs-dropdown-link-active-color);*/
    color: #EBF5EA !important;
    text-decoration: none;
    /*background-color: var(--bs-dropdown-link-active-bg);*/
    background-color: #ffffff !important;
}

.dropdown-item {
    font-family: Montserrat;
    font-weight:500;
    font-size: 14px;
}

.navbar .dropdown-item:hover {
    color: #E97900 !important;
}


.cta-btn {
    background: #019345 !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

        .hero .info {
            position: relative;
            inset: 0;
            z-index: 3;
            padding: 140px 0 60px 0;
        }

    @media (max-width: 768px), (max-height: 480px) {
        .hero .info {
            padding: 100px 50px 60px 50px;
        }
    }

    .hero .info h2 {
        margin-bottom: 30px;
        padding-bottom: 30px;
        font-size: 72px;
        font-weight: 700;
        position: relative;
        color: #0f2b12;
    }

        .hero .info h2 span {
            color: #019345;
        }

        .hero .info h2:after {
            content: "";
            position: absolute;
            display: block;
            width: 80px;
            height: 4px;
            background: #019345;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    @media (max-width: 768px) {
        .hero .info h2 {
            font-size: 36px;
        }
    }

    .hero .info p {
        color: #050316;
        font-size: 24px;
    }
    /*Gradient button - Get Involved*/
    .hero .info .btn-get-involved {
        background-image: linear-gradient(to right, #e43a3a 0%, #eb7900 51%, #019345 100%)
    }

    .hero .info .btn-get-involved {
        margin: 10px;
        padding: 15px 45px;
        text-align: center;
        text-transform: uppercase;
        transition: 0.5s;
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 15px;
        background-size: 200% auto;
        color: white;
        box-shadow: 0 0 20px #eee;
        border-radius: 10px;
        display: inline-block;
        text-decoration: none;
    }

        .hero .info .btn-get-involved:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
        }



    .hero .carousel {
        inset: 0;
        position: absolute;
        overflow: visible;
    }

    .hero .carousel-item {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: visible;
        transition-duration: 0.4s;
    }

        .hero .carousel-item img {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero .carousel-item::before {
            content: "";
            background-color: color-mix(in srgb, var(--background-color), transparent 30%);
            position: absolute;
            inset: 0;
            z-index: 2;
        }

    .hero .carousel-control-prev {
        justify-content: start;
    }
    /*Mobile*/
    @media (min-width: 768px) {

        .hero .carousel-control-prev {
            padding-left: 15px;
        }


        .hero .carousel-control-next {
            justify-content: end;
        }

        @media (min-width: 640px) {
            .hero .carousel-control-next {
                padding-right: 15px;
            }
        }

        .hero .carousel-control-next-icon,
        .hero .carousel-control-prev-icon {
            background: none;
            font-size: 26px;
            line-height: 0;
            background: color-mix(in srgb, var(--surface-color), transparent 20%);
            /*color: color-mix(in srgb, var(--default-color), transparent 40%);*/
            color: #019345;
            border-radius: 50px;
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero .carousel-control-prev,
        .hero .carousel-control-next {
            z-index: 3;
            transition: 0.3s;
        }

            .hero .carousel-control-prev:focus,
            .hero .carousel-control-next:focus {
                opacity: 0.5;
            }

            .hero .carousel-control-prev:hover,
            .hero .carousel-control-next:hover {
                opacity: 0.9;
            }
    }
/*--------------------------------------------------------------
# Impact Section
--------------------------------------------------------------*/

    .impact-wrap {
        position: relative;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, -50%);
        width: min(1100px, calc(100% - 32px));
        z-index: 4;
        
    }

    .impact-card {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 15px;
        background: rgb(246, 250, 248);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    }

    .impact-item {
        flex: 1;
        text-align: center;
    }

    .impact-num {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 800;
        color: #ff8a00;
        line-height: 1;
    }

    .impact-label {
        margin-top: 8px;
        font-size: 13px;
        color: #444;
        letter-spacing: 0.4px;
    }
    /* Mobile: reduce overlap + stack */
/*@media (max-width: 768px) {

    .impact-card {
        flex-direction: row; 
        gap: 8px;
        padding: 14px 10px;
    }

    .impact-item {
        flex: 1;
        text-align: center;
    }

    .impact-num {
        font-size: 22px;
    }

    .impact-label {
        font-size: 11px;
        margin-top: 4px;
        line-height: 1.2;
    }

    .impact-wrap {
        transform: translate(-50%, -60%);
    }
}*/


@media (max-width: 768px) {

   /* .impact-wrap {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        transform: translate(-50%, -50%);
        width: calc(100% - 14px);
    }*/

    .impact-card {
        padding: 16px 12px;
    }
    .impact-num {
        font-size: 20px;
    }

    .impact-label {
        font-size: 10px;
    }

}


    /*--------------------------------------------------------------
# Overview Section
--------------------------------------------------------------*/

    .overview .section-title h2 {
        color: #0f2b12;
       
    }

    .overview .content h3 {
        font-size: 1.6rem;
        color: #0f2b12;
        font-weight: 700;
    }

    .overview .btn-about-us {
        color: var(--contrast-color);
        background: #019345;
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 4px;
        transition: 0.5s;
        margin: 10px;
        text-decoration: none;
    }
    /*.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
} */

    .overview, content p {
        font-size: 16px;
        font-weight: 200;
    }

        .overview .content ul {
            list-style: none;
            padding: 0;
        }

            .overview .content ul li {
                padding: 10px 0 0 0;
                display: flex;
            }

            .overview .content ul i {
                color: var(--accent-color);
                margin-right: 0.5rem;
                line-height: 1.2;
                font-size: 1.25rem;
            }

        .overview .content p:last-child {
            margin-bottom: 0;
        }
    /* MOBILE */
    @media (max-width: 768px) {
        .overview .btn-about-us {
            color: var(--contrast-color);
            background: #019345;
            font-family: var(--heading-font);
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 1px;
            display: block; /* change from inline-block */
            padding: 12px 40px;
            border-radius: 4px;
            transition: 0.5s;
            margin: 10px auto; /* center horizontally */
            text-decoration: none;
            text-align: center;
            width: fit-content; /* keeps button tight to text */
        }
        .overview .content h3 {
            font-size: 1.2rem;
            color: #0f2b12;
            font-weight: 800;
            
        }

    }
    /*--------------------------------------------------------------
# Mission & Vision Section 
--------------------------------------------------------------*/

    .mission p {
        font-size: 16px;
    }

    .mission h5 {
        color: #0f2b12;
    }

    .mission .text-center h2 {
        color: #0f2b12;
        font-weight: 800;
    }

    .mission .card {
        background-color: #F7FAFB;
        border-radius: 20px;
        border-color: #F7FAFB;
    }


    .mission .card-body {
        background-color: #F4FFF4;
        /*background-color: var(--surface-color);*/
        padding: 30px;
        /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);*/
        border-radius: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer; /* optional: makes it clear it's interactive */
        z-index: 1; /* ensures hover pops above other elements */
    }

        .mission .card-body:hover {
            transform: translateY(-10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
            border-color: var(--accent-color);
        }
    /*--------------------------------------------------------------
# Timeline Section
--------------------------------------------------------------*/
.timeline-outer {
    background: #F6FAFA;
    padding: 60px 20px; /* space around inner container */
}

    .timeline.section {
        position: relative;
        padding: 60px 0;
        overflow: hidden;
        background: #f5fff5; /* inner light green */
        border-radius: 24px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);
        max-width: 1300px;
        margin: 0 auto; /* center it */
    }
    /*.timeline.section {
        position: relative;
        padding: 60px 0;
        overflow: hidden;
        background: #f5fff5;
        border-radius: 15px;
    }*/


    .timeline .container {
        position: relative;
        z-index: 1;
        
    }

    .timeline .section-title h2 {
        font-weight: 700;
        letter-spacing: 0.5px;
        text-align: start;
        color: #0f2b12;
    }

    .timeline-outer .section-title p {
        font-size: 16px;
        text-align: start;
    }

    .timeline-1 {
        position: relative;
        margin: 10px auto 0;
        padding: 10px 0;
        max-width: 980px;
    }

        .timeline-1 p {
            font-size: 16px;
        }
        /* Center vertical line */
        .timeline-1::before {
            content: "";
            position: absolute;
            top: 5%;
            bottom: 10%;
            left: 50%;
            width: 5px;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.75);
            border-radius: 999px;
            box-shadow: 0 12px 26px rgba(31, 62, 84, 0.10);
        }


    .timeline-item {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 140px 1fr;
        gap: 18px;
        align-items: center;
        margin: 24px 0;
    }


        .timeline-item.left {
            grid-template-areas: "card center year";
        }

        .timeline-item.right {
            grid-template-areas: "year center card";
        }

    .timeline-card {
        grid-area: card;
        position: relative;
        background: rgba(255, 255, 255, 0.88);
        border-radius: 16px;
        padding: 18px 18px 16px 18px;
        box-shadow: 0 18px 40px rgba(31, 62, 84, 0.12);
        backdrop-filter: blur(2px);
    }

    .timeline-center {
        grid-area: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }


    .timeline-dot {
        width: 36px;
        height: 36px;
        background: #019345;
        border-radius: 50%;
        box-shadow: 0 12px 26px rgba(31, 62, 84, 0.16);
        border: 6px solid rgba(214, 232, 244, 0.9);
        position: relative;
        z-index: 2;
    }

    .timeline-year {
        grid-area: year;
        justify-self: center;
        font-size: 36px;
        font-weight: 700;
        color: #019345;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        padding: 0px 15px;
    }
    /* Speech-bubble pointer */
    .timeline-item.left .timeline-card::after,
    .timeline-item.right .timeline-card::after {
        content: "";
        position: absolute;
        top: 30px;
        width: 18px;
        height: 18px;
        background: rgba(255, 255, 255, 0.88);
        transform: rotate(45deg);
        box-shadow: 10px 10px 24px rgba(31, 62, 84, 0.08);
    }

    .timeline-item.left .timeline-card::after {
        right: -9px;
    }

    .timeline-item.right .timeline-card::after {
        left: -9px;
    }
    /* Badge icon */
.timeline-badge {
    position: absolute;
    top: -14px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #F0CD9B;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 28px rgba(31, 62, 84, 0.10);
}

        .timeline-badge i {
            font-size: 20px;
            color: #3b2002;
        }
    /* Card text */
    .timeline-meta {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 8px;
    }

.timeline-date {
    font-weight: 700;
    color: rgba(15, 43, 18, 0.78);
    font-size: 12px;
}

.timeline-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    background: #F2F0DC;
    color: #3b2002;
}

    .timeline-title {
        margin: 0 0 8px 0;
        font-size: 18px;
        font-weight: 800;
        color: #0f2b12;
    }

.timeline-text {
    margin: 0 0 10px 0;
    color: rgba(15, 43, 18, 0.78);
    line-height: 1.55;
}

.timeline-list {
    margin: 0 0 10px 18px;
    color: rgba(15, 43, 18, 0.78);
    font-size: 14px;
}

        .timeline-list li {
            margin: 6px 0;
        }
    /*   Timeline MOBILE  */
    @media (max-width: 768px) {
        .timeline-1::before {
            left: 14px;
            transform: none;
        }

        .timeline-outer {
            background: #F7FAFB;
            padding: 20px 20px; /* space around inner container */
        }

        .timeline.section {
            padding: 20px 0;
        }
            .timeline-item {
                grid-template-columns: 28px 1fr;
                gap: 12px;
                align-items: start;
                margin: 18px 0;
            }

                .timeline-item.left,
                .timeline-item.right {
                    grid-template-areas:
                        "center year"
                        "center card";
                }

            .timeline-center {
                justify-content: flex-start;
                padding-top: 6px;
            }

            .timeline-dot {
                width: 28px;
                height: 28px;
                border-width: 5px;
            }

            .timeline-year {
                justify-self: start;
                text-align: left;
                font-size: 18px;
                opacity: 0.9;
            }

            .timeline-card {
                width: 100%;
            }

            .timeline-item.left .timeline-card::after,
            .timeline-item.right .timeline-card::after {
                left: -9px;
                right: auto;
            }

            .timeline-badge {
                right: 12px;
            }
            /* Center vertical line */
            .timeline-1::before {
                content: "";
                position: absolute;
                top: 2%;
                bottom: 26%;
                left: 3%;
                width: 5px;
                /*transform: translateX(-50%);*/
                background: rgba(255, 255, 255, 0.75);
                border-radius: 999px;
                box-shadow: 0 12px 26px rgba(31, 62, 84, 0.10);
            }
        }
    /*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services nav-link:visited {
    color: #0f2b12;
}


.services .service-item {
    background-color: #FfFFFf;
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: 0.3s;
    border-radius: 10px 10px;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.10);
}

    .services .section-title {
        color: #0f2b12;
    }

    .services .service-item .icon {
        font-size: 50px;
        line-height: 0;
        margin-right: 30px;
        color: #019345;
    }

    .services .service-item .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 20px;
        color: #0f2b12;
    }

        .services .service-item .title a {
            color: var(--heading-color);
        }

    .services .service-item .description {
        line-height: 24px;
        font-size: 14px;
        margin: 0;
    }

    .services .service-item:hover {
        border-color: var(--accent-color);
    }

        .services .service-item:hover .title a {
            color: var(--accent-color);
        }

    .services h5 {
        font-size: 16px;
        font-weight: 600;
        color: #019345;
    }

    .services p {
        font-size: 14px;
    }
    /*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
    .service-details .services-list {
        background-color: var(--surface-color);
        padding: 10px 30px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        margin-bottom: 20px;
    }

        .service-details .services-list a {
            display: block;
            line-height: 1;
            padding: 8px 0 8px 15px;
            border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
            margin: 20px 0;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            transition: 0.3s;
        }

            .service-details .services-list a.active {
                color: var(--heading-color);
                font-weight: 700;
                border-color: var(--accent-color);
            }

            .service-details .services-list a:hover {
                border-color: var(--accent-color);
            }

    .service-details .services-img {
        margin-bottom: 20px;
    }

    .service-details h3 {
        font-size: 26px;
        font-weight: 700;
    }

    .service-details h4 {
        font-size: 20px;
        font-weight: 700;
    }

    .service-details p {
        font-size: 15px;
    }

    .service-details ul {
        list-style: none;
        padding: 0;
        font-size: 15px;
    }

        .service-details ul li {
            padding: 5px 0;
            display: flex;
            align-items: center;
        }

        .service-details ul i {
            font-size: 20px;
            margin-right: 8px;
            color: var(--accent-color);
        }
    /* CTA */
    .cta-section {
        padding: 80px 0;
        /*background: linear-gradient(135deg, #0d6efd, #084298);*/
        background: rgb(15, 43, 18);
    }

        .cta-section h3 {
            color: #ffffff;
        }
    /*--------------------------------------------------------------
# Organization Section
--------------------------------------------------------------*/

    .org-chart-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 24px 16px;
        text-align: center;
    }
    /* Main organization name */
    .org-chart-title {
        font-family: "Roboto", "Segoe UI", Arial, sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        line-height: 1.2;
        font-size: clamp(20px, 3vw, 36px);
        color: #0f2b12;
        margin: 0;
    }
    /* Subtitle */
    .org-chart-subtitle {
        margin-top: 6px;
        margin-bottom: 20px;
        font-family: "Roboto", "Segoe UI", Arial, sans-serif;
        font-size: clamp(16px, 1.4vw, 16px);
        font-weight: 600;
        letter-spacing: 0.06em;
    }
    /* Chart image */
   /* .org-chart-img {
        width: 90%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        padding: 50px;
    }*/

    /*Pinch-to-zoom works*/
    /* Zoom container */
    .org-chart-zoom {
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    /* Enable pinch zoom on mobile */
    .org-chart-img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        touch-action: pan-x pan-y pinch-zoom;
    }
    
    /* Mobile optimization */
    @media (max-width: 768px) {
        .org-chart-img {
            min-width: 900px; /* forces horizontal scroll + zoom */
            padding: 0;
        }
    }

    /*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
    .about h4 {
        color: #0f2b12;
        padding-left: 5%;
    }

    .about p {
        font-size: 16px;
        padding-left: 5%;
    }

    .about img-fluid {
        width: 200%;
    }
    /* About Image Wrapper */
    .about-image-wrap {
        position: relative;
        display: inline-block;
    }
        /* Border behind image */
        .about-image-wrap::before {
            content: "";
            opacity: 30%;
            position: absolute;
            top: -45px; /* adjust offset */
            right: -45px;
            width: 100%;
            height: 100%;
            border: 10px solid #019345; /* green border */
            z-index: 0;
        }
        /* Image itself */
        .about-image-wrap img {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            background: #fff; /* optional */
        }
    /*--------------------------------------------------------------
# History Page
--------------------------------------------------------------*/

    .history p {
        font-size: 16px;
        padding: 0% 2.5%;
        text-align: justify-all;
    }
    /*--------------------------------------------------------------
# Vision Mission Section
--------------------------------------------------------------*/

    .vision-mission p {
        font-size: 16px;
    }

    .vision-mission .card-body h5 {
        color: #ffffff;
        background-color: #0f2b12;
        padding: 5px 5px;
        text-align: center;
        border-radius: 5px;
    }

    .vision-mission .text-center h2 {
        color: #0f2b12;
        font-weight: 800;
    }

    .vision-mission .card {
        background-color: #ffffff;
        border-radius: 20px;
        border-color: #ffffff;
    }

    .vision-mission .card-body {
        background-color: #F4FFF4;
        /*background-color: var(--surface-color);*/
        padding: 30px;
        /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);*/
        border-radius: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        z-index: 1; /* ensures hover pops above other elements */
    }

        .vision-mission .card-body:hover {
            transform: translateY(-10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
            border-color: var(--accent-color);
        }


    .vision-mission .card li {
        font-size: 16px;
    }

/*-----------Global Formfield Text---------*/
.formfield-text {
    width: 100%;
}

.required-label .rz-form-field-label::after {
    content: " *";
    color: var(--rz-danger);
    font-weight: bold;
}

.required-label .rz-message {
    display: none;
}


/*-----------Login---------*/
/* Base (mobile-first) */
.rz-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 14px;
}
    

    .rz-card h2 {
        color: #0f2b12;
        font-weight: 700;
    }

    .rz-card h3 {
        color: #0f2b12;
        font-weight: 600;
    }

    .rz-card h4 {
        color: #0f2b12;
        font-weight: 600;
    }

    .rz-card .reg-title {
        color: #0f2b12;
        font-weight: 600;
    }

    .rz-card .reg-sub {
        color: #000000;
        font-weight: 200;
    }


.login-cta { /* BUTTON - Already have an account? Login*/
    color: #0f2b12 !important;
    font-size: small;
    display: inline-flex;
    align-items: center; /* vertical align icon + text */
}

    .login-cta:hover {
        cursor: pointer;
    }

.rz-ml-auto .login-cta {
    font-size: 14px;
    padding: 6px 10px;
}

.rz-button-text {
    text-transform: none;

}
.rz-button {
    margin-right:10px !important;
}

    .rz-button.rz-light {
        background-color:none !important;
    }

/* Tablet */
@media (min-width: 768px) {
    .rz-card {
        max-width: 360px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .rz-card {
        max-width: 360px;
    }
}

/*-----------Register---------*/
/* Base (mobile-first) */
.reg-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 14px;
}

/* Tablet */
@media (min-width: 768px) {
    .reg-card {
        max-width: 360px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .reg-card {
        max-width: 720px;
    }
}


/*-----------Register---------*/


.rz-button.rz-primary.rz-shade-default {
    background-color: #019345 !important;
    color: var(--rz-on-primary);
}

.rz-button.rz-secondary.rz-shade-default {
    background-color: #E97900 !important;
    color: var(--rz-on-secondary);
}

    .site-layout .btn:active {
        --bs-btn-active-border-color: #0f2b12 !important;
    }

    .site-layout .btn:hover {
        --bs-btn-hover-border-color: #0f2b12 !important;
    }

.wiz-actions {
margin-top: 30px;


}
/*-----------Steps Number---------*/
.rz-steps-number {
    font-size: small;
}

.rz-steps .rz-state-highlight .rz-steps-number {
    background: #019345 !important;
}

.rz-steps .rz-state-highlight .rz-steps-title {
    color: #0f2b12 !important;
    font-size: small;
}