* {
            margin: 0;
            padding: 0;
            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: #f9f9f9;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Header Styles */
        .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;
        }

        .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;
            }
        }

        /* Responsive nav menu */
        .responsive-nav-menu {
            position: relative;
            top: -1%;
            left: 15vw;
            width: 70%;
            background: #eeeeee;
            backdrop-filter: blur(10px);
            padding: 5rem 2rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1000;
            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%);
            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;
        }

/* hero content */

.hero-section {
            max-width: 100%;
            margin: 0 auto;
            padding: 80px 40px;
            padding-bottom: 0px;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            height: auto;
            z-index: 2;
            display: grid;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, #01200d 0%, #015421 50%, #0b3a02 100%);
        }


        .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: -100000001;
        }

        .content-left {
            z-index: -10001;
        }

        .main-heading {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f8c200;
            margin-bottom: 20px;
            line-height: 1.1;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .description {
            font-size: 1.1rem;
            color: #ffffff;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 90%;
        }

        .cta-buttons {
        display: flex;
        gap: 15px;
        justify-content: center;
        }
        
        .btn{
        cursor: pointer;
        display: inline-block;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
        }


        .btn-primary {
    background-color: #f8c200;
    color: #01200d;
    border: 2px solid #f8c200;
    animation: pulse2 1s infinite;
        }

        .btn-primary:hover {
    transform: translateY(-5px);
        }


        @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);
    }
}

        .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
        }

        .btn-secondary:hover {
    transform: translateY(-5px);
        }

        .services-section h3 {
            color: #f8c200;
            font-size: 1.2rem;
            margin-top: 30px;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .service-card {
            background: #ffff;
            padding: 10px;
            border-radius: 20px;
            text-align: center;
            color: #000;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-3px);
            background: #f8c200;
        }

        .service-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #015421 0%, #01200d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
}

