:root {
    /* Modern Vibrant Palette - Premium Design */
    --primary-start: #6366f1;
    /* Vibrant Indigo */
    --primary-end: #3b82f6;
    /* Bright Blue */
    --secondary: #f97316;
    /* Vibrant Orange */
    --accent: #ec4899;
    /* Pink accent */
    --bg-dark: #0f172a;
    /* Slate 900 */
    --bg-light: #f8fafc;
    /* Slate 50 */
    --surface: #ffffff;
    --surface-dark: #1e293b;
    /* Slate 800 */
    --text-main: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --backdrop-blur: blur(16px);

    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --container-width: 1200px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 700;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn::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;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--surface);
    color: var(--surface);
}

.btn-secondary:hover {
    background: var(--surface);
    color: var(--primary-start);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.7rem 0;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.95);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(360deg);
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
    /* Restored spacious gap */
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 600;
    font-size: 1rem;
    /* Restored size */
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-links .btn {
    color: var(--text-white) !important;
    margin-left: 0.5rem;
    padding: 0.8rem 2rem;
    /* Premium size */
    font-size: 1rem;
    white-space: nowrap;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-start), var(--secondary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Ensure container handles overflow */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    /* Allow wider container for header */
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
}

/* Hero Section with Enhanced Slideshow */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0);
    }

    100% {
        transform: scale(1.15) translateX(-20px);
    }
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
    align-items: center;
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--surface);
    width: 32px;
    border-radius: 8px;
    border-color: var(--surface);
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    color: var(--surface);
    font-size: 20px;
}

.slide-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slide-arrow.prev {
    left: 30px;
}

.slide-arrow.next {
    right: 30px;
}

.pause-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--surface);
    font-size: 14px;
}

.pause-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Hero Overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(99, 102, 241, 0.85) 0%,
            rgba(59, 130, 246, 0.7) 50%,
            rgba(236, 72, 153, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--surface);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--surface);
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 80px;
    right: 50px;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 150px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--surface);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card p {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--surface);
    margin: 0;
}

/* Section Common */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-start), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img-container {
    position: relative;
}

.about-img-container img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    width: 100%;
    transition: transform 0.5s ease;
}

.about-img-container:hover img {
    transform: scale(1.02) rotate(1deg);
}

.about-accent-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-start), var(--secondary));
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}

.about-content h4 {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    align-items: flex-start;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateX(10px);
    border-color: var(--primary-start);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-start), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Mission Cards */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.mission-card {
    background: var(--surface);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.mission-card:hover {
    color: var(--surface);
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--secondary);
}

.mission-card:hover::before {
    height: 100%;
}

.mission-card:hover h3,
.mission-card:hover p,
.mission-card:hover i {
    color: var(--surface);
}

.mission-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-start), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.mission-card:hover i {
    transform: rotateY(360deg);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-start) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 0.3;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-2xl);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--bg-dark), var(--surface-dark));
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent);
    border-radius: 50%;
}

.contact-content {
    position: relative;
    z-index: 2;
    color: var(--surface);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-2xl);
}

.contact-info h3 {
    color: var(--surface);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-list li {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-list li:hover {
    transform: translateX(10px);
}

.contact-list i {
    color: var(--secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--surface);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-start), var(--secondary));
    border-color: transparent;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #0a0a0a !important;
    color: #b3b3b3;
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
    position: relative;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ffffff;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-info {
    margin-bottom: 3rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.office-address {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.office-address:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.office-address h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--secondary);
}

.contact-email {
    color: #3f81e3;
    font-size: 1.05rem;
    margin: 0.5rem 0;
    display: block;
}

.office-address p {
    color: #ccc;
    line-height: 1.6;
}

.regd-no {
    color: #fff;
    font-weight: 700;
    margin-top: 1rem;
    display: block;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        height: 350px;
    }

    .gallery-item {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-wrapper {
        gap: 4rem;
    }
}

@media (max-width: 1100px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--surface);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        /* Ensure on top */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .nav-links .btn {
        margin: 0;
    }
}

@media (max-width: 768px) {

    /* Existing 768px styles minus nav */
    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 3rem;
        justify-content: center;
    }

    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slide-arrow.prev {
        left: 15px;
    }

    .slide-arrow.next {
        right: 15px;
    }

    .slideshow-controls {
        bottom: 25px;
    }

    .about-wrapper,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content {
        padding: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
    }

    .gallery-item {
        height: 300px;
    }

    .section {
        padding: 5rem 0;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    /* About Page Responsive Styles */
    .page-header {
        padding: 5rem 0 2rem !important;
    }

    .page-header h1 {
        font-size: 2rem !important;
    }

    .page-header p {
        font-size: 1rem !important;
    }

    /* Make grid layouts stack on mobile */
    section div[style*="grid-template-columns: 1fr 1fr"],
    section div[style*="grid-template-columns: auto 1fr"] {
        display: flex !important;
        flex-direction: column !important;
    }
}

/* About Page Styles - Modern Design */
.page-header {
    background: linear-gradient(135deg, var(--primary-start) 0%, var(--primary-end) 100%);
    padding: 6rem 0 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::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: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10px, 10px) scale(1.1);
    }
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    loading: lazy;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.intro-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-start);
}

