*{
    margin: 0;
    padding: 0;
    overflow-x: none;
    box-sizing: border-box;
}






/* Preloader full screen */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999999999999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-content {
  text-align: center;
}

.loader-text {
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 500;
  color: #005f28; /* HOBUCO dark green */
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}


/* Dot container */
.loader-dots {
    margin-left: 50px;
  display: flex;
  gap: 12px;
}

/* Dots */
.loader-dots .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #005f28; /* HOBUCO dark green */
  animation: bounce 1s infinite ease-in-out alternate;
}

/* Each dot delays for randomness */
.loader-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
  background-color: #FFD700; /* yellow */
}
.loader-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}
.loader-dots .dot:nth-child(4) {
  animation-delay: 0.6s;
  background-color: #FFD700;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}

/* Fade-out class */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}






:root {
    /* Color Palette - Blue and Gray Theme */
    --primary-blue: #012c12;
    --primary-blue-dark: #01200d;
    --primary-blue-light: #015421;
    --secondary-blue: #E8F4FD;
    --accent-blue: #004a1c;
    
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    --white: #f8c200;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Layout */
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 80px;
    --topbar-height: 70px;
}



 html {
  scroll-behavior: smooth;
}


body{
    width: 100%;
    height: 100%;
    background: #015421;
    font-family: 'Poppins', sans-serif;
}

.behind-nav{
    width: 100%;
    background: #01200d;
    height: 70px;
}

header{
    position: relative;
    margin-left: 8vw;
    margin-right: 8vw;
    background: #fff;
    border-left: 4px solid #f8c200;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 10001;
}

.nav-top{
    margin-left: 1vw;
    margin-right: 1vw;
    display: flex;
    flex-wrap: wrap;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

.nav-top a{
    margin-left: 7px;
}

.nav-top-left{
    flex: 1 1 300px;
}

.nav-top-left a{
    color: #d1a400;
}

@media (max-width: 440px) {
    .nav-top-left{
        display: none;
    }
    
}

.nav-top-right{
    flex: 1 1 -1px;
    display: flex;
    flex-wrap: wrap;
}

.nav-top-right p{
    display: flex;
    margin-left: 10px;
    margin-right: 10px;
}

.nav-top-right p i{
    margin-right: 10px;
    margin-top: 4px;
}

nav hr{
    margin-left: 1vw;
    margin-right: 1vw;
    border: none;
    height: 1px;
    background: rgb(170, 169, 169);
}

.nav-bottom{
    display: flex;
    margin-left: 1vw;
    margin-right: 1vw;
    padding-top: 1vh;
    padding-bottom: 1vh;
}

.nav-bottom-logo{
    padding: 8px;
    padding-left: 0px;
}
.nav-bottom-logo h1{
    font-size: clamp(1.3rem, 2.3vw, 3rem);
}

.nav-links{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 5vw;
}

.nav-links a{
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    color: #01200d;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-links a:hover{
    transform: translateY(-10px);
    color: #f8c200;
}

.nav-links .active{
    transform: translateY(-10px);
    color: #f8c200;
}

.nav-bottom-sociallinks{
    right: 2vw;
    display: flex;
    position: absolute;
    padding: 3px;
    align-items: center;
    justify-content: center;
}

.nav-bottom-sociallinks i{
    width: 32px;
    height: 32px;
    background: rgb(206, 206, 206);
    border-radius: 50%;
    margin-right: 10px;
    color: #000;
    text-align: center;
    padding-top: 8px;
    transition: 0.3s ease;
}

.nav-bottom-sociallinks i:hover{
    transform: translateY(-10px);
}

.social-links-nav{
    margin-right: 25px;
    margin-top: 5px;
}


.social-links-nav button{
    padding: 8px 23px;
     background: linear-gradient(135deg, #fed907, #ffe100);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    color: #000;
    box-shadow: 0 8px 25px rgba(248, 194, 0, 0.3);
    transition: 0.3s ease;
    animation: pulse2 1s infinite;
}

.social-links-nav button:hover{
    transform: translateX(-10px);
}




 @keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 194, 0, 0.525);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(248, 194, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(248, 194, 0, 0);
    }
}



