*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    line-height:1.7;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hero{
    height:60vh;
    background:url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600')
    center/cover;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
    padding:20px;
}

.overlay h1{
    font-size:3rem;
    margin-bottom:15px;
}

.about,
.values,
.team,
.milestones,
.ceo-message{
    padding:80px 0;
}

.about h2,
.values h2,
.team h2,
.milestones h2,
.ceo-message h2{
    text-align:center;
    margin-bottom:30px;
    color:#008751;
}

.vision-mission{
    background:#f5f7fa;
    padding:80px 0;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.value-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.value-card{
    background:#008751;
    color:white;
    padding:30px;
    text-align:center;
    border-radius:8px;
    font-size:1.2rem;
    font-weight:bold;
}

.ceo-content{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:40px;
    align-items:center;
}

.ceo-content img{
    width:100%;
    border-radius:10px;
}

.milestone-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
}

.milestone{
    background:#f5f7fa;
    padding:30px;
    text-align:center;
    border-radius:10px;
}

.milestone h3{
    color:#008751;
    font-size:2rem;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.member{
    text-align:center;
    background:white;
    padding:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border-radius:10px;
}

.member img{
    width:100%;
    border-radius:10px;
}

@media(max-width:768px){

    .overlay h1{
        font-size:2rem;
    }

    .ceo-content{
        grid-template-columns:1fr;
    }
}


/* * Footer Full Width Background */ 
.modern-footer {
    margin:0px;
    width: 100%;
    color: #eaeaea;
    font-family: "Poppins", sans-serif;
    padding: 0;
    background: #111; /* ensure visible full width */
}

/* Center the content but keep footer background full width */
.footer-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Titles and text */
.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-title a {
    color: #f7eb06;
    text-decoration: none;
    transition: 0.3s ease;
}
.footer-text {
    color: #bdbdbd;
    line-height: 1.6;
}

/* Section Headings */
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
}

.social-icon:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #1f1f1f;
    padding-top: 15px;
}

.footer-bottom p {
    color: #bdbdbd;
    margin: 0;
}
/* close modern footer */
/* chat pop up */
/* Floating WhatsApp Chat Button */
.whatsapp-chat-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* WhatsApp Green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 9999;
    animation: popUp 0.4s ease-in-out;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-chat-btn:hover {
    transform: scale(1.1);
}