.info-box p {
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

.info-box p:first-child {
    margin: 0;
}

.gradient-section-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.gradient-section-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.glass-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.glass-card h2,
.glass-card h3 {
    margin-bottom: 1.5rem;
}

.glass-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.section-title-center {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.beneficiaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.component-box {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.component-box::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    transition: width 0.4s ease;
}

.component-box.color-1::after {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.component-box.color-2::after {
    background: linear-gradient(180deg, #f5576c 0%, #f093fb 100%);
}

.component-box.color-3::after {
    background: linear-gradient(180deg, #764ba2 0%, #667eea 100%);
}

.component-box.color-4::after {
    background: linear-gradient(180deg, #20c997 0%, #17a2b8 100%);
}

.component-box.color-5::after {
    background: linear-gradient(180deg, #fd7e14 0%, #ffc107 100%);
}

.component-box.color-6::after {
    background: linear-gradient(180deg, #dc3545 0%, #e83e8c 100%);
}

.component-box.color-7::after {
    background: linear-gradient(180deg, #e83e8c 0%, #f093fb 100%);
}

.component-box.color-8::after {
    background: linear-gradient(180deg, #17a2b8 0%, #20c997 100%);
}

.component-box:hover {
    transform: translateX(10px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.component-box:hover::after {
    width: 8px;
}

.component-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.component-icon {
    font-size: 3.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.component-box:hover .component-icon {
    transform: rotate(10deg) scale(1.1);
}

.component-icon.color-1 {
    color: #667eea;
}

.component-icon.color-2 {
    color: #f5576c;
}

.component-icon.color-3 {
    color: #764ba2;
}

.component-icon.color-4 {
    color: #20c997;
}

.component-icon.color-5 {
    color: #fd7e14;
}

.component-icon.color-6 {
    color: #dc3545;
}

.component-icon.color-7 {
    color: #e83e8c;
}

.component-icon.color-8 {
    color: #17a2b8;
}

.component-title {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.component-box:hover .component-title {
    transform: translateX(5px);
}

.component-icon.color-4 {
    color: #20c997;
}

.component-icon.color-5 {
    color: #fd7e14;
}

.component-icon.color-6 {
    color: #dc3545;
}

.component-icon.color-7 {
    color: #e83e8c;
}

.component-icon.color-8 {
    color: #17a2b8;
}

.component-title {
    margin-bottom: 1rem;
}

.component-title.color-1 {
    color: #667eea;
}

.component-title.color-2 {
    color: #f5576c;
}

.component-title.color-3 {
    color: #764ba2;
}

.component-title.color-4 {
    color: #20c997;
}

.component-title.color-5 {
    color: #fd7e14;
}

.component-title.color-6 {
    color: #dc3545;
}

.component-title.color-7 {
    color: #e83e8c;
}

.component-title.color-8 {
    color: #17a2b8;
}

.component-list {
    list-style: none;
    padding: 0;
}

.component-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.component-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #28a745;
    margin-right: 0.5rem;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.strategy-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.strategy-card p {
    margin-top: 1rem;
}

.duration-card {
    padding: 3rem;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.duration-card.pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.duration-card.blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.duration-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.duration-card h2 {
    margin-bottom: 2rem;
}

.duration-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.duration-info:last-child {
    margin-bottom: 0;
}

.duration-info h4 {
    margin-bottom: 0.5rem;
}

.duration-info p {
    font-size: 1.2rem;
    margin: 0;
}

.duration-info p.small {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.outcome-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.outcome-card.border-1 {
    border-top: 4px solid #28a745;
}

.outcome-card.border-2 {
    border-top: 4px solid #17a2b8;
}

.outcome-card.border-3 {
    border-top: 4px solid #ffc107;
}

.outcome-card.border-4 {
    border-top: 4px solid #dc3545;
}

.outcome-card.border-5 {
    border-top: 4px solid #6f42c1;
}

.outcome-card.border-6 {
    border-top: 4px solid #e83e8c;
}

.outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.outcome-icon.color-1 {
    color: #28a745;
}

.outcome-icon.color-2 {
    color: #17a2b8;
}

.outcome-icon.color-3 {
    color: #ffc107;
}

.outcome-icon.color-4 {
    color: #dc3545;
}

.outcome-icon.color-5 {
    color: #6f42c1;
}

.outcome-icon.color-6 {
    color: #e83e8c;
}

.monitoring-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.monitoring-list {
    list-style: none;
    padding: 0;
}

.monitoring-item {
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.monitoring-item:last-child {
    margin-bottom: 0;
}

.conclusion-content {
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.conclusion-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.conclusion-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.conclusion-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-top: 3rem;
}

.conclusion-cta {
    margin-top: 3rem;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {

    .intro-grid,
    .two-col-grid {
        grid-template-columns: 1fr;
    }

    .component-grid {
        grid-template-columns: 1fr;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Banner Section */
.banner-section {
    padding: 2rem 0;
    background-color: var(--bg-light);
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.banner-item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.banner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
}

