/* style.css - COMPLETE UPDATED VERSION WITH FIXES */
:root {
    /* Color Palette */
    --primary: #0A6E4F;
    --primary-dark: #08573e;
    --primary-light: #e8f5f0;
    --secondary: #8B7355;
    --secondary-light: #f8f5f0;
    --accent: #FFA500;
    --accent-light: #fff4e0;
    --light: #ffffff;
    --dark: #333333;
    --gray: #666666;
    --gray-light: #f5f5f5;
    --gray-border: #e0e0e0;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    overflow: hidden;
}

section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title {
    color: var(--dark);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.1s;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.4s;
}

.fade-in-delay-3 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.6s;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* ========== FIXED NAVIGATION BAR ========== */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdropfilter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.3s ease,
                padding 0.3s ease,
                box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    will-change: transform;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.navbar.scroll-up {
    transform: translateY(0);
}

.navbar.scroll-down {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: padding var(--transition);
}

.navbar.scrolled .nav-container {
    padding: 0.5rem 0;
}

/* ========== BIGGER LOGO IN NAVBAR ========== */
.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.logo:hover {
    transform: translateY(-2px);
}

/* HUGE Logo Icon Container */
.logo-icon {
    position: relative;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    flex-shrink: 0;
}

.navbar.scrolled .logo-icon {
    width: 75px;
    height: 75px;
    border-width: 3px;
}

/* Logo Image - fills the circle */
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

/* Fallback text when image fails */
.logo-fallback {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: -1px;
    color: var(--light);
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Show fallback when image fails */
.logo-image[src=""],
.logo-image:not([src]) {
    display: none;
}

.logo-image[src=""] + .logo-fallback,
.logo-image:not([src]) + .logo-fallback,
.logo-image.error + .logo-fallback {
    display: flex;
}

/* Logo Text Container */
.logo-text {
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    text-align: left;
}

/* TRUST NAME - BIGGER AND BOLDER */
.logo-title {
    font-weight: 900;
    font-size: 2rem;
    color: #FFA500;
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.navbar.scrolled .logo-title {
    font-size: 1.6rem;
}

/* Trust Subtitle - MORE PROMINENT */
.logo-subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

/* Tagline */
.logo-tagline {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.2px;
    line-height: 1.3;
}

/* Hover effects */
.logo:hover .logo-image {
    transform: scale(1.08);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--primary);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--primary);
}

