    :root {
        --secondary-color: #ADD8E6;
        --primary-color: #f8a54b;
        --accent-color: #28a745;
        --dark-color: #2c3e50;
        --light-color: #f8f9fa;
        --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        --gradient-secondary: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
    }

    .lead {
        font-family: Georgia, 'Times New Roman', Times, serif;
    }

    .director-card {
        border-top: 5px solid var(--secondary-color);
    }

    .navbar-gradient {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .pink-accent {
        background-color: #e91e63 !important;
        border-color: #e91e63 !important;
    }

    .pink-text {
        color: #e91e63 !important;
    }

    .hover-pink:hover {
        color: #e91e63 !important;
        transition: color 0.3s ease;
    }

    .top-contact-bar {
       background: linear-gradient(90deg, 
        #9932CC 25%,   /* Dark Orchid */
        #DA70D6 50%,   /* Orchid */
        #FF69B4 75%,   /* Hot Pink */
        #FF1493 100%   /* Deep Pink */
    );
        color: #ffff;
        padding: 8px 0;
        font-size: 14px;
    }

    .top-contact-bar a {
        text-decoration: none;
        color: #ffff;
    }

    .top-contact-bar i {
        color: #ffff;
    }

    .navbar-nav .nav-link {
        font-weight: 500;
        color: #374151 !important;
        margin: 0 0.5rem;
    }

    .navbar-nav .nav-link:hover {
        color: var(--primary-color) !important;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 320px;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding: 2rem;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        display: none;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hamburger {
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #374151;
        margin: 5px 0;
        transition: 0.3s;
        transform-origin: center;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .mobile-menu-link {
        display: block;
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        padding: 12px 0;
        border-bottom: 1px solid #e5e7eb;
        transition: color 0.3s ease;
    }

    .mobile-menu-link:hover {
        color: #e91e63;
    }

    .donate-btn {
        background-color: #e91e63;
        border-color: #e91e63;
        border-radius: 25px;
        font-weight: 600;
        padding: 8px 24px;
    }

    .donate-btn:hover {
        background-color: #c2185b;
        border-color: #c2185b;
    }

    @media (max-width: 991.98px) {
        .mobile-menu {
            width: 280px;
        }

        .top-contact-bar {
            display: none;
        }
    }

    /* Enhanced Hero Section */
    .hero-section {
        background: var(--secondary-color);
        color: white;
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
    }

    .hero-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .particle {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }

    .particle:nth-child(1) {
        width: 10px;
        height: 10px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        width: 15px;
        height: 15px;
        top: 60%;
        left: 80%;
        animation-delay: 1s;
    }

    .particle:nth-child(3) {
        width: 8px;
        height: 8px;
        top: 40%;
        left: 30%;
        animation-delay: 2s;
    }

    .particle:nth-child(4) {
        width: 12px;
        height: 12px;
        top: 80%;
        left: 60%;
        animation-delay: 3s;
    }

    .particle:nth-child(5) {
        width: 6px;
        height: 6px;
        top: 10%;
        left: 90%;
        animation-delay: 4s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
        }

        50% {
            transform: translateY(-30px) rotate(180deg);
        }
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        background: #57575b;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .hero-buttons {
        background-image: url("../images/blue-shap.png");
    }


    .hero-buttons .btn {
        margin: 0 10px 10px 0;
        padding: 15px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;

    }

    .hero-buttons .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.6s ease;
    }

    .hero-buttons .btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .hero-buttons .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .hero-image img {
        border-radius: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .hero-image img:hover {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

    /* Enhanced Section Titles */
    .section-title {
        font-weight: 700;
        margin-bottom: 3rem;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        position: relative;
        font-size: 2.5rem;
        background: var(--primary-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--secondary-color);
        border-radius: 2px;
    }

    .section-title::before {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 2px;
    }

    /* Enhanced Cards */
    .card {
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

    .card:hover::before {
        opacity: 0.05;
    }

    .card-img-top {
        transition: transform 0.5s ease;
    }

    .card:hover .card-img-top {
        transform: scale(1.1);
    }

    .card-body {
        position: relative;
        z-index: 2;
    }

    .card-title {
        font-weight: 600;
        color: var(--primary-color);
        transition: color 0.3s ease;
    }

    .card:hover .card-title {
        color: var(--secondary-color);
    }

    /* Enhanced Impact Stats */
    .impact-stats {
        background: var(--gradient-secondary);
        color: white;
        position: relative;
        overflow: hidden;
    }

    .impact-stats::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .stat-item {
        text-align: center;
        padding: 2rem 1rem;
        position: relative;
        z-index: 2;
    }

    .stat-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .stat-item:hover::before {
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.2);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--secondary-color);
        position: relative;
        z-index: 3;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .stat-item:hover .stat-number {
        transform: scale(1.1);
        color: #ffffff;
    }

    .stat-item h5 {
        position: relative;
        z-index: 3;
        font-weight: 600;
        margin-top: 1rem;
    }

    /* Enhanced Buttons */
    .btn-primary {
        background: var(--gradient-primary);
        border: none;
        padding: 15px 35px;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        background: var(--gradient-secondary);
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .btn-outline-primary {
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        border-radius: 50px;
        padding: 13px 35px;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-outline-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: var(--primary-color);
        transition: width 0.3s ease;
        z-index: -1;
    }

    .btn-outline-primary:hover::before {
        width: 100%;
    }

    .btn-outline-primary:hover {
        color: white;
        border-color: var(--primary-color);
        transform: translateY(-3px);
    }

    /* Enhanced Project Cards */
    .project-card {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
    }

    .project-card:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

    .project-card img {
        transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .project-card:hover img {
        transform: scale(1.2);
    }

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
        display: flex;
        align-items: flex-end;
        padding: 2rem;
        color: white;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .project-card:hover .project-overlay {
        opacity: 1;
    }

    .project-overlay h4 {
        font-weight: 700;
        margin-bottom: 1rem;
        transform: translateY(30px);
        transition: transform 0.5s ease 0.1s;
    }

    .project-overlay p {
        transform: translateY(30px);
        transition: transform 0.5s ease 0.2s;
    }

    .project-overlay .btn {
        transform: translateY(30px);
        transition: transform 0.5s ease 0.3s;
    }

    .project-card:hover .project-overlay h4,
    .project-card:hover .project-overlay p,
    .project-card:hover .project-overlay .btn {
        transform: translateY(0);
    }

    /* Enhanced Award Items */
    .award-item {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 20px;
        margin-bottom: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .award-item::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: var(--gradient-primary);
        opacity: 0;
        transform: rotate(45deg);
        transition: opacity 0.3s ease;
    }

    .award-item:hover::before {
        opacity: 0.05;
    }

    .award-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .award-item img {
        transition: transform 0.3s ease;
        border-radius: 15px;
    }

    .award-item:hover img {
        transform: scale(1.05);
    }

    .award-item h5 {
        position: relative;
        z-index: 2;
        color: var(--primary-color);
        font-weight: 700;
        margin: 1rem 0;
    }

    .award-item p {
        position: relative;
        z-index: 2;
    }

    /* Enhanced Testimonials */
    .testimonial-card {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        position: relative;
        transition: all 0.4s ease;
        border: 1px solid rgba(44, 90, 160, 0.1);
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -30px;
        left: 30px;
        font-size: 5rem;
        color: var(--secondary-color);
        font-family: serif;
        opacity: 0.3;
        transition: all 0.3s ease;
    }

    .testimonial-card:hover::before {
        opacity: 0.6;
        transform: scale(1.1);
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        border-color: var(--secondary-color);
    }

    /* Enhanced Partner Logos */
    .partner-logo {
        height: 80px;
        object-fit: contain;
        filter: grayscale(100%) brightness(0.7);
        transition: all 0.4s ease;
        border-radius: 10px;
        padding: 10px;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .partner-logo:hover {
        filter: grayscale(0%) brightness(1);
        transform: scale(1.1) rotate(2deg);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    /* Enhanced Footer */
    .footer {
        background: #57575b;
        color: white;
        padding: 4rem 0 2rem;
        position: relative;
        overflow: hidden;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
    }

    .footer h5,
    .footer h6 {
        color: var(--secondary-color);
        font-weight: 700;
    }

    .footer a {
        transition: all 0.3s ease;
    }


.social-icons a {
    color: white;
    font-size: 1.8rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}
    .whatsapp-float {
        position: fixed;
        width: 70px;
        height: 70px;
        bottom: 30px;
        right: 30px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: white;
        border-radius: 50%;
        text-align: center;
        font-size: 35px;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
    }
.bottom-footer a{
    color: white;
    text-decoration: none;
}
    @keyframes pulse {
        0% {
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        50% {
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.2);
        }

        100% {
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }
    }

    .whatsapp-float:hover {
        color: white;
        background: linear-gradient(135deg, #128c7e, #25d366);
        transform: scale(1.1);
        animation: none;
    }



    /* Enhanced Animations */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in-left {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.8s ease;
    }

    .fade-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-in-right {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.8s ease;
    }

    .fade-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .scale-in {
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.8s ease;
    }

    .scale-in.visible {
        opacity: 1;
        transform: scale(1);
    }

    /* Parallax Effect */
    .parallax-section {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    @media (max-width: 768px) {
        .hero-section {
            padding: 80px 0 60px;
            min-height: 80vh;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .stat-number {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .whatsapp-float {
            width: 60px;
            height: 60px;
            font-size: 28px;
        }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gradient-primary);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--secondary-color);
    }

    .og {
        font-family: "Permanent Marker", cursive;
        font-weight: 400;
        font-style: normal;
        margin-bottom: 3rem;
        position: relative;
        font-size: 3rem;
        background: var(--secondary-color);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* CSS */
    .button-62 {
        background: linear-gradient(to bottom right, #EF4765, #FF9A5A);
        border: 0;
        border-radius: 12px;
        color: #FFFFFF;
        cursor: pointer;
        display: inline-block;
        font-family: -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 2.5;
        outline: transparent;
        padding: 0 1rem;
        text-align: center;
        text-decoration: none;
        transition: box-shadow .2s ease-in-out;
        user-select: none;
        -webkit-user-select: none;
        touch-action: manipulation;
        white-space: nowrap;
    }

    .button-62:not([disabled]):focus {
        box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(239, 71, 101, 0.5), .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
    }

    .button-62:not([disabled]):hover {
        box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem rgba(239, 71, 101, 0.5), .125rem .125rem 1rem rgba(255, 154, 90, 0.5);
    }

    /* footer */

    .contact_section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        position: relative;
        top: 50px;
        z-index: 1;
        width: 90%;
        margin: auto;
    }

    /* Flex Container */
    .contact_section .d-flex {
        gap: 30px;
        /* Equal spacing between columns */
    }

    /* Columns */
    .footer-col {
        flex: 1;
        /* Equal width for all columns */
        min-width: 0;
        /* Fixes flexbox overflow issues */
    }

    /* Contact Cards */
    .footer_contact_details {
        background: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.3s ease;
        border: 2px solid var(--secondary-color);
    }

    .footer_contact_details:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border: 2px solid var(--primary-color);
    }



    /* Text Styling */
    .footer_heading h6 {
        color: #57575b;
        /* Dark blue */
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 15px;
        text-transform: uppercase;
    }

    .footer_heading div {
        color: #7f8c8d;
        /* Gray text */
        line-height: 1.6;
        font-size: 15px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .contact_section .d-flex {
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-col {
            flex: 0 0 calc(50% - 10px);
            /* 2 columns on tablet */
        }
    }

    @media (max-width: 768px) {
        .footer-col {
            flex: 0 0 100%;
            /* 1 column on mobile */
        }

        .footer_contact_details {
            padding: 25px;
        }

        .fa {
            font-size: 24px;
            margin-right: 15px;
        }
    }