/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    margin-top: 7px;
    margin-right: 10px;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #01200d;
    transition: all 0.3s ease;
    border-radius: 2px;
}





@media screen and ( max-width: 1205px) { 
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: -100%;
        margin-left: 5vw;
        width: 70%;
        max-width: 80vw;
        height: auto;
        background: #eeeeee;
        backdrop-filter: blur(10px);
        padding: 4rem 2rem 2rem;
        transition: 0.3s ease;
        border-left: 4px solid #f8c200;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
    }


    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}




@media screen and ( max-width: 599px) { 
    .nav-menu {
        padding: 6rem 2rem 2rem;
    }


    .nav-menu.active {
        top: 10%;
        z-index: -10;
    }

}





@media screen and ( max-width: 430px) { 
    .menu-toggle {
        display: flex;
    }
        

    .nav-menu {
        position: fixed;
        top: -100%;
        margin-left: 5vw;
        width: 70%;
        max-width: 350px;
        height: auto;
        background: #eeeeee;
        backdrop-filter: blur(10px);
        padding: 4rem 2rem 2rem;
        transition: 0.3s ease;
        border-left: 4px solid #f8c200;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .nav-menu.active {
        top: 10%;
        z-index: -10;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.2rem;
    }

    .nav-links a{
    padding: 8px;
    margin-left: 0vw;
    }

    .nav-links .active{
    transform: translateX(0px);
    color: #f8c200;
}

.nav-links a:hover{
    transform: translateX(-10px);
    color: #f8c200;
}

    header{
        z-index: 10001;
        border-bottom: 1px solid #01200d;
    }
    .nav-top-right .nbr{
        font-size: 0.8rem;
        margin-top: 7px;
    }

    .nav-top-right .nbr i{
        margin-top: 2px;
    }

}

@media screen and (max-width: 355px){
    .social-links-nav{
        display: none;
    }
    .nav-top-right .nbr{
        font-size: 0.7rem;
        margin-top: 7px;
    }

    .nav-top-right .nbr i{
        margin-top: 2px;
    }
}





/* Outside nav menu - hidden by default */
.responsive-nav-menu {
  position: relative;
  top: 0;
  left: 15vw;
  width: 70%;
  background: #eeeeee;
  backdrop-filter: blur(10px);
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000; /* Behind the header */
  transition: transform 0.4s ease;
  opacity: 1;
  transform: translateY(-100%);
  visibility: visible;
  justify-content: center;
  align-items: center;
  border-left: 4px solid #f8c200;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.responsive-nav-menu.active {
  transform: translateY(-17%); /* Adjust depending on your header height */
  opacity: 1;
  visibility: visible;
}

.responsive-nav-menu a {
  text-decoration: none;
  color: #01200d;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 0;
}

.responsive-nav-menu a:hover {
  color: #f8c200;
  transform: translateX(5px);
  transition: 0.3s ease;
}