/* Popup Chat Box */
.whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 260px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 15px;
    z-index: 9999;
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.whatsapp-popup-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-popup-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.whatsapp-popup-header h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.whatsapp-popup p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.whatsapp-popup a {
    display: block;
    text-align: center;
    margin-top: 15px;
    background: #25d366;
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp-popup a:hover {
    background: #1ebe5c;
}
/* Animations */
@keyframes popUp {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Smooth Scroll */
html{
    scroll-behavior:smooth;
}

/* Global Animation */
section{
    animation:fadeUp 1s ease forwards;
}

/* Hero Animation */
.overlay h1{
    animation:slideDown 1.2s ease;
}

.overlay p{
    animation:fadeIn 2s ease;
}

/* Cards Hover Effects */
.card,
.value-card,
.member,
.milestone{
    transition:all .4s ease;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.value-card:hover{
    transform:scale(1.05);
    background:#1565c0;
}

.member:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.member img{
    transition:transform .6s ease;
}

.member:hover img{
    transform:scale(1.08);
}

.milestone:hover{
    transform:translateY(-10px);
    background:#0d47a1;
    color:white;
}

.milestone h3{
    transition:.4s;
}

.milestone:hover h3{
    color:#fff;
}

/* About Section */
.about p{
    animation:fadeIn 1.5s ease;
}

/* CEO Image Animation */
.ceo-content img{
    transition:all .6s ease;
}

.ceo-content img:hover{
    transform:scale(1.05) rotate(2deg);
}

/* Heading Effect */
h2{
    position:relative;
    display:inline-block;
    left:50%;
    transform:translateX(-50%);
}

h2::after{
    content:'';
    width:0;
    height:4px;
    background:#008751;
    position:absolute;
    bottom:-10px;
    left:0;
    transition:.6s;
}

section:hover h2::after{
    width:100%;
}

/* Team Cards Stagger */
.member:nth-child(1){
    animation:fadeUp .8s ease;
}

.member:nth-child(2){
    animation:fadeUp 1s ease;
}

.member:nth-child(3){
    animation:fadeUp 1.2s ease;
}

.member:nth-child(4){
    animation:fadeUp 1.4s ease;
}

/* Keyframes */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-80px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}
.hero{
    background-attachment:fixed;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(13,71,161,.6),
        rgba(0,0,0,.7)
    );
}

/* Button Animation */
.btn{
    display:inline-block;
    padding:14px 30px;
    background:#008751;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(13,71,161,.4);
}
.hidden{
    opacity:0;
    transform:translateY(80px);
    transition:all 1s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.team{
    padding:100px 0;
    background:#f8f9fc;
}

.team-slider{
    position:relative;
    max-width:600px;
    margin:50px auto 0;
    overflow:hidden;
}

.slide{
    display:none;
    text-align:center;
    animation:fadeSlide .8s ease;
}

.slide.active{
    display:block;
}

.slide img{
    width:250px;
    height:250px;
    object-fit:cover;
    border-radius:50%;
    border:8px solid #008751;
    transition:.5s;
}

.slide:hover img{
    transform:scale(1.05);
}

.slide h3{
    margin-top:20px;
    font-size:1.7rem;
    color:#008751;
}

.slide p{
    color:#666;
    font-size:1rem;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#008751;
    color:white;
    font-size:24px;
    cursor:pointer;
    transition:.4s;
}

.prev:hover,
.next:hover{
    background:#008751;
    transform:translateY(-50%) scale(1.1);
}

.prev{
    left:0;
}

.next{
    right:0;
}

@keyframes fadeSlide{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@media(max-width:768px){

    .slide img{
        width:180px;
        height:180px;
    }

    .prev,
    .next{
        width:40px;
        height:40px;
        font-size:18px;
    }
}

/* demo */
/* Footer Logo */
.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    transition: transform 0.4s ease;
}

.footer-logo img:hover {
    transform: scale(1.08);
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-5px);
    background: #ffb400;
    color: #000;
}

/* Logo below social icons */
.social-logo-container {
    margin-top: 15px;
}

.social-logo-container img {
    width: 100px;
    height: auto;
    cursor: pointer;
    transition: all 0.4s ease;
}

.social-logo-container img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255,180,0,0.7));
}

/* Responsive */
@media (max-width: 768px) {
    .footer-logo img {
        width: 90px;
    }

    .social-logo-container img {
        width: 80px;
    }
}
.logo-spin {
    animation: spinLogo 1s ease;
}

.logo-pulse {
    animation: pulseLogo 1s infinite;
}

@keyframes spinLogo {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}

.navbar{
    background-color: #008751;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 50px;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo a{
    color:white;
    text-decoration:none;
    font-size:24px;
    font-weight:bold;
}

.nav-links{
    list-style:none;
    display:flex;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    color:white;
    text-decoration:none;
    padding:15px 20px;
    display:block;
}

.nav-links li:hover{
    background:#008751;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#131181;
    min-width:250px;
    display:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    color:#333;
    padding:12px 15px;
}

.dropdown-menu li:hover{
    /* background:#240ec4; */
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.menu-btn{
    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:991px){

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:-100%;
        flex-direction:column;
        width:100%;
        background:#008751;
        transition:.3s;
    }

    .nav-links.active{
        left:0;
    }

    .dropdown-menu{
        position:static;
        display:none;
        background:#008751;
        box-shadow:none;
    }

    .dropdown.open .dropdown-menu{
        display:block;
    }

    .dropdown-menu li a{
        color:white;
    }
}

/* Third Level Dropdown */
.sub-dropdown{
    position:relative;
}

.sub-menu{
    position:absolute;
    top:0;
    left:100%;
    min-width:250px;
    background:#008751;
    display:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    z-index:1001;
}

.sub-menu li{
    width:100%;
}

.sub-menu li a{
    color:#333;
    padding:12px 15px;
    display:block;
    text-decoration:none;
}

.sub-menu li:hover{
    background:#008751;
}

.sub-dropdown:hover .sub-menu{
    display:block;
}

