/* ============================================
   ABOUT PAGE - COMPLETE INDEPENDENT STYLES
   ============================================ */

/* CSS Custom Properties */
:root {
    --primary-color: #16a085;
    --primary-dark: #138d75;
    --accent-color: #1abc9c;
    --secondary-color: #3498db;
    --light-color: #ffffff;
    --dark-color: #2c3e50;
    --text-light: #7f8c8d;
    --text-dark: #34495e;
    --background-light: #f8f9fa;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #495057;
    --gradient-primary: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1400px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Typography Scale */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-h1: clamp(2rem, 5vw, 3.5rem);
    --font-size-h2: clamp(1.75rem, 4vw, 2.5rem);
    --font-size-h3: clamp(1.5rem, 3.5vw, 2rem);
    --font-size-h4: clamp(1.25rem, 3vw, 1.5rem);
    --font-size-h5: 1.125rem;
    --font-size-h6: 1rem;
    --font-size-body: 1rem;
    --font-size-small: 0.875rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Legacy variables for backward compatibility */
    --font-size-hero: var(--font-size-h1);
    --font-size-section-title: var(--font-size-h2);
    --font-size-subtitle: var(--font-size-h3);
    --font-size-card-title: var(--font-size-h4);
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
    padding-top: 90px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: inherit;
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-extrabold);
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-bold);
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
}

p {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-dark);
}

/* Utility Classes */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Performance-optimized animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to { 
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes float {
    0%, 100% { transform: rotate(0deg) translate(0, 0); }
    50% { transform: rotate(180deg) translate(-20px, -20px); }
}

/* Button Components */
.btn,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.975rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    will-change: transform;
    min-width: 140px;
    min-height: 44px;
    font-family: var(--font-family);
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-color);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #138d75 0%, #16a085 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:active {
    transform: translateY(0);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
    margin-right: auto;
    max-width: 700px;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    flex: 0 1 auto;
    min-width: 160px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding-top: 1rem;
}

.section-header h2 {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* About Hero Section */
.about-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    margin: 2rem auto 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    max-width: 1400px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22,160,133,0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    will-change: transform;
}

.about-hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.about-hero-text {
    text-align: left;
}

.about-hero-text h1 {
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: left;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
}

/* Remove old hero-visual img styles - slider images have their own styles */

/* Content Sections */
.content-section {
    padding: var(--spacing-xl) 1rem;
    margin: 2rem auto 3rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    max-width: 1200px;
}

.content-section:first-of-type {
    margin-top: 1rem;
}

.content-section:last-of-type {
    margin-bottom: 2rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 2rem 1rem;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 20px;
    border-radius: 2px;
}

.timeline-item {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--light-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 1.5rem;
    left: 12px;
    z-index: 1;
}

.timeline-content {
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: var(--font-size-body);
    font-family: var(--font-family);
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-size: var(--font-size-subtitle);
    font-family: var(--font-family);
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.6;
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-normal);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.team-member {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    transition: var(--transition-smooth);
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: var(--shadow-md);
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    font-family: var(--font-family);
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-position,
.member-info .member-position,
.team-member .member-position,
.team-member .member-info .member-position {
    color: #000000 !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    display: block !important;
    font-size: 1rem !important;
    font-family: var(--font-family) !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-shadow: none !important;
    background: transparent !important;
    line-height: 1.5 !important;
}

.member-bio {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-body);
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
}

/* Team Button Container */
.team-button-container {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(22, 160, 133, 0.1);
}

.team-button-container .btn-secondary {
    min-width: 180px;
}

/* Partners Grid - Scrolling Marquee Animation */
.partners-grid {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
    margin: 2rem auto 0;
    max-width: 100%;
    white-space: nowrap;
}

.partners-grid::before,
.partners-grid::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-grid::before {
    left: 0;
    background: linear-gradient(to right, var(--background-light), transparent);
}

.partners-grid::after {
    right: 0;
    background: linear-gradient(to left, var(--background-light), transparent);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-grid-wrapper {
    display: inline-flex;
    gap: 3rem;
    align-items: center;
    animation: scroll-logos 30s linear infinite;
    will-change: transform;
    white-space: nowrap;
}

.partners-grid-wrapper:hover {
    animation-play-state: paused;
}

.partner-logo {
    height: 120px;
    min-width: 200px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    filter: none !important;
    opacity: 1 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--light-color);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    filter: none !important;
    opacity: 1 !important;
}