.service-icon i {
    font-size: 1rem;
    color: #f8c200;
}

        .hero-right {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-container {
            position: relative;
            width: 400px;
            height: 500px;
            margin-top: 10%;
        }

        .background-circle {
            position: absolute;
            width: 380px;
            height: 380px;
            background: transparent;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .hero-image {
            position: absolute;
            width: 320px;
            height: 320px;
            background: transparent;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }


    .hero-image img{
        width: 313px;
        height: 400px;
    margin-top: -100px;
    border-radius: 70%;
    margin-left: 3px;
    }
        .stat-card {
            position: absolute;
            background: white;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            z-index: 3;
            cursor: pointer;
        }

        .stat-main {
            top: 250px;
            left: -30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #015421, #0b3a02);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .stat-info h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000000;
            margin: 0;
        }

        .stat-info p {
            font-size: 0.8rem;
            color: #424852;
            margin: 0;
        }

        .experts-card {
            top: 20px;
            right: 0px;
            text-align: center;
            cursor: pointer;
        }

        .experts-card h4 {
            font-size: 0.9rem;
            color: #000000;
            margin-bottom: 8px;
        }

        .expert-avatars {
            display: flex;
            gap: -5px;
        }

        .expert-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid #015421;
            margin-left: -5px;
            position: relative;
            transition: 0.3s ease;
        }

        .expert-avatar:hover{
            z-index: 100;
            scale: 1.3;
        }

        .expert-avatar img{
            width: 26px;
            height: 26px;
            border-radius: 50%;
        }

        .expert-avatar:nth-child(1) { background: #01200d; }
        .expert-avatar:nth-child(2) { background: #f5cd3d; }
        .expert-avatar:nth-child(3) { background: #015421; }
        .expert-avatar:nth-child(4) { 
            background: #e6e6e6; 
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: #0b3a02;
            font-weight: bold;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #f8c200;
        }

        .dot-1 { top: 50px; right: 100px; }
        .dot-2 { bottom: 120px; left: 50px; background: #ffffff; }
        .dot-3 { top: 130px; right: 50px; background: #ffffff; }

        .chart-icon {
            position: absolute;
            top: 55px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #f8c200;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                padding-bottom: 50px;
            }

            .main-heading {
                font-size: 2.5rem;
            }

            .hero-image-container {
                width: 300px;
                height: 400px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }



















        /* Contact Hero Section Overrides (reuses existing hero-section styles) */
.contact-hero .main-heading {
    font-size: 2.5rem;
    color: #f8c200;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.contact-hero .description {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 90%;
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-hero .hero-image-container {
    width: 400px;
    height: 400px;
}

.contact-hero .hero-image img {
    width: 300px;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    margin-top: -80px;
}

.contact-hero .stat-main {
    top: 250px;
    left: -20px;
}

.contact-hero .experts-card h4 {
    font-size: 1rem;
    color: #000;
    margin-bottom: 8px;
}

.contact-hero .expert-avatar {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    background: #f8c200;
    color: #01200d;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #015421;
    margin-left: -5px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.contact-hero .expert-avatar:hover {
    z-index: 100;
    scale: 1.3;
}

.contact-hero .chart-icon {
    background: #f8c200;
    color: #01200d;
}

@media screen and (max-width: 768px) {
    .contact-hero .main-heading {
        font-size: 2rem;
    }

    .contact-hero .description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-hero .hero-image-container {
        width: 300px;
        height: 300px;
    }

    .contact-hero .hero-image img {
        width: 260px;
        height: 300px;
        margin-top: -70px;
    }
}













        /* Contact Info Cards */
        .contact-info-section {
            padding: 80px 0;
            background: #fff;
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-info-card {
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(248, 194, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #f8c200, #015421);
            transition: left 0.3s ease;
        }

        .contact-info-card:hover::before {
            left: 0;
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .contact-info-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 25px;
            transition: all 0.3s ease;
        }

        .contact-info-card:hover .contact-info-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, #f8c200 0%, #e0b000 100%);
        }

        .contact-info-icon i {
            font-size: 2.2rem;
            color: #f8c200;
            transition: color 0.3s ease;
        }

        .contact-info-card:hover .contact-info-icon i {
            color: #01200d;
        }

        .contact-info-card h3 {
            font-size: 1.5rem;
            color: #01200d;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-info-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .contact-info-card .contact-link {
            color: #015421;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info-card .contact-link:hover {
            color: #f8c200;
        }

        .section-header {
    text-align: center;
    margin-bottom: 50px;
    padding-right: 40px;
    padding-left: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #01200d;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f8c200;
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}



        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(1, 84, 33, 0.05) 0%, rgba(1, 32, 13, 0.05) 100%);
        }

        .contact-form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            align-items: start;
        }

        .contact-form-content h2 {
            font-size: 2.5rem;
            color: #01200d;
            margin-bottom: 20px;
            position: relative;
        }

        .contact-form-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #f8c200;
            border-radius: 2px;
        }

        .contact-form-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .contact-features {
            display: grid;
            gap: 20px;
        }

        .contact-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-feature i {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f8c200, #e0b000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #01200d;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-feature span {
            color: #01200d;
            font-weight: 500;
        }

        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border-top: 4px solid #f8c200;
        }

        .contact-form h3 {
            font-size: 1.8rem;
            color: #01200d;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #01200d;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 18px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: #f8c200;
            outline: none;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(248, 194, 0, 0.1);
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #f8c200 0%, #e0b000 100%);
            color: #01200d;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            animation: pulse2 2s infinite;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(248, 194, 0, 0.3);
        }

        /* Quick Contact Section */
        .quick-contact-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #01200d 0%, #015421 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .quick-contact-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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(248,194,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            z-index: 1;
        }

        .quick-contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .quick-contact-container h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #f8c200;
        }

        .quick-contact-container p {
            font-size: 1.2rem;
            margin-bottom: 50px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .quick-contact-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .quick-contact-options a{
            text-decoration: none;
        }

        .quick-contact-options a h4{
            color: #fff;
        }

        .quick-contact-option {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px 20px;
            border-radius: 15px;
            border: 1px solid rgba(248, 194, 0, 0.2);
            transition: all 0.3s ease;
        }

        .quick-contact-option:hover {
            transform: translateY(-5px);
            background: rgba(248, 194, 0, 0.1);
            border-color: #f8c200;
        }

        .quick-contact-option i {
            font-size: 2.5rem;
            color: #f8c200;
            margin-bottom: 20px;
        }

        .quick-contact-option h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .quick-contact-option p {
            font-size: 1rem;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.8);
        }

        .emergency-contact {
            background: rgba(248, 194, 0, 0.1);
            border: 2px solid #f8c200;
            padding: 30px;
            border-radius: 20px;
            margin-top: 40px;
        }

        .emergency-contact h3 {
            color: #f8c200;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .emergency-contact p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .emergency-btn {
            display: inline-block;
            padding: 12px 30px;
            background: #f8c200;
            color: #01200d;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: pulse2 2s infinite;
        }

        .emergency-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(248, 194, 0, 0.4);
        }

        /* Office Hours Section */
        .office-hours-section {
            padding: 80px 0;
            background: #fff;
        }

        .office-hours-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .office-hours-container h2 {
            font-size: 2.5rem;
            color: #01200d;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .office-hours-container h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #f8c200;
            border-radius: 2px;
        }

        .office-hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .office-hours-card {
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border-bottom: 4px solid transparent;
            transition: all 0.3s ease;
        }

        .office-hours-card:hover {
            transform: translateY(-8px);
            border-bottom-color: #f8c200;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .office-hours-card i {
            font-size: 2.5rem;
            color: #015421;
            margin-bottom: 20px;
        }

        .office-hours-card h4 {
            font-size: 1.3rem;
            color: #01200d;
            margin-bottom: 15px;
        }

        .office-hours-card p {
            color: #666;
            line-height: 1.6;
        }

        .special-hours {
            background: linear-gradient(135deg, rgba(248, 194, 0, 0.1) 0%, rgba(1, 84, 33, 0.1) 100%);
            border: 2px solid rgba(248, 194, 0, 0.3);
        }



        /* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(1, 84, 33, 0.05) 0%, rgba(1, 32, 13, 0.05) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-container h2 {
    font-size: 2.5rem;
    color: #01200d;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.faq-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f8c200;
    border-radius: 2px;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border-left: 4px solid #f8c200;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-left-color: #f8c200;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgb(248, 194, 0);
}

.faq-question h4 {
    color: #01200d;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #015421;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.6;
}







/* .faq-section {
  background-color: #fff;
  padding: 80px 20px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h4 {
  font-size: 1.1rem;
  color: #01200d;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 1rem;
  color: #f8c200;
}

.faq-question i.rotate {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.faq-answer-content {
  padding-top: 10px;
  color: #444;
  line-height: 1.6;
}


 */








        /* Social Media Section */
        .social-media-section {
            padding: 80px 0;
            background: #fff;
        }

        .social-media-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .social-media-container h2 {
            font-size: 2.5rem;
            color: #01200d;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .social-media-container h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #f8c200;
            border-radius: 2px;
        }

        .social-media-container p {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 50px;
        }

        .social-media-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .social-media-card {
            background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
            padding: 40px 20px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            border-bottom: 4px solid transparent;
        }

        .social-media-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            border-bottom-color: #f8c200;
            text-decoration: none;
        }

        .social-media-card.facebook:hover {
            background: linear-gradient(135deg, rgba(24, 119, 242, 0.1), rgba(255, 255, 255, 1));
        }

        .social-media-card.twitter:hover {
            background: linear-gradient(135deg, rgba(29, 161, 242, 0.1), rgba(255, 255, 255, 1));
        }

        .social-media-card.linkedin:hover {
            background: linear-gradient(135deg, rgba(0, 119, 181, 0.1), rgba(255, 255, 255, 1));
        }

        .social-media-card.instagram:hover {
            background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(255, 255, 255, 1));
        }

        .social-media-card i {
            font-size: 3rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .social-media-card.facebook i {
            color: #1877f2;
        }

        .social-media-card.twitter i {
            color: #1da1f2;
        }

        .social-media-card.linkedin i {
            color: #0077b5;
        }

        .social-media-card.instagram i {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .social-media-card h4 {
            color: #01200d;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .social-media-card p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Scroll to Top Button */
        #scrollToTopBtn {
            display: none;
            position: fixed;
            bottom: 30px;
            right: 20px;
            z-index: 1000000001;
            border: none;
            outline: none;
            background-color: #ffc800;
            color: #0d5700;
            cursor: pointer;
            padding: 12px 15px;
            border-radius: 50%;
            font-size: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(248, 194, 0, 0.3);
        }

        #scrollToTopBtn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(248, 194, 0, 0.4);
        }

        /* Footer */
        .footer {
            background-color: #01200d;
            color: #fff;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 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;
            text-decoration: none;
        }

        .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;
            margin-bottom: 20px;
        }

        .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: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }
        



