    :root {
        --primary-blue: #0057A4;
        --primary-red: #dc3545;
        --primary-green: #198754;
        --dark-blue: #1e3a8a;
        --dark-gray: #1f2937;
        --light-gray: #f9fafb;
        --border-gray: #e5e7eb;
        --text-gray: #6b7280;
        --text-white: #fff;
        --heading-color: #0057A4;
        --bg-color: #eef3ff54;
        --bg-primary-color: #023059;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        overflow-x: hidden;
        color: var(--dark-gray);
        line-height: 1.6;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--primary-blue);
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background-color: var(--bg-primary-color);
    }

    /* Top Bar */
    .top-bar {
        background-color: var(--bg-primary-color);
        border-bottom: 1px solid var(--border-gray);
        padding: 5px 0;
        font-size: 0.875rem;
    }

    .top-bar a {
        color: var(--text-white);
        text-decoration: none;
        margin: 0 8px;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .top-bar a:hover {
        /* color: #0b5ed7; */
        transform: translateY(-2px);
    }

    .top-bar .contact-info {
        color: var(--text-white);
        font-size: 0.85rem;
    }

    .top-bar .contact-info i {
        margin-right: 6px;
        color: var(--text-white);
    }

    /* Navigation */
    .navbar {
        background: white !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        transition: transform 0.3s ease;
    }

    /* .navbar-brand:hover {
                transform: scale(1.02);
            } */

    .navbar-brand img {
        height: 70px;
        margin-right: 15px;
        transition: transform 0.3s ease;
    }

    /* .navbar-brand:hover img {
                transform: rotate(360deg);
            } */

    .brand-text h5 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--dark-gray);
    }

    .brand-text p {
        margin: 0;
        font-size: 0.75rem;
        /* color: var(--text-gray); */
    }

    .nav-link {
        color: #374151 !important;
        font-weight: 500;
        padding: 0.5rem 1rem !important;
        transition: all 0.3s ease;
        position: relative;
    }


    .nav-link:hover {
        color: var(--primary-blue) !important;
    }

    .btn-member-login {
        background-color: var(--bg-primary-color);
        color: white;
        padding: 0.6rem 1.8rem;
        border-radius: 4px;
        border: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    }

    .btn-member-login:hover {
        /* background: #0b5ed7; */
        background-color: #198754;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
        color: var(--text-white);
    }



    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    .dropdown-item {
        padding: 10px 20px;
        font-weight: 500;
        color: #333;
        transition: all 0.3s;
    }

    .dropdown-item:hover {
        background-color: #0d6efd;
        color: #fff;
        border-radius: 5px;
    }


    /* Hero Section */
    .hero-carousel {
        position: relative;
    }

    .carousel-item {
        position: relative;
    }

    .carousel-item img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    .hero-section {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        color: white;
        padding: 100px 0 130px;
        overflow: hidden;
        z-index: 2;
    }

    /* Gradient overlays for each slide */
    .carousel-item:nth-child(1)::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(236, 72, 153, 0.6)); */
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .carousel-item:nth-child(2)::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(59, 130, 246, 0.7)); */
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .carousel-item:nth-child(3)::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* background: linear-gradient(135deg, rgba(245, 158, 11, 0.8), rgba(239, 68, 68, 0.7)); */
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    /* Shine effect */
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
        animation: shine 3s infinite;
        z-index: 1;
    }

    @keyframes shine {
        0% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(100%);
        }
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
    }

    .hero-section h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        animation: fadeInUp 0.8s ease;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-section p.lead {
        font-size: clamp(1rem, 2vw, 1.25rem);
        margin-bottom: 2rem;
        max-width: 700px;
        animation: fadeInUp 0.8s ease 0.2s backwards;
    }

    .badge-custom {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(10px);
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        display: inline-block;
        border-radius: 50px;
        animation: fadeInUp 0.8s ease 0.1s backwards;
    }

    .btn-hero-primary {
        background: var(--primary-red);
        color: white;
        padding: 1rem 2.5rem;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        margin-right: 1rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    }

    .btn-hero-primary:hover {
        background: #bb2d3b;
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
    }

    .btn-hero-secondary {
        background: transparent;
        color: white;
        padding: 1rem 2.5rem;
        border: 2px solid white;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-hero-secondary:hover {
        background: white;
        color: var(--dark-blue);
        transform: translateY(-3px);
    }

    .hero-buttons {
        animation: fadeInUp 0.8s ease 0.3s backwards;
    }

    /* Carousel Controls Styling */
    .carousel-control-prev,
    .carousel-control-next {
        width: 5%;
        opacity: 0.8;
        z-index: 3;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
    }

    .carousel-indicators {
        z-index: 3;
    }

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 5px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .carousel-item img {
            height: 500px;
        }

        .hero-section {
            padding: 60px 0 80px;
        }

        .btn-hero-primary,
        .btn-hero-secondary {
            padding: 0.75rem 1.5rem;
            margin-bottom: 0.5rem;
            display: inline-block;
        }

        .btn-hero-primary {
            margin-right: 0.5rem;
        }
    }

    .carousel-control-next-icon {
        background-color: #CA410A;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        background-size: 24px 24px;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1 !important;
    }

    .carousel-control-prev-icon {
        background-color: #CA410A;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
        background-size: 24px 24px;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1 !important;
    }

    @media (max-width:768px) {
        .carousel-control-next-icon {
            width: 30px;
            height: 30px;
            background-size: 15px 15px;
            background-color: transparent;

        }

        .carousel-control-prev-icon {
            width: 30px;
            height: 30px;
            background-size: 15px 15x;
            background-color: transparent;

        }
    }

    .carousel-control-next,
    .carousel-control-prev {
        opacity: 1 !important;
    }


    /* Impact Cards */
    .impact-cards {
        margin-top: -80px;
        position: relative;
        z-index: 10;
        padding-bottom: 50px;
        background-color: var(--bg-color);
        background: transparent;
    }


    .impact-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
    }

    .impact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .impact-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .impact-card:hover img {
        transform: scale(1.025);
    }



    .impact-card h3 {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--dark-gray);
        margin-bottom: 1.5rem;
        min-height: 70px;
        padding: 0.5rem;

    }

    .impact-stats {
        background: var(--primary-green);
        color: white;
        padding: .65rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
        transition: all 0.3s ease;
        cursor: pointer;
    }



    .impact-stats.red {
        background: var(--primary-red);
    }

    .impact-stats.blue {
        background: var(--primary-blue);
    }

    .impact-stats .number {
        font-size: 2rem;
        font-weight: 800;
    }

    .impact-stats .label {
        font-size: 0.9rem;
        opacity: 0.95;
    }

    /* Section Heading */
    .section-heading {
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-heading h2 {
        font-size: clamp(2rem, 4vw, 2.1rem);
        font-weight: 800;
        /* color: var(--heading-color); */
        color: var(--bg-primary-color);
        margin-bottom: 0.5rem;
        position: relative;
        display: inline-block;
    }

    .section-heading .underline {
        width: 80px;
        height: 4px;
        background: var(--primary-red);
        margin: 0 auto;
        border-radius: 2px;
        position: relative;
    }



    /* Services Section */
    .services-section {
        padding: 50px 0;
        background: white;
    }

    .service-card {
        background: white;
        padding: 2rem 1rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: all 0.4s ease;
        height: 100%;
        border: 2px solid transparent;
    }

    .service-card:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-8px);
        border-color: var(--primary-blue);
    }



    .service-card .icon {
        width: 60px;
        height: 60px;
        background-color: #ffc10770;
        transition: transform 0.3s ease;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    .service-card .icon img {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;

    }


    .service-card:hover .icon {
        transform: scale(1.2) rotate(5deg);
    }

    .service-card h4 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--dark-gray);
        margin-bottom: 1rem;
        /* min-height: 55px; */
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 30px;
        margin-top: 15px;
    }

    .service-card p {
        font-size: 0.95rem;
        color: var(--text-gray);
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-card a {
        color: var(--primary-red);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .service-card a:hover {
        color: #bb2d3b;
        padding-left: 5px;
    }

    /* About Section */
    .about-section {
        padding: 40px 0;
        background-color: #fff;
    }

    .about-image-bg {
        background: linear-gradient(135deg, var(--primary-blue), #0b5ed7);
        padding: 2.5rem;
        border-radius: 4px;
        box-shadow: 0 15px 40px rgba(13, 110, 253, 0.2);
        transition: transform 0.3s ease;
        height: 400px;
    }

    .about-image-bg:hover {
        transform: scale(1.02);
    }

    .about-image-bg img {
        width: 100%;
        border-radius: 4px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        position: absolute;
        left: -30px;
    }

    .about-content h3 {
        font-size: clamp(1.75rem, 3vw, 2rem);
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 1.5rem;
    }

    .about-content p {
        color: var(--text-gray);
        line-height: 1.9;
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
    }

    .about-content a {
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        transition: all 0.3s ease;
    }

    .about-content a:hover {
        color: #0b5ed7;
        padding-left: 5px;
    }

    /* Map Section */
    .map-section {
        padding: 50px 0;
        background-color: var(--bg-color);
        margin: 50px 0px;
    }


    .map-container img {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        display: block;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .map-container img:hover {
        transform: scale(1.02);
    }

    .map-filter {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-top: 1.5rem;
    }

    .map-filter h5 {
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--dark-gray);
    }

    .form-check {
        margin-bottom: 1rem;
        padding-left: 2rem;
    }

    .form-check-input {
        cursor: pointer;
    }

    .form-check-label {
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .form-check-input:checked~.form-check-label {
        color: var(--primary-blue);
        font-weight: 600;
    }

    /* Events Section */
    .events-section {
        padding: 40px 0px 40px 0px;
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-image: url(../site/img/bg-ppp.jpg);
        background-position: top;
        background-repeat: repeat;
        margin-bottom: 40px;
    }

    .about-us-details {
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
        margin-bottom: 40px;
        padding: 20px 0px;
    }

    .events-section a {
        font-size: 14px;
        color: #0057A4;
    }

    .event-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        height: 100%;
        border: none;
    }

    .event-card:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-8px);
    }

    .event-card-img {
        position: relative;
        overflow: hidden;
    }

    .event-card-img img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .event-card:hover .event-card-img img {
        transform: scale(1.15);
    }

    .latest-news-img {
        height: 120px;
    }

    .latest-news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



    .event-date {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: white;
        padding: 0.5rem 1.3rem;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        z-index: 2;
    }

    .event-date .day {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--primary-blue);
        display: block;
        line-height: 1;
    }

    .event-date .month {
        font-size: 0.8rem;
        color: var(--text-gray);
        font-weight: 600;
        text-transform: uppercase;
    }

    .event-card-body {
        padding: 2rem;
    }

    .event-badge {
        color: var(--primary-red);
        font-size: 0.875rem;
        font-weight: 700;
        margin-bottom: 0.45rem;
        display: inline-block;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .event-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--dark-gray);
        margin-bottom: 1rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .event-card p {
        color: var(--text-gray);
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .event-card .btn-link {
        color: var(--primary-blue);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .event-card .btn-link:hover {
        color: #0b5ed7;
        padding-left: 5px;
    }

    /* Footer */



    .footer {
        background-color: #00213F;
        background-image: url("../site/img/about_nepal.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        color: var(--text-white);
        padding: 5rem 0 2rem;
    }

    .footer::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: #212529c9;
        z-index: 1;
    }

    .footer>* {
        position: relative;
        z-index: 2;
    }



    .footer h5 {
        color: white;
        font-weight: 700;
        margin-bottom: 1.5rem;
        font-size: 1.15rem;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

    .footer ul li {
        margin-bottom: 0.85rem;
    }

    .footer a {
        color: #9ca3af;
        color: var(--text-white);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.85rem;
    }

    .footer a:hover {
        color: white;
        padding-left: 5px;
    }

    .footer .social-links a {
        color: var(--text-white);
        font-size: 1.5rem;
        margin-right: 1.25rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .footer .social-links a:hover {
        /* color: var(--primary-blue); */
        transform: translateY(-3px);
    }

    .footer-bottom {
        background-color: #013460;
        border-top: 1px solid #fff;
        padding: 1rem 0;
        text-align: center;
        color: var(--text-white);
    }

    /* Scroll to Top */
    .scroll-top {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: linear-gradient(135deg, var(--primary-red), #bb2d3b);
        color: white;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1000;
        box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
        transition: all 0.3s ease;
        border: none;
    }

    .scroll-top:hover {
        background: linear-gradient(135deg, #bb2d3b, var(--primary-red));
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    }

    .scroll-top.show {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Loading Animation */
    .loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.5s ease;
    }

    .loading-overlay.hide {
        opacity: 0;
        pointer-events: none;
    }

    .spinner {
        width: 50px;
        height: 50px;
        border: 4px solid var(--border-gray);
        border-top-color: var(--primary-blue);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .services-bg {
        background-color: var(--bg-color);
        padding-bottom: 50px !important;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* Responsive Enhancements */
    @media (max-width: 1200px) {
        .container {
            max-width: 95%;
        }
    }

    @media (max-width: 992px) {
        .hero-section {
            padding: 100px 0 80px;
        }

        .impact-cards {
            margin-top: 2rem;
        }

        .section-heading h2 {
            font-size: 2rem;
        }

        .service-card h4,
        .impact-card h3 {
            min-height: auto;
        }
    }

    @media (max-width: 768px) {
        .top-bar {
            display: none;
        }

        .service-card h4 {
            font-size: 1rem;
        }

        .map-container-sec {
            width: 100% !important;
        }

        .hero-section {
            padding: 80px 0 60px;
            background-attachment: scroll;
        }

        .btn-hero-primary,
        .btn-hero-secondary {
            padding: 0.85rem 2rem;
            display: block;
            width: 100%;
            margin: 0.75rem 0;
        }

        .impact-card h3 {
            font-size: 1.15rem;
            min-height: auto;
        }

        .impact-stats .number {
            font-size: 1.5rem;
        }

        .impact-stats .label {
            font-size: 0.8rem;
        }

        .service-card {
            padding: 2rem 1.5rem;
        }

        .about-image-bg {
            margin-bottom: 2rem;
        }

        .map-container {
            padding: 2rem 1rem;
        }

        .map-filter {
            margin-top: 1.5rem;
        }

        .footer {
            padding: 3rem 0 1.5rem;
        }

        .scroll-top {
            bottom: 1.5rem;
            right: 1.5rem;
            width: 50px;
            height: 50px;
        }
    }

    @media (max-width: 576px) {
        .navbar-brand img {
            width: 40px;
            height: 40px;
        }

        .brand-text h5 {
            font-size: 1rem;
        }

        .brand-text p {
            font-size: 0.7rem;
        }

        .hero-section h1 {
            font-size: 1.4rem;
        }

        .hero-section p.lead {
            font-size: 0.95rem;
        }

        .section-heading h2 {
            font-size: 1.5rem;
        }

        .event-card-body {
            padding: 1.5rem;
        }

        .service-card .icon {
            font-size: 2.5rem;
        }

        .event-card h4 {
            font-size: 1.15rem;
        }
    }

    /* Print Styles */
    @media print {

        .navbar,
        .scroll-top,
        .top-bar,
        .btn {
            display: none !important;
        }

        .hero-section {
            page-break-after: always;
        }
    }

    .news-events .underline {
        width: 80px;
        height: 4px;
        background: var(--primary-red);
        /* margin: 0; */
        border-radius: 2px;
        position: relative;
        margin-left: 0;

    }

    .social-link-footer li i {
        color: #D1202A;
    }

    .btn-list-view {
        border-radius: unset;
        background-color: var(--text-white);
        border: none;
        color: #000;
        font-size: 14px;
    }

    .btn-map-view {
        border-radius: unset;
        background: #D1202A;
        border: none;
        color: #fff;
        font-size: 14px;

    }

    .list-item {
        background: #fff;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 8px;
        border-left: 5px solid #198754;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .list-item h5 {
        color: #198754;
        margin-bottom: 10px;
        font-weight: 600;
    }

    @media (min-width:992px) {
        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;

        }

        .dropdown-menu {
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            display: block;
            transform: translateY(10px);
        }
    }


    #map {
        width: 100%;
        height: 55vh;
    }

    .leaflet-control-attribution.leaflet-control {
        display: none;
    }

    .leaflet-container {
        background: transparent
    }

    .leaflet-top.leaflet-left {
        display: none;
    }

    .lin-gradient-ecca-two {
        background: #0057a438;
    }

    /* new-form-css */
    :root {
        --primary-color: #2c5aa0;
        --secondary-color: #4a7cc7;
        --accent-color: #f8f9fa;
    }

    .form-container {
        background: white;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        margin: 30px 0px;
    }


    .form-header {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        padding: 2.5rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .form-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    }



    .form-header h1 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.3rem;
        position: relative;
        z-index: 1;
    }

    .form-header h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
    }

    .form-header p {
        margin-bottom: 0;
        opacity: 0.95;
        font-size: 1rem;
        position: relative;
        z-index: 1;
    }

    .form-body {
        padding: 3rem 2.5rem;
    }

    .section-title {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--secondary-color);
    }

    .form-label {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .form-control,
    .form-select {
        border: 2px solid #e0e6ed;
        border-radius: 10px;
        padding: 0.55rem 1rem;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 0.2rem rgba(76, 124, 199, 0.15);
    }

    .photo-upload {
        border: 3px dashed #cbd5e0;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        background: var(--accent-color);
        height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .photo-upload:hover {
        border-color: var(--secondary-color);
        background: #e8f4ff;
        transform: translateY(-2px);
    }

    .photo-upload i {
        font-size: 3rem;
        color: var(--secondary-color);
        margin-bottom: 0.5rem;
    }

    .photo-upload-text {
        color: #64748b;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .radio-group {
        display: flex;
        gap: 2rem;
        margin-top: 0.5rem;
    }

    .form-check-input:checked {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .form-check-label {
        font-weight: 500;
        color: #475569;
        cursor: pointer;
    }

    .btn-submit {
        /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
        border: none;
        color: white;
        padding: 1rem 3rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(44, 90, 160, 0.4);
        background-color: #198754;
        color: #fff;
    }

    .row-gap {
        margin-bottom: 1rem;
    }

    .input-group-text {
        background: var(--accent-color);
        border: 2px solid #e0e6ed;
        border-right: none;
        color: var(--secondary-color);
    }

    .input-group .form-control {
        border-left: none;
    }

    .input-group:focus-within .input-group-text {
        border-color: var(--secondary-color);
    }

    @media (max-width: 768px) {
        .form-body {
            padding: 2rem 1.5rem;
        }

        .form-header h1 {
            font-size: 1.5rem;
        }

        .form-header h2 {
            font-size: 1.2rem;
        }
    }

    .lin-gradient-ecca-two {
        background: #0057a438;
    }

    /* news and blogs-css */
    .news-activities {
        margin: 40px 0px;
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
        padding: 50px 0px;
    }

    .news-blog-details-page {
        margin: 40px 0px;
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
        padding: 50px 0px;
    }

    .gallery-page {
        margin: 40px 0px;
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
        padding: 50px 0px;
    }

    .video-sec {
        margin: 40px 0px;
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
        padding-top: 40px;
    }

    .service-details {
        margin: 40px 0px;
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
        padding-top: 40px;
    }

    .news_card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        background: #fff;
        height: 100%;
    }

    .news_card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    }

    .news-activities-img {
        height: 300px;
        position: relative;
        overflow: hidden;
    }

    .news-activities-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }



    .news_card .card-body {
        padding: 20px;
    }

    .news_card .card-title {
        font-weight: 500;
        transition: color 0.3s ease;
        color: #000;
        text-transform: capitalize !important;
        font-size: 18px;
    }

    .hr-content h4 {
        font-size: 25px;
        text-transform: capitalize !important;
        font-weight: 700;
    }

    .hr-content p {
        font-size: 18px !important;
        text-transform: capitalize !important;
    }

    .news_card h5 {
        text-transform: capitalize !important;
    }

    .related-post h2 {
        font-size: 20px;
        font-weight: 600;
        color: #0057a4;

    }

    .related-img {
        height: 250px;
    }

    .related-post-card .card-title {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .related-post-card a {
        text-decoration: none;
        color: #000;
    }

    .related-post-card .card-body p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 16px;
    }

    .related-img img {
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        object-fit: cover;
    }


    .related-post-card .read-btn {
        color: var(--dark-blue);
        padding-left: 0;
    }

    /* ✅ FIXED */
    .news_card:hover .card-title {
        color: #0d6efd;
    }


    .ma-addres {
        padding: 40px;
        border-radius: 8px;
    }

    .fo-main span {
        font-size: 18px;
    }

    .contact_us {
        max-width: 500px;
        background: #ffffff;
        padding: 20px;
    }

    .contact_title {
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 25px;
        padding-bottom: 12px;
        border-bottom: 1px solid #000;
    }

    .contact_item {
        display: flex;
        align-items: center;
        margin-bottom: 22px;
    }

    .icon_box {
        width: 52px;
        height: 52px;
        /* background-color: #42b6c4; */
        background-color: #198754;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 18px;
    }

    .icon_box i {
        color: #ffffff;
        font-size: 22px;
    }

    .content strong {
        display: block;
        font-size: 16px;
        font-weight: 600;
    }

    .content p {
        margin: 0;
        font-size: 14px;
        color: #333;
    }



    /* member form css */
    .lin-gradient-ecca-two {
        background-color: var(--bg-color);
        background-image: url(../site/img/bg-ppp.jpg);
    }

    /* new-form-css */
    :root {
        --primary-color: #2c5aa0;
        --secondary-color: #4a7cc7;
        --accent-color: #f8f9fa;
    }

    .form-container {
        background: white;
        border-radius: 10px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        margin: 30px 0px;
    }

    .form-header {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        padding: 2.5rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .form-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    }

    .form-header h1 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.3rem;
        position: relative;
        z-index: 1;
    }

    .form-header h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
    }

    .form-header p {
        margin-bottom: 0;
        opacity: 0.95;
        font-size: 1rem;
        position: relative;
        z-index: 1;
    }

    .form-body {
        /* padding: 3rem 2.5rem; */
        padding: 20px;
    }

    .section-title {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--secondary-color);
    }

    .form-label {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .form-control,
    .form-select {
        border: 2px solid #e0e6ed;
        border-radius: 10px;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 0.2rem rgba(76, 124, 199, 0.15);
    }

    .photo-upload {
        border: 3px dashed #cbd5e0;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        background: var(--accent-color);
        height: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .photo-upload:hover {
        border-color: var(--secondary-color);
        background: #e8f4ff;
        transform: translateY(-2px);
    }

    .photo-upload i {
        font-size: 3rem;
        color: var(--secondary-color);
        margin-bottom: 0.5rem;
    }

    .photo-upload-text {
        color: #64748b;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .radio-group {
        display: flex;
        gap: 2rem;
        margin-top: 0.5rem;
    }

    .form-check-input:checked {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .form-check-label {
        font-weight: 500;
        color: #475569;
        cursor: pointer;
    }

    .btn-submit {
        /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); */
        font-size: 1.1rem;

        background-color: var(--bg-primary-color);
        color: white;
        padding: 0.6rem 1.8rem;
        border-radius: 4px;
        border: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);

    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(44, 90, 160, 0.4);
    }

    .row-gap {
        margin-bottom: 1.5rem;
    }

    .input-group-text {
        background: var(--accent-color);
        border: 2px solid #e0e6ed;
        border-right: none;
        color: var(--secondary-color);
    }

    .input-group .form-control {
        border-left: none;
    }

    .input-group:focus-within .input-group-text {
        border-color: var(--secondary-color);
    }

    @media (max-width: 768px) {
        .form-body {
            padding: 2rem 1.5rem;
        }

        .form-header h1 {
            font-size: 1rem;
        }

        .form-header h2 {
            font-size: 1.2rem;
        }

        .form-header h3 {
            font-size: .8rem;
        }

        .btn-submit {
            font-size: .9rem;
        }

        .about-image-bg {
            height: 345px;
            margin-bottom: .1rem;
        }

        .about-image-bg img {
            left: 0;
        }

        .about-section {
            padding: 30px 0px;
        }

    }



    .member-card {
        background: #e9ecef;
        border-radius: 12px;
        transition: all 0.3s ease;
        height: 100%;
        border: none;
        box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    }

    .member-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .member-img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 8px;
    }

    .member-name {
        font-weight: 600;
        font-size: 1.05rem;
    }

    .member-role {
        font-size: 0.9rem;
        color: #6c757d;
    }

    .nav-tabs .nav-link {
        font-weight: 500;
    }

    .nav-tabs .nav-link.active {
        background-color: #1f3c88;
        color: #fff !important;
        border-radius: 8px;
    }

    .member-card-img {
        height: 230px;
    }

    .member-card-img img {
        background-position: center;
        background-repeat: no-repeat;
        object-fit: cover;
        object-position: center top;
        width: 100%;
        height: 100%;
        border-radius: 12px 12px 0px 0px;
    }

    .nav-pills-member-list .nav-pills-member-list .nav-link.active,
    .nav-pills .show>.nav-link {
        background-color: #1f3c88 !important;
        color: #fff;
    }

    .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        background-color: #1f3c88 !important;
        color: #fff !important;
    }

    .breadcrumb .breadcrumb-item a {
        color: #000 !important;
        text-decoration: none !important;
    }

    .koica-gallery {
        background: #fff;
        border-radius: 12px;
        transition: all 0.3s ease;
        height: 100%;
        border: none;
        box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    }

    .koica-gallery-img {
        height: 250px;
    }

    .koica-gallery-img img {
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        object-fit: cover;
    }

    .koica-gallery a {
        text-decoration: none;
        color: #000;
    }

    #gallery-container .gallery-item {
        background: #fff;
        border-radius: 12px;
        transition: all 0.3s ease;
        height: 100%;
        border: none;
        box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    }

    .video-secion {
        height: 250px;
        width: 100%;
        border-radius: 10px;
    }

    .video-secion iframe {
        border-radius: 10px;
    }

    .about-us-vedio {
        height: 350px;
        width: 100%;
        border-radius: 10px;
    }

    .about-us-vedio iframe {
        border-radius: 10px;
    }

    @media (max-width:768px) {
        .about-us-vedio {
            width: 100%;
            height: 100%;
        }
    }

    .services-card {
        border: none;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        background: #fff;
        height: 100%;
    }

    .services-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    }

    .services-card-img {
        height: 300px;
        position: relative;
        overflow: hidden;
    }

    .services-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }



    .services-card .card-body {
        padding: 20px;
    }

    .services-card .card-title {
        font-weight: 500;
        transition: color 0.3s ease;
        color: #000;
        text-transform: capitalize !important;
        font-size: 18px;
    }





    .service-detail {
        /* background: #ffffff; */
    }

    .service-detail p {
        font-size: 16px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 15px;
    }


    .service-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        object-fit: cover;
    }


    .service-meta span {
        font-size: 14px;
        color: #6c757d;
    }


    .service-title {
        font-size: 30px;
        font-weight: 700;
        line-height: 1.3;
    }


    .service-content {
        margin-top: 15px;
    }

    .service-content p {
        text-align: justify;
    }


    .service-detail .row img {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-detail .row img:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .service-sidebar {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .service-sidebar h4 {
        font-size: 22px;
        font-weight: 600;
        color: #0057a4;
        margin-bottom: 20px;
    }

    .service-sidebar .list-group-item {
        border: none;
        padding: 12px 0;
        background: transparent;
    }

    .service-sidebar .list-group-item a {
        color: #333;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .service-sidebar .list-group-item a:hover {
        color: #0d6efd;
    }

    .services-gallery {
        height: 300px;
    }

    .services-gallery img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    @media (max-width: 1200px) {
        .service-title {
            font-size: 26px;
        }
    }


    @media (max-width: 992px) {
        .service-title {
            font-size: 24px;
        }

        .service-sidebar {
            margin-top: 30px;
        }
    }


    @media (max-width: 768px) {
        .service-title {
            font-size: 22px;
        }

        .service-detail p {
            font-size: 15px;
        }

        .service-sidebar {
            padding: 20px;
        }
    }


    @media (max-width: 576px) {
        .service-title {
            font-size: 20px;
        }

        .service-meta span {
            font-size: 13px;
        }

        .service-detail p {
            font-size: 14px;
        }

        .service-image img {
            border-radius: 8px;
        }
    }


    .about-section {
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
        margin: 40px 0px;
    }

    .member-list-details {
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
    }

    .footer ul li {
        display: flex;
        align-items: center;

    }

    .footer ul li i {
        color: #D1202A;
        padding-right: 10px;
    }

    .footer .social-links {
        display: flex;
    }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        color: white;
        transition: all 0.3s ease;
        text-decoration: none;
        border: 1px solid #fff;
    }

    .footer .social-links a i {
        font-size: 18px;
    }

    .footer .social-links a:hover {
        background-color: #E83D25;
        transform: scale(1.1);
        padding-left: 0px;
    }

    .top-header-social-icon {
        display: flex;
    }

    .top-header-social-icon a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        color: white;
        transition: all 0.3s ease;
        text-decoration: none;
        border: 1px solid #fff;
    }

    .top-header-social-icon a:hover {
        background-color: #E83D25;
        transform: scale(1.1);
        padding-left: 0px;
    }



    .latest-card-body {
        padding: 1rem;
    }

    .card.event-card {
        border-left: 3px solid var(--primary-green);
    }

    /* Enable hover dropdown */
    .custom-dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .custom-dropdown .dropdown-menu {
        border: none;
        border-radius: 8px;
        padding: 10px 0;
        min-width: 220px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        animation: fadeUp 0.25s ease-in-out;
    }

    .custom-dropdown .dropdown-item {
        padding: 10px 20px;
        font-weight: 500;
        color: #333;
        transition: all 0.3s ease;
    }

    .custom-dropdown .dropdown-item:hover {
        background-color: #023059;
        color: #ffffff;
    }

    .custom-dropdown .dropdown-item.active {
        background-color: #023059;
        color: #ffffff;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .active>.page-link,
    .page-link.active {
        z-index: 3;
        color: var(--bs-pagination-active-color);
        background-color: var(--bg-primary-color);
        border-color: var(--bg-primary-color);
    }

    .table-primary-bg {
        background-color: var(--bg-primary-color) !important;
    }


    /* New Team Css */

    .exe-sec {
        background-color: var(--bg-color);
    }

    .executives-section {
        padding: 60px 20px;
        margin: 0 auto;

    }

    .main-title {
        font-size: clamp(2rem, 4vw, 2.1rem);
        font-weight: 700;
        color: var(--bg-primary-color);
        margin-bottom: 30px;
    }

    /* .main-title .highlight {
        color: #dc3545;
    } */

    .nav-tabs-team {
        border-bottom: 2px solid var(--bg-primary-color);
        margin-bottom: 30px;
    }

    .nav-tabs-team .nav-link {
        color: #6c757d;
        font-size: 1.1rem;
        font-weight: 500;
        border: none;
        padding: 10px 20px;
        margin-right: 30px;
        background: transparent;
        transition: all 0.3s ease;
    }

    .nav-tabs-team .nav-link:hover {
        color: #dc3545;
        border: none;
    }

    .nav-tabs-team .nav-link.active {
        color: #dc3545;
        background: transparent;
        border: none;
        border-bottom: 3px solid #dc3545;
        color: var(--bg-primary-color) !important;
        border-radius: unset;
    }

    .executive-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
    }

    .executive-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .card-img-wrapper {
        width: 100%;
        height: 380px;
        overflow: hidden;
        position: relative;
        padding: 8px;
    }

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        transition: transform 0.5s ease;
        border-radius: 10px;
    }

    .executive-card:hover .card-img-wrapper img {
        transform: scale(1.08);
    }

    .team-card-body {
        padding: 10px;
        text-align: center;
    }

    .executive-name {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1a2332;
        margin-bottom: 8px;
    }

    .executive-position {
        font-size: 1rem;
        color: #6c757d;
        font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .main-title {
            font-size: 2.8rem;
        }

        .nav-tabs-team .nav-link {
            margin-right: 15px;
            font-size: 1rem;
        }

        .card-img-wrapper {
            height: 320px;
        }
    }

    @media (max-width: 768px) {
        .main-title {
            font-size: 2.2rem;
        }

        .nav-tabs-team .nav-link {
            margin-right: 10px;
            padding: 8px 15px;
            font-size: 0.95rem;
        }

        .executives-section {
            padding: 40px 15px;
        }

        .card-img-wrapper {
            height: 350px;
        }

        .executive-card {
            margin-bottom: 20px;
        }
    }

    @media (max-width: 576px) {
        .main-title {
            font-size: 1.8rem;
        }

        .nav-tabs-team {
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .nav-tabs-team .nav-link {
            white-space: nowrap;
            margin-right: 5px;
            padding: 8px 12px;
            font-size: 0.9rem;
        }

        .card-img-wrapper {
            height: 320px;
        }
    }


    .about-us-vedio iframe {
        border-radius: 10px;
        height: 100%;
        width: 100%;
    }

    .about-content-next a {
        color: var(--bg-primary-color);
        text-decoration: none;
        font-weight: 600;
    }

    /* Css For Map */
    #cmMap {
        background: transparent !important;
    }

    .leaflet-container {
        background: transparent !important;

    }

    .map-container {
        width: 100%;
        height: 550px;
        position: relative;
    }

    #cmMap {
        width: 100%;
        height: 100%;
    }


    .leaflet-control-zoom {
        display: none !important;
        visibility: hidden !important;
    }

    .leaflet-bar {
        display: none !important;
    }

    .what-we-work-subtitle {
        color: var(--bg-primary-color);
        font-size: 20px;
        font-weight: 500;
    }

    .main-content {
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
        margin: 40px 0px;
        padding: 30px 0px;
    }

    .member-resgi {
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
        margin: 40px 0px;
        padding: 30px 0px;
    }

    .view-more-btn {
        border: 1px solid var(--primary-color);
        border-radius: 4px;
        padding: 0.5rem 1.2rem;
        transition: all 0.3s ease;
        width: max-content;
        display: flex;
        gap: 5px;
        font-size: 14px;
    }

    .view-more-btn:hover {
        background-color: #198754;
        color: #fff;
        border: 1px solid #198754;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-logo img {
        height: 100%;
        width: 100%;
        filter: brightness(0) invert(1);
        background-position: center;
        object-fit: contain;
    }



    .upcoming-events {
        padding: 40px 0px 40px 0px;
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-ppp.jpg);
        background-position: top;
        background-repeat: repeat;
        margin-bottom: 40px;
    }

    .news-card {
        background: #fff;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    }

    .upcoming-events .whats-new-kaan {
        height: 350px;
        border-radius: 30px;
        border: 3px solid #ddd;
    }

    .upcoming-events .whats-new-kaan img {
        width: 100%;
        height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        padding: 10px;
        border-radius: 30px;
    }

    .news-date {
        color: #999;
        font-size: .9rem;
        margin-bottom: .5rem;
    }

    .news-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark-text);
        margin-bottom: 1rem;
    }

    .read-more {
        color: var(--bg-primary-color);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
    }

    .upcoming-events .whats-new-kaan {
        border-radius: 30px;
        border: 3px solid #ddd;
    }

    /* Newsletter css */
    .newsletter-section {
        padding: 80px 0;
        background-color: var(--bg-color);
    }

    .newsletter-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        padding: 60px 50px;
    }

    .newsletter-title {
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 25px;
    }

    .newsletter-title .our {
        color: #1e293b;
    }

    .newsletter-title .newsletter {
        color: #dc2626;
    }

    .newsletter-description {
        color: #1e293b;
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .email-input {
        height: 50px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        padding-left: 45px;
        font-size: 0.95rem;
    }

    .email-input:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .input-wrapper {
        position: relative;
    }

    .email-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #6b7280;
    }

    .submit-btn {
        background-color: var(--bg-primary-color);
        color: white;
        padding: 0.6rem 1.8rem;
        border-radius: 4px;
        border: none;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
    }

    .submit-btn:hover {
        background-color: #198754;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
        color: var(--text-white);
    }

    @media (max-width: 767px) {
        .newsletter-card {
            padding: 40px 30px;
        }

        .newsletter-title {
            font-size: 2.2rem;
        }

        .newsletter-description {
            font-size: 0.95rem;
        }

        .submit-btn {
            width: 100%;
            margin-top: 15px;
        }
    }


    /* Pagination container - place outside slider */
    .swiper-pagination {
        position: relative !important;
        margin-top: 10px !important;
        text-align: center !important;
    }

    /* Default bullet style */
    .swiper-pagination-bullet {
        width: 15px !important;
        height: 15px !important;
        border-radius: 50% !important;
        background-color: #ededed !important;
        opacity: 1 !important;
        margin: 0 6px !important;
        transition: background-color 0.3s ease !important;
    }

    /* Active bullet */
    .swiper-pagination-bullet-active {
        background-color: #ed1c24 !important;
    }

    .swiper {
        padding-bottom: 30px !important;
    }

    .swiper-pagination {
        bottom: 0 !important;
    }

    .our-resources {
        background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
        background-image: url(../site/img/bg-pattern.png);
        background-position: top;
        background-repeat: repeat;
        margin: 40px 0px;
        padding: 40px 0px;
    }

    /* resource-card */
    .report-badge {
        background-color: var(--bg-primary-color);
        color: white;
        font-weight: 600;
        font-size: 0.875rem;
        padding: 0.5rem 1.5rem;
        border-radius: 0.275rem;
        display: inline-block;
        margin-bottom: 1.25rem;
    }

    .resource-card {
        border: none;
        border-radius: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .resource-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
    }

    .resource-card .card-title {
        color: var(--bg-primary-color);
        font-weight: 800;
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        height: 127px;
    }

    .publish-date {
        color: #1a2847;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .btn-preview {
        background-color: transparent;
        border: 2px solid #1a2847;
        color: #1a2847;
        font-weight: 600;
        padding: 0.625rem 1.5rem;
        border-radius: 0.375rem;
        transition: all 0.3s ease;
    }

    .btn-preview:hover {
        border: 2px solid var(--primary-green);

    }

    .btn-download {
        background-color: transparent;
        border: 2px solid #1a2847;
        color: #1a2847;
        width: 45px;
        height: 45px;
        border-radius: 0.375rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .btn-download:hover {
        background-color: #1a2847;
        color: white;
    }