.partner-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    transition: none !important;
}

/* Global Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scrolling */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure containers don't exceed viewport */
.about-hero,
.content-section,
.centered-content {
    max-width: 100%;
    overflow-x: hidden;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-hero {
        margin: 1.5rem auto 2rem;
        padding: var(--spacing-lg) 1rem;
        min-height: auto;
        text-align: left;
    }
    
    .about-hero-content {
        padding: 1.5rem 1rem;
        gap: 2rem;
    }
    
    .about-hero-text h1,
    .about-hero-text p {
        text-align: left;
    }
    
    .hero-visual {
        padding: 1.5rem 0;
    }
    
    .hero-cta {
        justify-content: flex-start;
        gap: 0.75rem;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary,
    .team-button-container .btn-secondary {
        min-width: 140px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .timeline {
        padding: 1.5rem 0.5rem;
        margin-top: 1rem;
    }
    
    .timeline::after {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 2.5rem;
    }
    
    .timeline-item::after {
        left: 7px;
        width: 14px;
        height: 14px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .partners-grid {
        padding: 1rem 0;
        margin-top: 1.5rem;
    }
    
    .partners-grid::before,
    .partners-grid::after {
        width: 80px;
    }
    
    .partners-grid-wrapper {
        gap: 2rem;
    }
    
    .partner-logo {
        height: 100px;
        min-width: 150px;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        padding-top: 0.5rem;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .member-info {
        padding: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .about-hero {
        margin: 0.25rem;
        padding: 1.5rem 0.75rem;
    }
    
    .hero-visual {
        padding: 0;
    }
    
    .hero-visual img {
        max-width: 100%;
    }
    
    .about-hero-text h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .team-button-container .btn-secondary {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .content-section {
        padding: var(--spacing-lg) 0.75rem;
        margin: 1.5rem auto 2rem;
    }
    
    .content-section:first-of-type {
        margin-top: 0.5rem;
    }
    
    .content-section:last-of-type {
        margin-bottom: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 5vw, 1.75rem);
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .member-info {
        padding: 1rem;
    }
    
    .member-photo {
        width: 220px;
        height: 220px;
        margin-bottom: 1rem;
        border-width: 3px;
    }
    
    .team-member {
        padding: 1.5rem 1rem 1rem;
    }
}

/* Desktop optimizations for About Page */
@media screen and (min-width: 1024px) {
    .about-hero {
        margin: 2rem auto 4rem;
        padding: var(--spacing-xl) 2rem;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr 500px;
        gap: 4rem;
        text-align: left;
        padding: 2rem;
    }
    
    .about-hero-text {
        text-align: left;
    }
    
    .about-hero-text p {
        margin-left: 0;
        text-align: left;
    }
    
    .hero-cta {
        justify-content: flex-start;
        margin-left: 0;
    }
    
    .hero-visual img {
        max-width: 500px;
        min-height: 400px;
        aspect-ratio: 5/4;
    }
    
    .timeline::after {
        left: 50%;
        margin-left: -1.5px;
    }
    
    .timeline-item {
        width: 50%;
        padding: 1rem 2rem;
    }
    
    .timeline-item.left {
        left: 0;
        text-align: right;
    }
    
    .timeline-item.right {
        left: 50%;
        text-align: left;
    }
    
    .timeline-item.left::after {
        right: -8px;
    }
    
    .timeline-item.right::after {
        left: -8px;
    }
    
    .timeline-item:nth-child(odd) {
        align-self: flex-end;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .timeline-content:hover,
    .team-member:hover,
    .partner-logo:hover {
        transform: none;
    }
    
    .timeline-content:active,
    .team-member:active,
    .partner-logo:active {
        transform: scale(0.98);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.btn-primary:focus,
.btn-secondary:focus,
.partner-logo a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Header & Footer Icons Support */
.social-nav a i.fab,
.social-nav a i.fas,
.social-link i.fab,
.social-link i.fas,
.footer-info-item i.fas,
.footer-link i.fas,
.menu-toggle i.fas,
.side-menu-close i.fas,
.menu-arrow.fas,
.btn i.fas {
    display: inline-block;
    visibility: visible;
    opacity: 1;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.social-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Page Styles */
.contact-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
    min-height: calc(100vh - 90px);
    padding: 2rem 0;
    margin-top: 2rem;
}

.contact-wrapper {
    max-width: 1200px;
    width: 95%;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(22, 160, 133, 0.15);
    margin: 2rem auto 0;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22,160,133,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info-col {
    order: 1;
}

.contact-form-col {
    order: 2;
}

.contact-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(22, 160, 133, 0.1);
}

.contact-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.contact-header p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    opacity: 1;
    visibility: visible;
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

.contact-page label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.contact-page input,
.contact-page textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(22, 160, 133, 0.15);
    border-radius: 12px;
    background: #ffffff;
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.contact-page input::placeholder,
.contact-page textarea::placeholder {
    color: #bdc3c7;
    opacity: 0.8;
}

.contact-page input:focus,
.contact-page textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.15), 0 4px 12px rgba(22, 160, 133, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.contact-page textarea {
    min-height: 100px;
    max-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.contact-page .btn {
    display: inline-block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--light-color);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
    font-family: var(--font-family);
    text-align: center;
    min-height: 44px;
    margin-top: 0.5rem;
}

.contact-page .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;
}

.contact-page .btn:hover::before {
    left: 100%;
}

.contact-page .btn:hover {
    background: linear-gradient(135deg, #138d75 0%, #16a085 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 160, 133, 0.4);
}

.contact-page .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.contact-page .btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.contact-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.4) 0%, rgba(200, 230, 201, 0.3) 100%);
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-item:hover::before {
    transform: scaleY(1);
}

.info-item:hover {
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.6) 0%, rgba(200, 230, 201, 0.5) 100%);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.15);
}

.info-item i {
    font-size: 1.75rem;
    color: var(--primary-color);
    background: rgba(22, 160, 133, 0.1);
    border-radius: 50%;
    padding: 1rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.info-item:hover i {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.info-item > div {
    flex: 1;
}

.info-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

.info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.info-item a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.contact-animation {
    width: 100%;
    min-height: 250px;
    height: 250px;
    display: flex !important;
    align-items: stretch;
    justify-content: stretch;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    visibility: visible;
    opacity: 1;
}

.animation-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    animation: float 3s ease-in-out infinite;
}

.animation-placeholder svg.envelope-icon {
    width: 100px;
    height: 100px;
    transition: opacity 0.3s ease;
    display: block;
}

.animation-placeholder:hover svg.envelope-icon {
    opacity: 0.7;
}

.animation-placeholder i {
    font-size: 100px;
    color: #16a085;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    display: none;
}

.animation-placeholder.boxicons-loaded svg.envelope-icon {
    display: none;
}

.animation-placeholder.boxicons-loaded i {
    display: block;
}

.contact-animation lottie-player {
    width: 100% !important;
    height: 100% !important;
    min-height: 250px;
    border-radius: 16px;
    display: block;
    flex: 1;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-wrapper {
        padding: 2rem;
        margin: 1.5rem auto;
        border-radius: 20px;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-header h2 {
        font-size: 1.875rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 1rem 0;
        margin-top: 1.5rem;
    }
    
    .contact-wrapper {
        padding: 1.5rem;
        margin: 2rem auto 0;
        width: 98%;
        border-radius: 16px;
    }
    
    .contact-container {
        gap: 2rem;
    }
    
    .contact-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-page textarea {
        min-height: 140px;
    }
    
    .contact-page .btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .info-item {
        padding: 1.25rem;
    }
    
    .info-item i {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .contact-page {
        margin-top: 1rem;
    }
    
    .contact-wrapper {
        padding: 1.25rem;
        border-radius: 12px;
        margin: 1.5rem auto 0;
    }
    
    .contact-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-page input,
    .contact-page textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .info-item i {
        margin: 0 auto;
    }
}

@media (max-width: 375px) {
    .contact-wrapper {
        padding: 1rem;
        width: 100%;
    }
    
    .contact-header h2 {
        font-size: 1.25rem;
    }
    
    .contact-page input,
    .contact-page textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .contact-page .btn {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .info-item i {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
        padding: 0.625rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .contact-page .btn:hover,
    .info-item:hover {
        transform: none;
    }
    
    .contact-page .btn:active {
        transform: scale(0.98);
    }
    
    .info-item:active {
        transform: scale(0.98);
    }
}

.contact-page input:focus-visible,
.contact-page textarea:focus-visible,
.contact-page .btn:focus-visible,
.info-item a:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.contact-page input:invalid:not(:placeholder-shown),
.contact-page textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.contact-page input:valid:not(:placeholder-shown),
.contact-page textarea:valid:not(:placeholder-shown) {
    border-color: var(--accent-color);
}

.contact-page .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-page .btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(22, 160, 133, 0.3);
}

.bx {
    font-family: 'boxicons' !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.info-item i.bx {
    display: inline-block;
    visibility: visible;
    opacity: 1;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TEAM PAGE STYLES
   ============================================ */

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #16a085;
    margin-bottom: 10px;
}

.team-member-row {
    display: grid;
    grid-template-columns: 300px 1px 1fr;
    gap: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.member-left {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.05) 0%, rgba(26, 188, 156, 0.05) 100%);
}

.member-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.member-social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #16a085;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.member-social-icons a:hover {
    background: #138d75;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(22, 160, 133, 0.3);
}

.divider-line {
    width: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

.member-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.member-name {
    font-size: 2rem;
    font-weight: 700;
    color: #16a085;
    margin-bottom: 8px;
}

.member-position {
    font-size: 1.1rem;
    font-style: italic;
    color: #16a085;
    margin-bottom: 20px;
    font-weight: 500;
}

.member-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: #2c3e50;
    flex: 1;
}

@media (max-width: 968px) {
    .team-member-row {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1px auto;
    }
    
    .divider-line {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    .member-left {
        padding: 25px;
    }
    
    .member-right {
        padding: 25px;
    }
    
    .member-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .team-container {
        padding: 20px 15px;
    }
    
    .team-header h1 {
        font-size: 2rem;
    }
    
    .member-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .member-name {
        font-size: 1.5rem;
    }
    
    .member-position {
        font-size: 1rem;
    }
    
    .member-bio {
        font-size: 0.95rem;
    }
}

/* ============================================
   INDEX PAGE STYLES
   ============================================ */

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Performance-optimized animations */
@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to { 
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Focus Management */
.slider-dot:focus,
.objective-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Error States */
.image-error {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    color: var(--text-light);
    font-size: 0.875rem;
    height: 100%;
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-sm);
    background: transparent;
    box-shadow: none;
    position: relative;
    overflow: visible;
    border-radius: 0;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--spacing-lg);
    align-items: start;
}

.hero-text {
    animation: slideUp 0.8s ease-out;
}

.hero-text h1 {
    font-size: var(--font-size-hero);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Force text to break into 3 lines consistently */
    max-width: 100%;
    word-break: break-word;
    hyphens: auto;
    /* Ensure consistent line breaks - force 3 lines */
    display: block;
    overflow-wrap: break-word;
}

.hero-text p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    max-width: 65ch;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

/* Image Slider */
.hero-visual {
    animation: slideUp 0.8s ease-out 0.2s both;
    /* Ensure hero-visual blends seamlessly - no visible container */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    /* Match hero section background - fully transparent */
    background-color: transparent !important;
    outline: none !important;
}

/* Force remove any container styling - highest priority */
.hero-visual .slider-container,
.hero-visual .slider-container *,
.hero-visual .slider-container::before,
.hero-visual .slider-container::after {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    outline: none !important;
    content: none !important;
}

/* Remove any pseudo-elements that might create visible containers */
.slider-container::before,
.slider-container::after {
    display: none !important;
    content: none !important;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 320px;
    /* Remove all visible container styling - seamless blend with background */
    border-radius: 0 !important;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    /* Fully transparent - no container background */
    background-color: transparent !important;
    /* Remove any outline or visual indicators */
    outline: none !important;
}

.slider-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    will-change: opacity;
    /* Ensure images are fully visible and blend seamlessly */
    z-index: 1;
    /* Remove any image borders or shadows */
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    outline: none !important;
}

.slider-image.active {
    opacity: 1;
    z-index: 2;
}

.slider-controls {
    position: absolute;
    bottom: var(--spacing-sm);
    left: 50%;
    transform: translateX(-50%);
    display: none !important; /* Hide slider controls - show only images */
    gap: var(--spacing-xs);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.7;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid #fff;
}

.slider-dot.active,
.slider-dot:hover,
.slider-dot:focus {
    background: var(--accent-color);
    opacity: 1;
    transform: scale(1.2);
    border: 2px solid var(--primary-color);
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.info-card {
    background: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.info-card h2 {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.info-card p {
    line-height: 1.7;
    font-size: var(--font-size-body);
    color: #4a5568;
}

/* Objectives Section */
.objectives {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.objectives h2 {
    font-family: var(--font-family);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.objectives h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-sm);
}

/* Work Cards Style for Objectives */
.objectives-grid .work-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 380px;
    /* Ensure cards are always visible - no hiding on scroll */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translateY(0) !important;
}

.objectives-grid .work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.objectives-grid .work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    max-width: 100%;
}

.objectives-grid .work-card:hover img {
    transform: scale(1.05);
}

.objectives-grid .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.objectives-grid .card-content {
    transform: translateY(0);
    opacity: 1;
    transition: var(--transition);
    text-align: left;
}

.objectives-grid .card-content h3 {
    font-family: var(--font-family);
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--light-color);
    text-align: left;
}

.objectives-grid .card-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: left;
}

.objectives-grid .card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    font-size: 0.9rem;
    min-height: 44px;
    min-width: 44px;
    align-self: flex-start;
}

.objectives-grid .card-btn:hover {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
    transform: translateY(-3px);
}

/* Mobile Button for Objectives Cards */
.objectives-grid .mobile-btn {
    display: none;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-weight: 600;
    transition: var(--transition-smooth);
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}

.objectives-grid .mobile-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.no-objectives {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-light);
}

.no-objectives p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design - Index Page */
@media (min-width: 640px) {
    .hero {
        margin: var(--spacing-xl) auto var(--spacing-lg);
        padding: var(--spacing-xl);
    }
    
    .hero-cta {
        justify-content: flex-start;
    }
    
    .slider-container {
        height: 360px;
        border-radius: 0;
        background-color: transparent;
        box-shadow: none !important;
        border: none !important;
    }
}

@media (max-width: 639px) {
    .slider-container {
        height: 400px;
        min-height: 400px;
        max-height: 70vh;
        border-radius: 0 !important;
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
        outline: none !important;
    }
    
    .slider-image {
        object-fit: contain;
        object-position: center;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        outline: none !important;
    }
    
    .hero-visual {
        width: 100%;
        padding: 0;
        margin: 0;
        background: transparent;
    }
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
        align-items: start;
    }
    
    .mission-vision {
        grid-template-columns: 1fr 1fr;
    }
    
    .slider-container {
        height: 500px;
        min-height: 500px;
        border-radius: 0 !important;
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
        outline: none !important;
    }
    
    .slider-image {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        object-position: center;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        outline: none !important;
    }
    
    .objectives-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .slider-container {
        height: 550px;
        min-height: 550px;
        border-radius: 0 !important;
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
        outline: none !important;
    }
    
    .slider-image {
        max-width: 85%;
        max-height: 85%;
        object-fit: contain;
        object-position: center;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        outline: none !important;
    }
}

@media (max-width: 992px) {
    .objectives-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .objectives-grid .work-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .objectives-grid .work-card {
        height: auto;
        min-height: 400px;
        display: flex;
        flex-direction: column;
    }
    
    .objectives-grid .work-card img {
        height: 250px;
        object-fit: cover;
    }
    
    .objectives-grid .work-card .card-overlay {
        position: relative;
        background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
        padding: 1.5rem;
        display: flex;
        flex: 1;
        min-height: 150px;
    }
    
    .objectives-grid .work-card .card-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
    }
    
    .objectives-grid .work-card .card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .objectives-grid .work-card .card-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        flex: 1;
    }
    
    .objectives-grid .work-card .card-btn {
        align-self: flex-start;
    }
    
    .objectives-grid .mobile-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .objectives-grid .work-card {
        min-height: 380px;
    }
    
    .objectives-grid .work-card img {
        height: 220px;
    }
    
    .objectives-grid .card-overlay {
        padding: 1.25rem;
        min-height: 160px;
    }
    
    .objectives-grid .card-content h3 {
        font-size: 1.2rem;
    }
    
    .objectives-grid .card-content p {
        font-size: 0.85rem;
    }
    
    .news-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .news-card {
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .news-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Accessibility - Index Page */
@media (prefers-reduced-motion: reduce) {
    .slider-image {
        transition: none;
    }
}