/* Background Images for Sections */
.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.bg-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero .section-bg {
    background-image: url("../assets/c13.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--light);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    line-height: 1.1;
    color: #FFA500;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: var(--light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    animation: bounce 2s infinite;
    transition: var(--transition);
}

.scroll-down:hover {
    background-color: var(--primary);
    color: var(--light);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about .section-bg {
    background-image: url("../assets/c2.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.map-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.state-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    transition: var(--transition);
}

.state-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.state-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 0.75rem;
}

.state-name {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.state-stats {
    font-size: 0.9rem;
    color: var(--gray);
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

.approach-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    text-align: center;
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto var(--space-md);
}

/* Founder Section */
.founder-section .section-bg {
    background-image: url("../assets/logo\ \(1\).png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.founder-section .bg-overlay {
    background: rgba(255, 255, 255, 0.9);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.founder-image {
    position: relative;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* President Image Styling */
.president-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 10px solid var(--light);
    box-shadow: var(--shadow-lg);
}

.president-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.president-image:hover img {
    transform: scale(1.05);
}

.image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    color: var(--primary);
    text-align: center;
    padding: var(--space-md);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.president-image.has-image .image-fallback {
    opacity: 0;
    pointer-events: none;
}

.president-image:not(.has-image) .image-fallback {
    opacity: 1;
}

.image-fallback i {
    font-size: 4rem;
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

.fallback-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.fallback-title {
    color: var(--gray);
    font-size: 1rem;
}

.image-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

/* Loading animation for image */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.president-image.loaded img {
    animation: fadeIn 0.5s ease-in;
}

.president-image.loading {
    background: linear-gradient(90deg, 
        var(--primary-light) 25%, 
        var(--light) 50%, 
        var(--primary-light) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Founder Stats */
.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
}

.founder-stat {
    text-align: center;
    padding: var(--space-sm);
}

.founder-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.founder-stat .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

.founder-message {
    font-style: italic;
    margin-bottom: var(--space-lg);
    padding-left: var(--space-md);
    border-left: 3px solid var(--primary);
}

.founder-message .quote {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.founder-signature {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-border);
}

.signature-line {
    width: 150px;
    height: 2px;
    background-color: var(--primary);
    margin: var(--space-md) 0;
}

.signature-name {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.signature-title {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Founder Qualifications */
.founder-qualifications {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-md);
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.qualification-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.qualification-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
}

/* Founder Vision */
.founder-vision {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background-color: var(--light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    border-left: 5px solid var(--accent);
}

.founder-vision h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.founder-vision h3 i {
    color: var(--accent);
}

.vision-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.vision-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-sm);
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.vision-point i {
    color: var(--accent);
    font-size: 1.25rem;
}

.vision-point span {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.95rem;
}

/* Founder Legacy */
.founder-legacy {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background-color: var(--light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legacy-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.legacy-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.legacy-header p {
    color: var(--gray);
    font-size: 1rem;
}

/* Timeline */
.legacy-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.legacy-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    margin-bottom: var(--space-lg);
    position: relative;
}

.timeline-year {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-right: var(--space-md);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.timeline-content {
    flex: 1;
    background-color: var(--light);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    border-left: 4px solid var(--primary);
}

.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Recognition & Awards */
.recognition-section {
    margin-top: var(--space-xl);
}

.recognition-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.recognition-header h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.recognition-header p {
    color: var(--gray);
    font-size: 1rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.award-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto var(--space-md);
}

.award-card h4 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.award-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========== IMAGE GALLERY & CAROUSEL SECTION ========== */
.gallery-section {
    position: relative;
    overflow: hidden;
}

.gallery-bg {
    z-index: -1;
}

.gallery-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
    transform: scale(1.05);
    animation: bgZoom 30s infinite alternate ease-in-out;
}

@keyframes bgZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.15);
    }
}

.gallery-section .bg-overlay {
    background: linear-gradient(135deg, rgba(10, 110, 79, 0.85) 0%, rgba(8, 87, 62, 0.9) 100%);
    mix-blend-mode: multiply;
}

.gallery-section .section-subtitle {
    color: var(--light);
}

.gallery-section .section-title {
    color: var(--light);
}

.gallery-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Carousel Container */
.carousel-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Carousel Track */
.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Carousel Slide */
.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.9) contrast(1.1);
}

.carousel-slide.active .slide-image img {
    transform: scale(1.05);
}

.slide-content {
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(10, 110, 79, 0.95), transparent);
    color: var(--light);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    color: var(--light);
}

.slide-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 600px;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-nav.prev {
    left: var(--space-md);
}

.carousel-nav.next {
    right: var(--space-md);
}

.carousel-nav i {
    transition: transform 0.3s ease;
}

.carousel-nav:hover i {
    transform: scale(1.2);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: var(--space-md);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(10, 110, 79, 0.3);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.carousel-controls .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    min-width: 180px;
}

.carousel-controls .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--light);
}

.carousel-controls .btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--light);
}

.carousel-controls .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.carousel-controls .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Education Preview Section */
.education-preview {
    background-color: var(--light);
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.preview-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.preview-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto var(--space-md);
}

.preview-card h3 {
    margin-bottom: var(--space-sm);
}

.preview-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.preview-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.preview-link:hover {
    gap: 0.75rem;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: var(--space-lg);
}