/* Mobile */
@media(max-width:991px){

    .sub-menu{
        position:static;
        display:none;
        background:#0055aa;
        box-shadow:none;
    }

    .sub-dropdown.open .sub-menu{
        display:block;
    }
    .sub-menu li a{
        color:white;
        padding-left:40px;
    }
    .sub-menu li a:hover{
        background:#003366;
    }
}

.logo img{
    height:60px;
    width:auto;
    display:block;
}
.logo img{
    height:100px;
    width:auto;
    transition:0.3s;
}

.logo img:hover{
    transform:scale(1.05);
}
/* Mobile Navigation Hover Effect */
@media (max-width: 991px) {

    .navbar-nav .nav-link:hover{
        background-color: #28a745; /* Your preferred color */
        color: #fff !important;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

}
@media (max-width: 991px) {

    .navbar-nav li:hover{
        background-color: #28a745;
        transition: 0.3s ease;
    }

    .navbar-nav li:hover a{
        color: #fff !important;
    }

}
@media (max-width: 991px) {

    .navbar-nav .nav-item{
        margin-bottom: 3px;
    }

    .navbar-nav .nav-link{
        padding: 12px 20px;
        display: block;
        transition: all .3s ease;
    }

    .navbar-nav .nav-link:hover{
        background: #28a745;
        color: #fff !important;
    }

}
dropdown-menu,
.sub-menu {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.dropdown-menu li,
.sub-menu li {
    list-style: none;
}
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:white;
    min-width:250px;
    display:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    list-style:none;
    padding:0;
    margin:0;
}

.sub-menu{
    position:absolute;
    top:0;
    left:100%;
    min-width:250px;
    background:#fff;
    display:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    z-index:1001;
    list-style:none;
    padding:0;
    margin:0;
}

.dropdown:hover > .dropdown-menu{
    display:block;
}
.dropdown-menu{
    display:none;
    list-style:none;
    padding:0;
    margin:0;
}
/* ES profile */
.executive-section{
    padding:90px 0;
    background:#f8f9fa;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header span{
    color:#0a7d3b;
    font-weight:600;
    letter-spacing:2px;
}

.section-header h2{
    margin-top:10px;
    font-size:38px;
}

.executive-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* IMAGE */

.executive-card{
    position:relative;
    width:360px;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.executive-card img{
    width:100%;
    display:block;
    transition:.6s;
}

.executive-card:hover img{
    transform:scale(1.08);
}

/* Overlay */

.image-overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    transition:.5s;
}

.executive-card:hover .image-overlay{
    opacity:1;
}

.image-overlay button{

    background:#0a7d3b;
    color:white;
    border:none;
    padding:15px 30px;
    cursor:pointer;
    border-radius:40px;
    font-size:16px;
    transition:.4s;
}

.image-overlay button:hover{
    background:white;
    color:#0a7d3b;
}

/* MESSAGE */

.executive-message{
    flex:1;
}

.executive-message h3{
    margin-bottom:20px;
}

.executive-message p{
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.signature{
    margin-top:30px;
}

.signature h4{
    margin-bottom:5px;
}

.signature span{
    color:#0a7d3b;
    font-weight:bold;
}

/* MODAL */

.profile-modal{

    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:9999;
}

.profile-content{

    background:white;
    width:90%;
    max-width:700px;

    border-radius:15px;

    padding:40px;

    text-align:center;

    position:relative;

    animation:popup .5s;
}

.profile-content img{

    width:180px;
    border-radius:50%;
    margin-bottom:20px;
}
.profile-content h2{
    text-align: center;
}
.close-modal{

    position:absolute;
    top:15px;
    right:25px;

    font-size:35px;
    cursor:pointer;
}

.read-more{

    display:inline-block;
    margin-top:25px;
    background:#0a7d3b;
    color:white;
    padding:14px 35px;
    border-radius:30px;
    text-decoration:none;
}

.read-more:hover{

    background:#065d2a;
}

@keyframes popup{

from{

transform:scale(.7);
opacity:0;

}

to{

transform:scale(1);
opacity:1;

}

}

@media(max-width:900px){

.executive-wrapper{

flex-direction:column;
text-align:center;

}

.executive-card{

width:100%;

max-width:400px;

}

}