.responsive-nav-menu .active{
    color: #f8c200;
}










 /* About Us Hero Section */
        .about-hero-section {
            max-width: 100%;
            margin: 0 auto;
            padding: 80px 40px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #01200d 0%, #015421 50%, #0b3a02 100%);
            min-height: 90vh;
            overflow: hidden;
        }

        .about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(248,194,0,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
            z-index: 1;
        }

        .about-content-left {
            z-index: 10;
            position: relative;
        }

        .about-subtitle {
            font-size: 1.6rem;
            color: #f8c200;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 35px;
            position: relative;
        }

        .about-subtitle::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 16%;
            width: 60px;
            height: 3px;
            background: #f8c200;
            border-radius: 2px;
        }

        .about-main-heading {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            max-width: 600px;
        }

        .about-main-heading span {
            color: #f8c200;
            position: relative;
        }

        .about-description {
            font-size: 1.15rem;
            color: #e0e0e0;
            line-height: 1.7;
            margin-bottom: 35px;
            max-width: 95%;
        }

        .about-stats {
            display: flex;
            gap: 40px;
            margin-top: 60px;
            margin-bottom: 50px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #f8c200;
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #ffffff;
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-cta {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .btn {
            cursor: pointer;
            display: inline-block;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            text-align: center;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f8c200, #f5cd3d);
            color: #01200d;
            box-shadow: 0 8px 25px rgba(248, 194, 0, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(248, 194, 0, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: #f8c200;
            border: 2px solid #f8c200;
            padding: 12px 35px;
        }

        .btn-outline:hover {
            background: #f8c200;
            color: #01200d;
            transform: translateY(-3px);
        }

        /* Right Side */
        .about-hero-right {
            position: relative;
            z-index: 10;
        }

        .about-visual-container {
            position: relative;
            width: 100%;
            height: 500px;
        }

        .team-showcase {
            position: relative;
            width: 300px;
            height: 400px;
            margin: 0 auto;
        }

        .main-expert-card {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 250px;
            background: white;
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            z-index: 5;
        }

        .expert-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f8c200, #f5cd3d);
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #01200d;
        }

        .expert-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #01200d;
            margin-bottom: 5px;
        }

        .expert-role {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 15px;
        }

        .expert-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }

        .mini-stat {
            text-align: center;
        }

        .mini-stat-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: #015421;
        }

        .mini-stat-label {
            font-size: 0.7rem;
            color: #666;
        }

        /* Floating Cards */
        .floating-card {
            position: absolute;
            background: white;
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            z-index: 3;
        }

        .experience-card {
            position: relative;
            top: 50px;
            left: -50px;
            width: 120px;
            text-align: center;
            z-index: 1000;
        }

        .experience-number {
            font-size: 2rem;
            font-weight: 800;
            color: #015421;
            display: block;
        }

        .experience-text {
            font-size: 0.8rem;
            color: #666;
            margin-top: 5px;
        }

        .achievement-card {
            bottom: 80px;
            right: -70px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            z-index: 1000;
        }

        .achievement-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #015421, #0b3a02);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f8c200;
        }

        .achievement-text {
            font-size: 0.85rem;
            color: #01200d;
            font-weight: 600;
        }

        /* Decorative Elements */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 60px;
            height: 60px;
            background: rgba(248, 194, 0, 0.1);
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            bottom: 20%;
            left: 5%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            background: rgba(1, 84, 33, 0.1);
            top: 60%;
            right: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Values Section */
        .values-preview {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .value-item {
            background: rgba(255, 255, 255, 0.95);
            padding: 12px 20px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(248, 194, 0, 0.3);
            transition: all 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-5px);
            background: #f8c200;
            color: #01200d;
        }

        .value-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: #01200d;
        }

        .value-item:hover .value-text {
            color: #01200d;
        }


        /* Responsive Design */

        @media screen and (max-width: 820px) {

            .about-subtitle{
                margin-top: 50px;
            }

             .about-subtitle::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 30%;
            width: 60px;
            height: 3px;
            background: #f8c200;
            border-radius: 2px;
        }
        .about-hero-section {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
                padding: 60px 20px;
            }
        }




        @media (max-width: 768px) {
            .about-hero-section {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
                padding: 60px 20px;
            }

            .about-subtitle::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 60px;
            height: 3px;
            background: #f8c200;
            border-radius: 2px;
        }

            .about-main-heading {
                font-size: 2.5rem;
            }

            .about-stats {
                justify-content: center;
                gap: 30px;
            }

            .about-cta {
                flex-direction: column;
                align-items: center;
            }

            .team-showcase {
                width: 250px;
                height: 350px;
            }

            .values-preview {
                position: static;
                transform: none;
                margin-top: 30px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .achievement-card {
            bottom: 60px;
            right: -40px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            z-index: 1000;
        }
        }

        @media (max-width: 480px) {
             .about-subtitle::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 40%;
            width: 60px;
            height: 3px;
            background: #f8c200;
            border-radius: 2px;
        }
        }

        @media screen and (max-width: 377px) {
            .about-hero-section {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
                padding: 40px 10px;
            }
            .stat-number {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f8c200;
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.7rem;
            color: #ffffff;
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        }


        @media screen and (max-width: 320px) {
            .about-subtitle{
                margin-left: 0px;
            }
            .about-main-heading{
                font-size: 1.6rem;
                max-width: 300px;
            }
            
        .experience-card {
            position: relative;
            top: 50px;
            left: -30px;
            width: 100px;
            text-align: center;
            z-index: 1000;
        }

        .achievement-card {
            bottom: 60;
            right: -20px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 10px;
            z-index: 1000;
        }
        }






body {
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* About Section Styles */
.about-section {
  background-color: #f9f9f9;
  padding: 80px 0;
  min-height: 100vh; /* Ensures no content jump */
  opacity: 1;
  visibility: visible;
  transition: none;
}

.about-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 50px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 5px solid #fff;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #f8c200;
  border-radius: 10px;
  z-index: -1;
}

.about-content {
  flex: 1;
}

.about-content .section-header {
  text-align: center;
}

.about-content .section-header h2::after {
  left: 0;
  transform: none;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #01200d;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.about-content .section-header h2::after,
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #f8c200;
  border-radius: 2px;
}

.about-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
}

