* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1b7e3a;
    --light-green: #2ecc71;
    --dark-green: #155e2a;
    --dark-blue: #1e3a5f;
    --light-blue: #4a90e2;
    --teal: #5ec8d5;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-lighter: #fafafa;
    --gray-dark: #333;
    --gray-medium: #666;
    --border-color: #ddd;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--gray-lighter);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ Top Header ============ */
.top-header {
    background: var(--white);
    padding: 18px 0;
    border-bottom: 2px solid var(--light-green);
    box-shadow: var(--shadow-md);
    position: relative;
    top: 0;
    z-index: 100;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    gap: 40px;
    align-items: center;
}

.logo {
    display: flex;
    gap: 15px;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(27, 126, 58, 0.2);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: rotateY(10deg);
    box-shadow: 0 6px 20px rgba(27, 126, 58, 0.3);
}

.logo-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.logo-text small {
    display: block;
    font-size: 11px;
    color: var(--gray-medium);
    font-weight: 500;
    margin-top: 2px;
}

.helpline {
    color: var(--gray-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    background: rgba(46, 204, 113, 0.05);
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.helpline:hover {
    background: rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
}

.helpline i {
    color: var(--light-green);
    font-size: 16px;
}

.btn-donate {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
}

/* ============ Navigation ============ */
.navbar {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-blue) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.nav-brand-mobile {
    display: none;
    color: white;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 18px 22px;
    display: block;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--light-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover:before {
    width: 100%;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-green);
}

.dropdown-toggle {
    position: relative;
}

/* ============ Hero Section ============ */
.hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.carousel-item {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.carousel-item.active {
    display: block;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    padding: 40px 30px 30px 30px;
    text-align: left;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    animation: slideContentIn 0.6s ease-out 0.2s forwards;
}

@keyframes slideContentIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffde59;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(27, 126, 58, 0.25));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    color: white;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text h1 {
    margin: 0;
}

.hero-title-en {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-title-hi {
    display: block;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    color: #ffde59;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 20px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-cta {
    flex: 1;
}

.btn-donate-large {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(255, 107, 26, 0.3);
    width: 100%;
}

.btn-donate-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 107, 26, 0.4);
}

.btn-donate-large:active {
    transform: scale(0.95);
}

.hero-join {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-join:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-join h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffde59;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-top: 0;
}

.hero-join p {
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-join-team {
    background: linear-gradient(135deg, #ffde59, #ffc700);
    color: #1a1a1a;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 222, 89, 0.3);
}

.btn-join-team:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 222, 89, 0.4);
}

.carousel-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--light-green);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.4);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    color: black;
    border: none;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 24px;
    z-index: 3;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: bold;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-nav.prev {
    left: 25px;
}

.carousel-nav.next {
    right: 25px;
}

/* ============ Hero Responsive ============ */
@media (max-width: 1024px) {
    .hero {
        height: 400px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-title-en {
        font-size: 40px;
    }

    .hero-title-hi {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta-section {
        flex-direction: row;
        gap: 15px;
    }

    .hero-join {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 350px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .hero-title-en {
        font-size: 32px;
    }

    .hero-title-hi {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cta-section {
        flex-direction: column;
        gap: 15px;
    }

    .hero-join {
        padding: 18px;
    }

    .hero-join h3 {
        font-size: 18px;
    }

    .hero-join p {
        font-size: 13px;
    }

    .btn-donate-large {
        padding: 14px 28px;
        font-size: 13px;
    }

    .carousel-nav {
        padding: 10px 14px;
        font-size: 20px;
    }

    .carousel-nav.prev {
        left: 15px;
    }

    .carousel-nav.next {
        right: 15px;
    }

    .slide-content {
        padding: 25px 20px 20px 20px;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 13px;
    }

    .carousel-indicators {
        gap: 6px;
        bottom: 15px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 22px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 280px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 12px;
    }

    .hero-title-en {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .hero-title-hi {
        font-size: 18px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-top: 10px;
    }

    .hero-cta-section {
        gap: 12px;
    }

    .hero-join {
        padding: 15px;
    }

    .hero-join h3 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .hero-join p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .btn-donate-large {
        padding: 12px 20px;
        font-size: 12px;
    }

    .btn-join-team {
        padding: 10px 20px;
        font-size: 12px;
    }

    .carousel-nav {
        padding: 8px 10px;
        font-size: 16px;
    }

    .carousel-nav.prev {
        left: 8px;
    }

    .carousel-nav.next {
        right: 8px;
    }

    .carousel-indicators {
        bottom: 12px;
        gap: 5px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    .indicator.active {
        width: 18px;
    }

    .slide-content {
        padding: 15px 12px 12px 12px;
    }

    .slide-content h2 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .slide-content p {
        font-size: 11px;
    }
}

/* ============ Objectives Section ============ */
.objectives-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    padding: 60px 0;
    position: relative;
}

.objectives-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    color: var(--dark-blue);
    letter-spacing: 0.5px;
    animation: fadeInDown 0.8s ease-out;
}

.objectives-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    margin: 15px auto 0;
    border-radius: 2px;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}



.objective-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    animation: slideInUp 0.8s ease-out;
}

.objective-card:nth-child(1) { animation-delay: 0.1s; }
.objective-card:nth-child(2) { animation-delay: 0.2s; }
.objective-card:nth-child(3) { animation-delay: 0.3s; }
.objective-card:nth-child(4) { animation-delay: 0.4s; }
.objective-card:nth-child(5) { animation-delay: 0.5s; }
.objective-card:nth-child(6) { animation-delay: 0.6s; }
.objective-card:nth-child(7) { animation-delay: 0.7s; }
.objective-card:nth-child(8) { animation-delay: 0.8s; }
.objective-card:nth-child(9) { animation-delay: 0.9s; }

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-top-color: var(--primary-green);
}

.objective-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 15px rgba(27, 126, 58, 0.2);
    transition: all 0.3s ease;
}