/* Programs Preview Section */
.programs-preview .section-bg {
    background-image: url("../assets/c2.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.programs-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.highlight-item {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: none;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-sm);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-md);
    align-items: start;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-details p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: var(--space-sm);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

.contact-link:hover {
    gap: 0.75rem;
}

.contact-form {
    background-color: var(--light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
}

.contact-form h3 {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 110, 79, 0.1);
}

/* ========== FOOTER - EVEN BIGGER LOGO ========== */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

/* GIGANTIC Footer Logo */
.footer-logo {
    position: relative;
    z-index: 2;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
}

.footer-logo .logo-image {
    width: 85%;
    height: 85%;
}

.footer-logo .logo-fallback {
    font-size: 3.5rem;
    font-weight: 900;
}

/* Footer Trust Name - VERY PROMINENT */
.footer-logo .logo-text {
    flex: 1;
}

.footer-logo .logo-title {
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--light);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.footer-logo .logo-subtitle {
    font-size: 1.3rem;
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.footer-logo .logo-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Footer Description - Slightly bigger */
.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    padding-left: 0.5rem;
    border-left: 3px solid var(--primary);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h3 {
    color: var(--light);
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.footer-links ul li {
    margin-bottom: 0.85rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 1rem;
}

.footer-links ul li a:hover {
    color: var(--light);
    padding-left: 8px;
}

.footer-newsletter h3 {
    color: var(--light);
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.newsletter-input {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.newsletter-input input {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: var(--light);
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input input:focus {
    outline: none;
}

.newsletter-input button {
    padding: 0 1.75rem;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.newsletter-input button:hover {
    background-color: var(--primary-dark);
}

.footer-emails {
    margin-top: var(--space-sm);
}

.footer-emails p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-emails i {
    margin-right: 0.75rem;
    color: var(--accent);
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.footer-bottom p {
    margin-bottom: 0.75rem;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* ========== ANIMATION FOR LOGO LOADING ========== */
@keyframes logoPulse {
    0% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
    50% {
        transform: scale(1.03);
        box-shadow: var(--shadow-xl);
    }
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
}

.logo-icon.loading {
    animation: logoPulse 2s infinite ease-in-out;
    background: linear-gradient(90deg, 
        var(--primary-light) 25%, 
        var(--light) 50%, 
        var(--primary-light) 75%);
    background-size: 200% 100%;
}

/* Logo loading complete */
.logo-icon.loaded {
    animation: none;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-content {
        gap: var(--space-md);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .approach-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .programs-highlight {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    /* Carousel Responsive */
    .slide-image {
        height: 400px;
    }
    
    .slide-content h3 {
        font-size: 1.75rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    /* Responsive logo sizes */
    .logo-icon {
        width: 100px;
        height: 100px;
    }
    
    .navbar.scrolled .logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .logo-title {
        font-size: 1.6rem;
    }
    
    .logo-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-logo .logo-icon {
        width: 100px;
        height: 100px;
    }
    
    .footer-logo .logo-title {
        font-size: 1.9rem;
    }
    
    .footer-logo .logo-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    section {
        padding: var(--space-lg) 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--light);
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        gap: 1.5rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .programs-highlight {
        grid-template-columns: 1fr;
    }
    
    .preview-cards {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-points {
        grid-template-columns: 1fr;
    }
    
    .legacy-timeline::before {
        left: 25px;
    }
    
    .timeline-year {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    /* Carousel Mobile */
    .slide-image {
        height: 350px;
    }
    
    .slide-content {
        padding: var(--space-md);
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
    
    .carousel-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-controls .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Responsive logo sizes for mobile */
    .logo {
        gap: 0.75rem;
    }
    
    .logo-icon {
        width: 100px;
        height: 100px;
    }
    
    .navbar.scrolled .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-fallback {
        font-size: 2.2rem;
    }
    
    .logo-title {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
    }
    
    /* Footer mobile */
    .footer-logo .logo {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo .logo-icon {
        width: 90px;
        height: 90px;
    }
    
    .footer-logo .logo-fallback {
        font-size: 2.8rem;
    }
    
    .footer-logo .logo-title {
        font-size: 1.7rem;
    }
    
    .footer-logo .logo-subtitle {
        font-size: 1rem;
    }
    
    .footer-logo .logo-tagline {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .section-bg {
        background-attachment: scroll !important;
    }
    
    .founder-stats {
        grid-template-columns: 1fr;
    }
    
    .founder-qualifications {
        flex-direction: column;
    }
    
    .legacy-timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-year {
        margin: 0 auto var(--space-sm);
    }
    
    /* Carousel Mobile Small */
    .slide-image {
        height: 300px;
    }
    
    .slide-content h3 {
        font-size: 1.3rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Extra small screens logo adjustments */
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .navbar.scrolled .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-fallback {
        font-size: 1.8rem;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .footer-logo .logo-icon {
        width: 80px;
        height: 80px;
    }
    
    .footer-logo .logo-fallback {
        font-size: 2.2rem;
    }
    
    .footer-logo .logo-title {
        font-size: 1.5rem;
    }
    
    .footer-logo .logo-subtitle {
        font-size: 0.9rem;
    }
}
/* Add to style.css for better download button on mobile */
@media (max-width: 768px) {
    .nav-item:last-child {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Make download button more prominent in mobile menu */
    .nav-menu.active .nav-item:last-child .btn {
        background-color: var(--primary);
        color: white;
        border-color: var(--primary);
    }
    
    .nav-menu.active .nav-item:last-child .btn:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
    }
}

/* Animation for download button hover */
.nav-item:last-child .btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item:last-child .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 110, 79, 0.2);
}

.nav-item:last-child .btn:active {
    transform: translateY(0);
}

/* Loading animation for download button */
.btn .fa-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.gradient-orange {
  background: linear-gradient(
    135deg,
    #ff6f00,   /* rich saffron orange */
    #ff8f00,   /* warm orange */
    #ffb300,   /* golden highlight */
    #ff8f00,
    #ff6f00
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: 1px;
  animation: premiumGlow 7s ease infinite;
}

@keyframes premiumGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Add to existing style.css */

/* Mobile tap highlight */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Smooth scrolling for mobile */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Fix for sticky hover states on mobile */
@media (hover: none) and (pointer: coarse) {
    .btn:hover, 
    .nav-link:hover,
    .card:hover {
        transform: none !important;
    }
}

/* Improve button touch targets on mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1rem !important;
    }
    
    .nav-link {
        padding: 0.75rem !important;
    }
}

/* Fix for iOS input zoom */
@media screen and (max-width: 768px) {
    input, 
    select, 
    textarea {
        font-size: 16px !important;
    }
}

/* Prevent layout shift on image load */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Loading animation for better UX */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}