.feature i {
  color: #f8c200;
  margin-right: 10px;
  font-size: 1.2rem;
}

.primary-btn {
  background-color: #f8c200;
  color: #01200d;
  border: 2px solid #f8c200;
  animation: pulse2 1s infinite;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.3s ease;
}

.primary-btn:hover {
  background-color: #e0b000;
  border-color: #e0b000;
  transform: translateY(-5px);
}



 /* Our Mission Section */
        .mission-section {
            background-color: #fff;
            padding: 80px 0;
            z-index: 100;
        }

        .mission-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .mission-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-bottom: 4px solid transparent;
        }

        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 4px solid #f8c200;
        }

        .mission-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #015421 0%, #01200d 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .mission-icon i {
            font-size: 2rem;
            color: #f8c200;
        }

        .mission-card h3 {
            font-size: 1.5rem;
            color: #01200d;
            margin-bottom: 15px;
        }

        .mission-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Team Section */
        .team-section {
            background-color: #f5f5f5;
            padding: 80px 0;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .team-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
            justify-content: center;
        }

        .team-member {
            width: calc(25% - 30px);
            min-width: 250px;
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .team-image {
            position: relative;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .team-member:hover .team-image img {
            transform: scale(1.1);
        }

        .team-social {
            position: absolute;
            bottom: -70px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 15px 0;
            background: rgba(1, 32, 13, 0.8);
            transition: all 0.3s ease;
        }

        .team-member:hover .team-social {
            bottom: 0;
        }

        .team-social a {
            width: 35px;
            height: 35px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #01200d;
            transition: all 0.3s ease;
            text-decoration: none;
            font-size: 1.4rem;
        }

        .team-social a:hover {
            background-color: #f8c200;
            transform: translateY(-5px);
        }

        .team-social span{
            color: #ffff;
            margin-top: 7px;
        }

        .team-info {
            padding: 15px;
            text-align: center;
        }

        .team-info h3 {
            font-size: 1.3rem;
            color: #01200d;
            margin-bottom: 5px;
        }

        .team-info p {
            color: #666;
            font-style: italic;
        }

        /* History Timeline */
        .history-section {
            background-color: #fff;
            padding: 80px 0;
        }

        .history-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: #f8c200;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: #fff;
            border: 4px solid #f8c200;
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::after {
            right: -12px;
        }

        .timeline-item:nth-child(even)::after {
            left: -12px;
        }

        .timeline-content {
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .timeline-year {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f8c200;
            margin-bottom: 10px;
            display: inline-block;
            background-color: #01200d;
            padding: 5px 15px;
            border-radius: 20px;
        }

        .timeline-content h3 {
            font-size: 1.3rem;
            color: #01200d;
            margin-bottom: 10px;
        }

        .timeline-content p {
            color: #666;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(1, 84, 33, 0.9) 0%, rgba(1, 32, 13, 0.95) 100%), url('../../images/about-img.jpg');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: #fff;
            text-align: center;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta-container h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-container p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
        }

        .primary-btn {
            background-color: #f8c200;
            color: #01200d;
            border: 2px solid #f8c200;
        }

        .primary-btn:hover {
            background-color: #e0b000;
            border-color: #e0b000;
            transform: translateY(-5px);
        }

        .secondary-btn {
            background-color: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .secondary-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        /* Footer Styles */
        .footer {
            background-color: #01200d;
            color: #fff;
            padding-top: 80px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-about h3, .footer-links h3, .footer-services h3, .footer-newsletter h3 {
            color: #f8c200;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .footer-about p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background-color: #f8c200;
            color: #01200d;
            transform: translateY(-5px);
        }

        .footer-links ul, .footer-services ul {
            list-style: none;
        }

        .footer-links li, .footer-services li {
            margin-bottom: 10px;
        }

        .footer-links a, .footer-services a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover, .footer-services a:hover {
            color: #f8c200;
            transform: translateX(5px);
        }

        .footer-newsletter p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-newsletter form {
            display: flex;
        }

        .footer-newsletter input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-family: 'Poppins', sans-serif;
        }

        .footer-newsletter button {
            background-color: #f8c200;
            color: #01200d;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-newsletter button:hover {
            background-color: #e0b000;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
        }


        



#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 10000001; /* On top */
  border: none;
  outline: none;
  background-color: #ffc800;
  color: #0d5700;
  cursor: pointer;
  padding: 9px 12px;
  border-radius: 50%;
  font-size: 25px;
  transition: transform 0.3s ease;
}

#scrollToTopBtn:hover {
  transform: translateY(-10px);
}





/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-6);
    left: var(--spacing-6);
    z-index: 1000;
    animation: bounceIn 1s ease-out 1s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: var(--font-size-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-btn:hover + .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%) translateY(-50%);
}