.objective-card:hover .objective-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(27, 126, 58, 0.3);
}

.objective-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.objective-card p {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 12px 0;
}

.objective-card p:first-of-type {
    font-weight: 600;
    color: var(--gray-dark);
}

.objective-card .objective-en {
    font-size: 12px;
    color: var(--gray-medium);
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

/* ============ Objectives Responsive ============ */
@media (max-width: 1024px) {
    .objectives-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .objectives-section h2 {
        font-size: 32px;
    }

    .objective-card {
        padding: 25px 20px;
    }

    .objective-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .objectives-section {
        padding: 40px 0;
    }

    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .objectives-section h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .objective-card {
        padding: 20px 15px;
    }

    .objective-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 15px;
    }

    .objective-card h3 {
        font-size: 16px;
    }

    .objective-card p {
        font-size: 12px;
    }

    .objective-card .objective-en {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .objectives-section {
        padding: 30px 0;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .objectives-section h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .objective-card {
        padding: 18px 12px;
    }

    .objective-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .objective-card h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .objective-card p {
        font-size: 11px;
        margin: 8px 0;
    }

    .objective-card .objective-en {
        font-size: 10px;
    }
}

/* ============ Services Quick Section ============ */
.services-quick {
    background: var(--white);
    padding: 50px 0;
    margin-top: -25px;
    position: relative;
    z-index: 5;
}

.services-quick h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--dark-blue);
    letter-spacing: 0.5px;
}

.service-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: var(--gray-light);
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tab-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(27, 126, 58, 0.3);
}

.tab-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tab-content.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-box {
    background: linear-gradient(135deg, var(--gray-lighter), var(--white));
    padding: 28px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
}

.service-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-green), var(--primary-green));
    border-radius: 12px 0 0 0;
    transition: width 0.3s ease;
}

.service-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--light-green);
}

.service-box:hover:before {
    width: 100%;
}

.service-box-icon {
    font-size: 48px;
    color: var(--light-green);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.service-box:hover .service-box-icon {
    transform: scale(1.15) rotateY(10deg);
    color: var(--primary-green);
}

.service-box h3 {
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--gray-dark);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.service-box h3 small {
    display: block;
    font-size: 12px;
    color: var(--gray-medium);
    font-weight: 500;
    margin-top: 5px;
}

.service-box p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 18px;
    line-height: 1.6;
}