#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 100000000001; /* 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 Design */
        @media screen and (max-width: 992px) {
            .hero-section{
        padding-top: 7rem;
    }
            .contact-form-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form-content {
                text-align: center;
            }

            .contact-form-content h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 768px) {
            .contact-hero {
                padding: 100px 0 60px;
            }

            .contact-hero h1 {
                font-size: 2.5rem;
            }

            .contact-info-section,
            .contact-form-section,
            .quick-contact-section,
            .office-hours-section,
            .faq-section,
            .social-media-section {
                padding: 60px 0;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .contact-form-content h2,
            .office-hours-container h2,
            .faq-container h2,
            .social-media-container h2,
            .quick-contact-container h2 {
                font-size: 2rem;
            }

            .contact-breadcrumb {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media screen and (max-width: 576px) {

            
            .hero-right {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 50px;
            margin-bottom: 50px;
        }
            .contact-hero {
                padding: 80px 0 40px;
            }

            .contact-hero h1 {
                font-size: 2rem;
            }

            .contact-hero p {
                font-size: 1rem;
            }

            .contact-info-card,
            .contact-form {
                padding: 25px 20px;
            }

            .office-hours-card {
                padding: 25px 15px;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-answer-content {
                padding: 0 20px 20px;
            }

            .social-media-card {
                padding: 30px 15px;
            }

            #scrollToTopBtn {
                bottom: 20px;
                right: 15px;
                padding: 10px 12px;
                font-size: 20px;
            }
        }





        @media screen and (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    
    .stat-item h3 {
        font-size: 2rem;
    }

    .mission-grid {
                grid-template-columns: 1fr;
            }
            
    
    .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) {
    
    .hero-section{
        padding-top: 100px;
    }
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .experts-card {
            top: -30px;
            right: 0px;
            text-align: center;
            cursor: pointer;
        }

    .services-content .our-mission-vision h2{
        font-size: 1.8rem;
    }
    
    .service-card, .testimonial-card {
        padding: 20px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
    }
    #scrollToTopBtn {
            bottom: 20px;
            right: 10px;
            }
}













/* Print Styles */
@media print {
    .whatsapp-float {
        display: none;
    }

}