.whatsapp-tooltip {
    position: absolute;
    left: 250px;
    top: 50%;
    transform: translateX(-100%) translateY(-50%) translateX(-10px);
    background-color: var(--gray-800);
    color: #fff;
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    white-space: nowrap;
    opacity: 1;
    visibility: hidden;
    transition: all var(--transition-fast);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--gray-800);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}













        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .about-container, .mission-grid {
                flex-direction: column;
                text-align: center;
            }
            
            .about-content .section-header {
                text-align: center;
            }
            
            .about-content .section-header h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .about-features {
                justify-content: center;
            }
            
            .about-image {
                margin-bottom: 40px;
                order: -1;
            }
            
            .mission-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .team-member {
                width: calc(33.333% - 30px);
                min-height: 400px;
            }
            
            .timeline::after {
                left: 40px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 80px;
                padding-right: 0;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item::after {
                left: 30px;
            }
            
            .cta-container {
                padding: 30px;
            }
        }

        @media screen and (max-width: 768px) {
            .page-banner h1 {
                font-size: 2.5rem;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .mission-grid {
                grid-template-columns: 1fr;
            }
            
            .team-member {
                width: calc(50% - 30px);
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
    
    .whatsapp-float {
        bottom: var(--spacing-4);
        right: var(--spacing-4);
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-xl);
    }
        }

        @media screen and (max-width: 576px) {
            .page-banner, .about-section, .mission-section, .team-section, .history-section, .cta-section {
                padding: 60px 0;
            }
            
            .page-banner h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .section-header {
                margin-bottom: 30px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .team-member {
                width: 100%;
                max-width: 350px;
            }
            .team-image img{
                min-height: 400px;
            }
            #scrollToTopBtn {
            bottom: 20px;
            right: 10px;
            }
        }




        /* Print Styles */
@media print {
    .whatsapp-float {
        display: none;
    }

}