.box-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-small-primary {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(46, 204, 113, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-small-primary:hover {
    background: linear-gradient(135deg, var(--primary-green), #0e6a20);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.35);
}

.btn-small-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-small-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.btn-scheme {
    background: linear-gradient(135deg, var(--dark-blue), #0d1b2a);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(30, 58, 95, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-scheme:hover {
    background: linear-gradient(135deg, #0d1b2a, var(--dark-blue));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.35);
}

.loan-form {
    background: linear-gradient(135deg, var(--gray-lighter), var(--white));
    padding: 32px;
    border-radius: 12px;
    border: 2px solid rgba(46, 204, 113, 0.1);
    box-shadow: var(--shadow-md);
}

.loan-form h3 {
    margin-bottom: 25px;
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    background: rgba(46, 204, 113, 0.02);
}

.btn-submit {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.35);
}

.btn-submit:active {
    transform: scale(0.98);
}

.service-box-large {
    background: linear-gradient(135deg, var(--gray-lighter), var(--white));
    padding: 35px;
    border-radius: 12px;
    border: 2px solid rgba(46, 204, 113, 0.1);
    box-shadow: var(--shadow-md);
}

/* ============ Gramin Pathshala Section ============ */
.gramin-pathshala {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(94, 200, 213, 0.05));
    padding: 70px 0;
    position: relative;
}

.pathshala-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out;
}

.pathshala-header h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.pathshala-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green), var(--teal));
    margin: 15px auto 0;
    border-radius: 2px;
}

.pathshala-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
    font-weight: 600;
    margin-top: 15px;
}

.pathshala-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pathshala-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: slideInLeft 0.8s ease-out;
}

.pathshala-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.pathshala-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.pathshala-image:hover img {
    transform: scale(1.05);
}

.pathshala-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-box {
    background: white;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-green);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-medium);
    margin-top: 8px;
    font-weight: 600;
}

.pathshala-right {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.pathshala-right h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.2;
}

.pathshala-right p {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 30px;
}

.pathshala-programs {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pathshala-programs h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.program-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.program-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.program-item:last-child {
    border-bottom: none;
}

.program-item i {
    font-size: 24px;
    color: var(--primary-green);
    min-width: 24px;
    margin-top: 3px;
}

.program-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 5px 0;
}

.program-item p {
    font-size: 13px;
    color: var(--gray-medium);
    margin: 0;
    line-height: 1.5;
}

.pathshala-cta {
    display: flex;
    gap: 15px;
}

.btn-pathshala-primary,
.btn-pathshala-secondary {
    flex: 1;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-pathshala-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    border-color: var(--primary-green);
}

.btn-pathshala-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27, 126, 58, 0.3);
}

.btn-pathshala-secondary {
    background: white;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-pathshala-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

/* ============ Gramin Pathshala Responsive ============ */
@media (max-width: 1024px) {
    .pathshala-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pathshala-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .pathshala-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .gramin-pathshala {
        padding: 50px 0;
    }

    .pathshala-header {
        margin-bottom: 35px;
    }

    .pathshala-header h2 {
        font-size: 28px;
    }

    .pathshala-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pathshala-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-box {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 22px;
    }

    .pathshala-right h3 {
        font-size: 24px;
    }

    .pathshala-programs {
        padding: 20px;
    }

    .pathshala-cta {
        gap: 10px;
    }

    .btn-pathshala-primary,
    .btn-pathshala-secondary {
        padding: 12px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gramin-pathshala {
        padding: 35px 0;
    }

    .pathshala-header h2 {
        font-size: 24px;
    }

    .pathshala-subtitle {
        font-size: 14px;
    }

    .pathshala-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-box {
        padding: 15px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .pathshala-right h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .pathshala-right p {
        font-size: 13px;
    }

    .pathshala-programs {
        padding: 15px;
        margin-bottom: 20px;
    }

    .program-item {
        gap: 12px;
        padding-bottom: 12px;
    }

    .program-item i {
        font-size: 20px;
    }

    .program-item h5 {
        font-size: 13px;
    }

    .program-item p {
        font-size: 12px;
    }

    .pathshala-cta {
        flex-direction: column;
        gap: 10px;
    }

    .btn-pathshala-primary,
    .btn-pathshala-secondary {
        padding: 12px 16px;
        font-size: 12px;
    }
}

/* ============ Gallery Section ============ */
.gallery {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gray-lighter), var(--white));
}

.gallery h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 45px;
    color: var(--dark-blue);
    letter-spacing: 0.5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    group: gallery;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 20px 15px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.3px;
    transform: translateY(10px);
    opacity: 0.9;
}

.gallery-label small {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.9;
}

/* ============ Footer Content Section ============ */
.footer-content {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d1b2a 100%);
    padding: 60px 0 40px;
    color: white;
    border-top: 4px solid var(--light-green);
    margin-top: 60px;
}

.form-actions {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    border-left: 5px solid #ccc;
    font-family: inherit;
}

.notification.show {
    transform: translateX(0);
}

.notification.success { border-left-color: #1b7e3a; }
.notification.error { border-left-color: #e74c3c; }

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification.success i { color: #1b7e3a; }
.notification.error i { color: #e74c3c; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--light-green);
    padding-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section ul li:hover {
    transform: translateX(5px);
    color: var(--light-green);
}

.footer-section ul li i {
    color: var(--light-green);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-section ul li:hover i {
    transform: scale(1.2);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.social-icon:hover {
    color: var(--light-green);
    background: rgba(46, 204, 113, 0.1);
    border-color: var(--light-green);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

.gallery-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-highlights img {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-highlights img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.3), transparent);
    margin: 40px 0;
}

/* ============ Bottom Footer ============ */
.footer {
    background: linear-gradient(135deg, #0a0e14 0%, #0d1520 50%, #0a0f1a 100%);
    padding: 50px 0 30px;
    text-align: center;
    color: white;
    font-size: 13px;
    border-top: 3px solid var(--light-green);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-green), transparent);
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    padding: 30px 0;
}

.footer-logo-section {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.25);
}

.footer-logo-text {
    font-size: 14px;
}

.footer-logo-text strong {
    display: block;
    color: var(--light-green);
    font-weight: 700;
    font-size: 16px;
}

.footer-logo-text span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin-top: 2px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 300px;
    font-style: italic;
    opacity: 0.9;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    padding: 18px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(46, 204, 113, 0.15);
    border-color: var(--light-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.2);
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--light-green);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.3), transparent);
    margin: 15px 0;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 30px;
    align-items: center;
    padding-bottom: 20px;
}

.footer-info {
    text-align: left;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-info p {
    margin: 0;
}

.footer-info strong {
    color: var(--light-green);
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(46, 204, 113, 0.05);
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.footer-link i {
    font-size: 12px;
    color: var(--light-green);
}

.footer-link:hover {
    color: var(--light-green);
    background: rgba(46, 204, 113, 0.15);
    border-color: var(--light-green);
    transform: translateY(-2px);
}

.footer-social-footer {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-social-link:hover {
    background: var(--light-green);
    color: var(--dark-blue);
    border-color: var(--light-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(46, 204, 113, 0.3);
}

/* ============ Footer Responsive ============ */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-stats {
        width: fit-content;
        margin: 0 auto;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 25px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 12px 10px;
    }

    .stat-number {
        font-size: 18px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-info {
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-link {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-logo-icon {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 10px;
    }

    .stat-number {
        font-size: 16px;
    }

    .stat-label {
        font-size: 11px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-link {
        width: 100%;
        justify-content: center;
    }

    .footer-social-footer {
        gap: 10px;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ============ Additional Animations ============ */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============ Smooth Transitions ============ */
a, button, .tab-btn, .service-box, .gallery-item {
    transition: all 0.3s ease;
}

/* ============ Scroll to Top Button ============ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    z-index: 999;
    animation: slideInUp 0.3s ease-out;
    border: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* ============ Loading Animation ============ */
.loading {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-green);
    animation: pulse 1.5s ease-in-out infinite;
}

/* ============ Tooltip ============ */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* ============ Notifications ============ */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    max-width: 350px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid var(--light-green);
    color: #27ae60;
}

.notification-success i {
    color: var(--light-green);
    font-size: 20px;
}

.notification-error {
    border-left: 4px solid #e74c3c;
    color: #c0392b;
}

.notification-error i {
    color: #e74c3c;
    font-size: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 18px;
    }

    .header-left {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .logo {
        justify-content: center;
    }

    .helpline {
        justify-content: center;
        width: 100%;
    }

    .btn-donate {
        width: 100%;
        justify-content: center;
    }

    .hero {
        height: 280px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .btn-donate-large {
        padding: 14px 28px;
        font-size: 13px;
    }

    .services-quick h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .service-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
    }

    .nav-menu a {
        padding: 14px 16px;
        font-size: 13px;
    }

    .gallery h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .loan-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }

    .logo-text {
        font-size: 13px;
    }

    .helpline {
        font-size: 12px;
    }

    .hero {
        height: 220px;
    }

    .hero-text h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .btn-donate-large {
        padding: 12px 20px;
        font-size: 12px;
    }

    .carousel-nav {
        padding: 10px 12px;
        font-size: 18px;
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

    .services-quick h2 {
        font-size: 18px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .service-box {
        padding: 20px 15px;
    }

    .service-box-icon {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-item img {
        height: 200px;
    }

    .footer-section h3 {
        font-size: 15px;
    }

    .footer-section ul li {
        font-size: 13px;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }
}

.btn-register {
    background: var(--danger-color);
    color: white;
}

.btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ============ Hero Section ============ */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    font-size: 10rem;
    text-align: center;
    opacity: 0.9;
    animation: fadeInRight 0.8s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ============ Buttons ============ */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
}

.btn-small {
    padding: 8px 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-small:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* ============ Services Section ============ */
.services {
    padding: 80px 20px;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* ============ Loan Section ============ */
.loan-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.loan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.loan-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.loan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.loan-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.loan-card p {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.loan-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.loan-card li {
    padding: 8px 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-color);
}

.loan-card li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

/* ============ Social Section ============ */
.social-section {
    padding: 80px 20px;
    background: white;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.social-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    color: white;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.social-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* ============ How to Apply Section ============ */
.how-to-apply {
    padding: 80px 20px;
    background: #f8f9fa;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.step p {
    color: #7f8c8d;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

/* ============ Contact Section ============ */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p {
    opacity: 0.9;
    margin: 5px 0;
}

/* ============ Footer ============ */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    margin: 10px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ============ Modals ============ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--danger-color);
}

.modal-content h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
}

/* ============ Forms ============ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    color: #7f8c8d;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* ============ Animations ============ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============ Responsive Design ============ */

/* Tablet (768px and below) */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 20px 0;
    }

    .nav-buttons {
        display: none;
    }

    .hero {
        flex-direction: column;
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        font-size: 8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        margin: 100px auto;
    }
}

/* Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-image {
        font-size: 5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .services-grid,
    .loan-grid,
    .social-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .loan-card,
    .social-card,
    .step {
        padding: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn, .btn-small {
        width: 100%;
    }

    .steps-container {
        gap: 10px;
    }

    .contact-grid {
        gap: 20px;
    }

    .modal-content {
        padding: 20px;
        margin: 50px auto;
    }

    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .footer-links {
        gap: 10px;
        font-size: 0.9rem;
    }
}

/* Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .btn, .btn-small {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .service-icon,
    .contact-card i,
    .social-card i {
        font-size: 2rem;
    }

    .hero-image {
        font-size: 4rem;
    }
}

/* ============ Application Modal & Receipt Styles ============ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
}

.apply-modal-content {
    max-width: 900px;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: #f00;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 20px;
}

.modal-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.post-badge {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(27, 126, 58, 0.1);
    outline: none;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px dashed #ddd;
    padding: 15px;
    border-radius: 10px;
    background: #f9f9f9;
}

.photo-preview-container {
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #eee;
    flex-shrink: 0;
}

.photo-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#uploadPlaceholder {
    text-align: center;
    font-size: 12px;
    color: #888;
}

.btn-submit-form {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(27, 126, 58, 0.3);
}

/* Receipt Styles */
.receipt-content {
    max-width: 600px;
    padding: 40px;
    background: #fff;
}

.receipt-header {
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.receipt-logo {
    width: 60px;
    height: 60px;
}

.receipt-body {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.receipt-photo-section {
    width: 120px;
    flex-shrink: 0;
}

.receipt-photo-section img {
    width: 100%;
    border: 2px solid #333;
    border-radius: 5px;
}

.receipt-details {
    flex-grow: 1;
}

.receipt-row {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    border-bottom: 1px dotted #eee;
    padding-bottom: 5px;
}

.receipt-row strong {
    width: 140px;
    flex-shrink: 0;
}

.status-success {
    color: #27ae60;
    font-weight: bold;
}

.receipt-footer {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.qr-code {
    margin: 15px 0;
    color: #333;
}

.note {
    font-size: 11px;
    color: #777;
    font-style: italic;
}

.receipt-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-print {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-close-receipt {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    #receiptPrintArea, #receiptPrintArea * {
        visibility: visible;
    }
    #receiptPrintArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .close-modal, .receipt-actions {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .receipt-body {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .top-header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-left {
        flex-direction: column;
        gap: 15px;
    }

    .helpline {
        padding: 8px 15px;
        font-size: 12px;
    }

    .btn-donate {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }

    .navbar {
        display: block !important;
        position: sticky;
        top: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-blue) 100%);
        min-height: 50px;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        min-width: 50px;
    }

    .nav-brand-mobile {
        display: block !important;
        color: white !important;
        font-weight: 700;
        font-size: 20px;
        padding: 0 10px;
    }


    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-blue) 100%);
        z-index: 1000;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
        animation: slideDownNav 0.3s ease-out;
    }

    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        padding: 15px 25px;
    }

    @keyframes slideDownNav {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}


