@import url('https://fonts.googleapis.com/css2?family=Droid+Serif:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Reset & Base */
.about-page {
    background-color: #ffffff;
    color: #2d3748;
        font-family: 'Droid Serif';

}
body {
    font-family: 'Droid Serif' ;
    line-height: 1.6;
    color: #333;
}

.container {
    
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Headings */
.section-heading {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: #1a202c;
    /* margin-bottom: 16px; */
    /* font-family: Georgia, serif; */
}

.section-subheading {
    text-align: center;
    font-size: 16px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-banner {
    position: relative;
    min-height: 65vh;
    /* background: url('../about-bnnr.png') center center / cover no-repeat; */
    display: flex;
    align-items: center;

}

/* DARK BLUE GRADIENT OVERLAY */
.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background:linear-gradient(to bottom, #0567d700, #1e3f7a38);
    z-index: 1;
    
    
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh; /* full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* Background image fix */
    background-image: url('../about-bnnr.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* DARK OVERLAY */
.hero-banner .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,103,215,0.1), rgba(30,63,122,0.6));
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    max-width: 1200px;
    width: 90%;
}

/* TEXT RESPONSIVENESS */
.hero-content h1 {
    font-size: clamp(28px, 5vw, 60px);
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: clamp(14px, 2vw, 18px);
    max-width: 600px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablets */
@media (max-width: 992px) {
    .hero-banner {
        min-height: 80vh;
        background-position: center;
    }

    .hero-content {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-banner {
        min-height: 70vh;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

/* Large screens (Big monitors fix) */
@media (min-width: 1400px) {
    .hero-banner {
        min-height: 100vh;
        background-size: cover;
    }

    .hero-content {
        max-width: 1400px;
    }
}

/* CONTENT WRAPPER */
.hero-banner .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    color: white;
}

/* LEFT SIDE */
.left-content .tag {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    display: inline-block;
    margin-bottom: 20px;
}

.left-content h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 25px;
}

.left-content .subtext {
    font-size: 20px;
    font-weight: 300;
    max-width: 520px;
    line-height: 1.6;
}

/* RIGHT SIDE */
.right-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-banner .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .left-content h1 {
        font-size: 34px;
    }

    .left-content .subtext,
    .right-content p {
        font-size: 16px;
    }
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.about-video-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.video-badge-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-badge-circle {
    position: absolute;
    top: -50px;
    left: 40px;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #2b6cb0 0%, #1e4c7a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(43, 108, 176, 0.3);
}

.video-badge-content {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.video-badge-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.video-badge-content p {
    font-size: 15px;
    opacity: 0.9;
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
    border-radius: 16px;
    overflow: hidden;
}

/* @media (min-width: 769px) {
    .video-placeholder {
        aspect-ratio: 9/16;
    }
}

@media (max-width: 768px) {
    .video-placeholder {
        aspect-ratio: 9/14;
    }
} 

@media (max-width: 480px) {
    .video-placeholder {
        aspect-ratio: 9/13;
    }
}*/

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   WHAT WE DO - AUTO SCROLLING CAROUSEL
   ============================================ */

.what-we-do-section {
    /* padding: 80px 0; */
    background-color: #ffffff;
    overflow: hidden;
}

.what-we-do-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.what-section-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

/* Auto Scrolling Wrapper */
.auto-scroll-wrapper {
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Scroll Track Container */
.auto-scroll-track {
    display: flex;
    gap: 24px;
    width: fit-content;
    height: 100%;
    animation: none;
}

/* Pause on Hover */
/* .auto-scroll-wrapper:hover .auto-scroll-track {
    animation-play-state: paused;
} */

/* Card Column Container */
.card-column {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-shrink: 0;
    
}

/* Single Card Column - Centered Vertically */
.card-column.single {
    justify-content: center;
    align-items: center;
    height: 100%;
}

.card-column.single .activity-scroll-card {
    height: 350px;
}

/* Double Card Column - Space Between (Top and Bottom) */
.card-column.double {
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Activity Scroll Card */
.activity-scroll-card {
    position: relative;
    width: 280px;
    height: 220px;
    flex-shrink: 0;
    /* border-radius: 12px; */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background: #fff;
    border-radius: 10px;
}

/* Hover Effects */
.activity-scroll-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

.activity-scroll-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-scroll-card:hover img {
    transform: scale(1.08);
}

/* Card Content Overlay */
.activity-scroll-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    color: #ffffff;
    padding: 24px 18px 18px 18px;
}

.activity-scroll-content h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Keyframe Animation for Horizontal Scrolling */
@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (min-width: 1400px) {
    .auto-scroll-wrapper {
        height: 520px;
    }
    
    .activity-scroll-card {
        width: 320px;
        height: 240px;
    }
    
    .activity-scroll-content h3 {
        font-size: 16px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .section-heading {
        font-size: 32px;
        /* margin-bottom: 50px; */
    }

    .auto-scroll-wrapper {
        height: 420px;
    }

    .activity-scroll-card {
        width: 260px;
        height: 200px;
    }

    .activity-scroll-content h3 {
        font-size: 14px;
    }

    .auto-scroll-track {
        gap: 20px;
        animation-duration: 85s;
    }

    .card-column.double {
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .what-we-do-section {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 28px;
        /* margin-bottom: 40px; */
    }

    .auto-scroll-wrapper {
        height: 360px;
    }

    .auto-scroll-track {
        gap: 16px;
        animation-duration: 75s;
    }

    .activity-scroll-card {
        width: 220px;
        height: 170px;
    }

    .activity-scroll-content {
        padding: 18px 14px 14px 14px;
    }

    .activity-scroll-content h3 {
        font-size: 13px;
    }

    .card-column.double {
        gap: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .what-we-do-section {
        padding: 50px 0;
    }

    .section-heading {
        font-size: 24px;
        /* margin-bottom: 32px; */
    }

    .auto-scroll-wrapper {
        height: 320px;
    }

    .auto-scroll-track {
        gap: 12px;
        animation-duration: 65s;
    }

    .activity-scroll-card {
        width: 180px;
        height: 150px;
    }

    .activity-scroll-content {
        padding: 14px 12px 12px 12px;
    }

    .activity-scroll-content h3 {
        font-size: 12px;
        line-height: 1.3;
    }

    .card-column.double {
        gap: 12px;
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .auto-scroll-track {
        animation: none;
    }
    
    .auto-scroll-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .activity-scroll-card:hover {
        transform: none;
    }
    
    .activity-scroll-card:hover img {
        transform: none;
    }
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
    .activity-scroll-card:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }
    
    .activity-scroll-card:hover img {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .activity-scroll-content {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 60%, transparent 100%);
    }
    
    .activity-scroll-card {
        border: 2px solid #000;
    }
}

/* Focus styles for keyboard navigation */
.activity-scroll-card:focus {
    outline: 3px solid #4A90E2;
    outline-offset: 3px;
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* GPU acceleration for smoother animations */
.auto-scroll-track,
.activity-scroll-card {
    will-change: transform;
}

/* Optimize image rendering */
.activity-scroll-card img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
/* ===============================
   WHY WE EXIST SECTION
================================ */

.why-exist {
    padding: 80px 20px;
    background-color: #ffffff;
}

.why-container {
    max-width: 1000px;
    margin: 0 auto;
}

.why-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.why-subtitle {
    text-align: center;
    font-size: 16px;
    color: #475569;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    border: 1px solid #54c6f147;
    border-radius: 12px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #1e293b;
    margin: 0;
}

/* Full width last card */
.why-card-full {
    grid-column: span 2;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card-full {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .why-title {
        font-size: 28px;
    }

    .why-card {
        padding: 20px;
    }
}


/* ============================================
   HOW WE SOLVE SECTION - INTERACTIVE
   ============================================ */

.how-solve-section {
    /* padding: 80px 0; */
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.how-solve-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.how-solve-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.how-solve-section .container {
    position: relative;
    z-index: 1;
}

.section-headinghow {
    font-size: 42px;
    font-weight: 800;
    color: black;
    margin-bottom: 16px;
    /* font-family: Georgia, serif; */
    text-align: center;
}

.section-subheadinghow {
    font-size: 16px;
    color:black;
    /* max-width: 900px; */
    margin-bottom: 60px;
    line-height: 1.7;
}

/* Interactive Layout */
.solve-interactive-layout {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Buttons */
.solve-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    outline: none;
    font-family: 'Droid Serif', Georgia, serif;
}

.solve-btn {
    background: linear-gradient(45deg, #2266b933, transparent);
    border: none;
    border-radius: 16px;
    padding: 24px 28px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solve-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.solve-btn:hover::before {
    opacity: 0.15;
}

.solve-btn.active {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(72, 187, 120, 0.3);
    color: white;
}
.solve-btn.active h3{
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(72, 187, 120, 0.3);
    color: white;
}

.solve-btn h3 {
    font-size: 20px;
    font-weight: 700;
    color: black;
    font-family: 'Droid Serif', Georgia, serif !important;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.solve-btn p {
    font-size: 14px;
    color: black;
    margin: 0;
    font-family: 'Droid Serif', Georgia, serif !important;
    position: relative;
    z-index: 1;
}

.solve-btn.active p {
    color: rgba(255, 255, 255, 0.95);
}

/* Right Side - Content Display */
.solve-content {
    position: relative;
    min-height: 600px;
}

.solve-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.solve-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card {
    background: linear-gradient(135deg, #2d70b3 0%, #1e40af 100%);
    border-radius: 24px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
}

.content-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.content-card > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
    opacity: 0.95;
}

.content-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 24px;
}

.content-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: 32px 24px 24px 24px;
}

.image-caption h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .solve-interactive-layout {
        grid-template-columns: 380px 1fr;
        gap: 40px;
    }

    .section-heading {
        font-size: 36px;
    }

    .solve-btn {
        padding: 20px 24px;
    }

    .solve-btn h3 {
        font-size: 18px;
    }

    .content-card {
        padding: 32px;
    }

    .content-card h3 {
        font-size: 24px;
    }

    .content-image img {
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .how-solve-section {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 28px;
        /* margin-bottom: 12px; */
    }

    .section-subheading {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .solve-interactive-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .solve-buttons {
        gap: 12px;
    }

    .solve-btn {
        padding: 18px 20px;
    }

    .solve-btn h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .solve-btn p {
        font-size: 13px;
    }

    .solve-btn.active {
        transform: translateX(0);
    }

    .solve-content {
        min-height: auto;
    }

    .content-card {
        padding: 24px;
    }

    .content-card h3 {
        font-size: 22px;
    }

    .content-card > p {
        font-size: 14px;
    }

    .content-image img {
        height: 280px;
    }

    .image-caption {
        padding: 24px 16px 16px 16px;
    }

    .image-caption h4 {
        font-size: 18px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .how-solve-section {
        padding: 50px 0;
    }

    .section-heading {
        font-size: 24px;
    }

    .section-subheading {
        font-size: 13px;
    }

    .solve-btn {
        padding: 16px 18px;
        border-radius: 12px;
    }

    .solve-btn h3 {
        font-size: 15px;
    }

    .solve-btn p {
        font-size: 12px;
    }

    .content-card {
        padding: 20px;
        border-radius: 16px;
    }

    .content-card h3 {
        font-size: 20px;
    }

    .content-card > p {
        font-size: 13px;
        line-height: 1.6;
    }

    .content-image {
        border-radius: 12px;
    }

    .content-image img {
        height: 220px;
    }

    .image-caption {
        padding: 20px 14px 14px 14px;
    }

    .image-caption h4 {
        font-size: 16px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.solve-btn:focus {
    outline: 2px solid #48bb78;
    outline-offset: 2px;
}

.solve-btn:focus-visible {
    outline: 2px solid #48bb78;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .solve-btn,
    .content-card,
    .solve-tab-content {
        animation: none;
        transition: none;
    }

    .solve-btn.active {
        transform: none;
    }
}

/* ============================================
   MISSION SECTION
   ============================================ */

.mission-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.mission-wrapper {
position: relative;
    background: linear-gradient(135deg, #0d5cb6 0%, #0d5cb6 100%);
    border-radius: 24px;
    padding: 60px;
    padding-right: 480px;
    width: 91%;
    margin: auto;
}

.mission-content {
    color: #ffffff;
    max-width: 600px;
}

.mission-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
}

.mission-content p {
font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: bold;
    
}

.mission-image {
    position: absolute;
    right: -48px;
    top: 68%;
    transform: translateY(-50%);
    width: 420px;
    height: 280px;
    border-top-left-radius: 9rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #fff;
    border-bottom-left-radius: 8rem;
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .mission-wrapper {
        padding-right: 60px;
    }
    
    .mission-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 40px;
        width: 100%;
    }
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    /* padding: 80px 0; */
    background-color: #f7fafc;
}
.value-section-heading{
    font-size: 48px;
    font-weight: 700;
    /* margin-bottom: 30px; */
    text-align: center;
}
.section-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    /* margin-bottom: 60px; */
    color: #1a202c;
}

.values-layout {
    position: relative;
    /* max-width: 900px; */
    margin: 0 auto;
    height: 550px;
}

.values-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 320px;
    height: 240px; */
    border-radius: 20px;
    overflow: hidden;
    /* border: 8px solid #ffffff; */
    z-index: 1;
}

.values-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-circle {
    position: absolute;
    background: linear-gradient(135deg, #0d5cb6 0%, #084a9e 100%);
    color: #ffffff;
    padding: 8px 0px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(13, 92, 182, 0.35);
    transition: all 0.3s ease;
    z-index: 2;
}

.value-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(13, 92, 182, 0.45);
}

.value-circle h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.value-circle p {
    font-size: 13px;
    opacity: 0.95;
    line-height: 1.5;
}

/* Desktop Positioning - Circles around center */
.value-1 {
    top: 24%;
    left: 14%;
}

.value-2 {
    top: 28%;
    right: 15%;
}

.value-3 {
    bottom: 0%;
    left: 23%;
}

.value-4 {
    bottom: -8%;
    right: 22%;
}

/* ============================================
   TABLET BREAKPOINT (1024px and below)
   ============================================ */
@media (max-width: 1024px) {
    .values-layout {
        height: 500px;
    }
    
    .values-center {
        width: 280px;
        height: 210px;
    }
    
    .value-circle {
        width: 180px;
        height: 180px;
        padding: 24px 20px;
    }
    
    .value-circle h3 {
        font-size: 16px;
    }
    
    .value-circle p {
        font-size: 12px;
    }
    
    .value-1 {
        top: 12%;
        left: 8%;
    }
    
    .value-2 {
        top: 8%;
        right: 8%;
    }
    
    .value-3 {
        bottom: 10%;
        left: 10%;
    }
    
    .value-4 {
        bottom: 6%;
        right: 10%;
    }
}

/* ============================================
   MOBILE BREAKPOINT (768px and below)
   ============================================ */
@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 32px;
        /* margin-bottom: 40px; */
    }
    
    .values-layout {
        position: static;
        height: auto;
        max-width: 100%;
        /* display: flex; */
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    /* Show center image on mobile as first item */
    .values-center {
        position: static;
        transform: none;
        width: 100%;
        height: 220px;
        border-radius: 16px;
        margin-bottom: 10px;
        order: -1;
    }
    
    /* Transform circles to rectangles on mobile */
    .value-circle {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 16px;
        padding: 28px 24px;
        transform: none !important;
        box-shadow: 0 4px 16px rgba(13, 92, 182, 0.25);
    }
    
    .value-circle:hover {
        transform: translateY(-4px) !important;
    }
    
    .value-circle h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .value-circle p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ============================================
   SMALL MOBILE (480px and below)
   ============================================ */
@media (max-width: 480px) {
    .section-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .values-layout {
        padding: 0 16px;
        gap: 16px;
    }
    
    .values-center {
        height: 200px;
    }
    
    .value-circle {
        padding: 24px 20px;
    }
    
    .value-circle h3 {
        font-size: 18px;
    }
    
    .value-circle p {
        font-size: 13px;
    }
}
/* ===================================================================== */
        /* Our Team Section */
        .team-section {
            padding: 80px 20px;
            
            position: relative;
        }

        .team-section-heading {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }

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

        .team-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .team-slider {
            overflow: hidden;
            position: relative;
            flex: 1;
        }

        .team-track {
            display: flex;
            gap: 32px;
            transition: transform 0.5s ease-in-out;
            
        }

        .team-card {
            min-width: calc(33.333% - 22px);
            background: linear-gradient(135deg, #41AD49 0%, #37c93d 100%);
            border-radius: 24px;
            overflow: hidden;
            /* flex-shrink: 0; */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .team-image-wrapper {
            position: relative;
            padding: 40px 40px 20px;
            /* display: flex; */
            justify-content: center;
        }

        .team-image-bg {
            width: 247px;
            height: 288px;
            
            
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: hidden;
            margin: auto;
        }

        .team-image {
            width: 88%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }

        .team-info {
            padding: 0px 25px 27px;
            color: #ffffff;
        }

        .team-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            text-align: center;
            color: white;
        }

        .team-bio {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.95;
            text-align: center;
            font-weight: 500;
        }

        /* Navigation Buttons - Right Side */
        .nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .nav-btn {
            width: 48px;
            height: 48px;
            background: #ffffff;
            border: 2px solid #2b6cb0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #2b6cb0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .nav-btn:hover:not(:disabled) {
            background: #2b6cb0;
            color: #ffffff;
            transform: scale(1.05);
        }

        .nav-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .nav-btn svg {
            width: 24px;
            height: 24px;
            stroke-width: 2.5;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .team-card {
                min-width: calc(50% - 16px);
            }

            .section-heading {
                font-size: 40px;
            }

            .nav-buttons {
                right: 10px;
            }

            .nav-btn {
                width: 44px;
                height: 44px;
            }
        }

        @media (max-width: 768px) {
            .team-card {
                min-width: calc(100% - 0px);
            }

            .section-heading {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .team-track {
                gap: 20px;
            }

            .team-image-bg {
                width: 220px;
                height: 260px;
            }

            .team-name {
                font-size: 24px;
            }

            .team-bio {
                font-size: 14px;
            }

            .nav-buttons {
                right: 5px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
            }

            .nav-btn svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .team-section {
                padding: 60px 10px;
            }

            .section-heading {
                font-size: 28px;
                padding-left: 10px;
            }

            .team-container {
                padding: 0 10px;
            }

            .team-card {
                border-radius: 20px;
            }

            .team-image-wrapper {
                padding: 30px 20px 15px;
            }

            .team-image-bg {
                width: 180px;
                height: 220px;
            }

            .team-info {
                padding: 20px 24px 28px;
            }

            .nav-buttons {
                right: 5px;
                gap: 8px;
            }

            .nav-btn {
                width: 36px;
                height: 36px;
            }
        }
/* ============================================
   BOARD SECTION
   ============================================ */
        /* Board of Advisors Section */
        .board-section {
            padding: 80px 0;
            background-color: #ffffff;
            overflow: hidden;
        }
        .board-section-heading{
         font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-heading {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 60px;
            text-align: left;
        }

        /* Auto-scrolling container */
        .board-scroll-container {
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .board-scroll-wrapper {
            display: flex;
            animation: scroll 15s linear infinite;
            gap: 28px;
        }

        /* Pause animation on hover */
        .board-scroll-wrapper:hover {
            animation-play-state: paused;
        }

        /* Duplicate for seamless loop */
        .board-track {
            display: flex;
            gap: 28px;
            flex-shrink: 0;
        }

        /* ============================================
           BOARD CARD FIX — equal width & height for all cards
           ============================================ */
        .board-card {
            background: linear-gradient(135deg, #0a4587 0%, #0d5cb6 100%);
            border-radius: 16px;
            padding: 40px 32px;
            text-align: center;
            color: #ffffff;
            transition: transform 0.3s ease;
            width: 280px;          /* fixed width so all cards are equal */
            min-width: 280px;
            min-height: 360px;     /* fixed min-height so shorter-content cards match taller ones */
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        .board-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }

        .board-image {
            width: 160px;
            height: 160px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            /* border: 4px solid rgba(255, 255, 255, 0.3); */
        }

        .board-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .board-info h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .board-title {
            font-size: 15px;
            opacity: 0.9;
            margin-bottom: 4px;
            font-weight: 500;
        }

        .board-org {
            font-size: 14px;
            opacity: 0.8;
        }

        /* Keyframe animation for scrolling */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .section-heading {
                font-size: 40px;
            }

            .board-card {
                width: 260px;
                min-width: 260px;
                min-height: 340px;
                padding: 36px 28px;
            }

            .board-image {
                width: 140px;
                height: 140px;
            }

            .board-scroll-wrapper {
                animation-duration: 12s;
            }
        }

        @media (max-width: 768px) {
            .board-section {
                padding: 60px 0;
            }

            .section-heading {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .board-card {
                width: 240px;
                min-width: 240px;
                min-height: 320px;
                padding: 32px 24px;
            }

            .board-image {
                width: 120px;
                height: 120px;
            }

            .board-info h3 {
                font-size: 18px;
            }

            .board-title {
                font-size: 14px;
            }

            .board-org {
                font-size: 13px;
            }

            .board-scroll-wrapper {
                animation-duration: 10s;
                gap: 20px;
            }

            .board-track {
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .section-heading {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .board-card {
                width: 220px;
                min-width: 220px;
                min-height: 300px;
                padding: 28px 20px;
                border-radius: 14px;
            }

            .board-image {
                width: 100px;
                height: 100px;
                margin-bottom: 16px;
            }

            .board-info h3 {
                font-size: 16px;
                margin-bottom: 6px;
            }

            .board-title {
                font-size: 13px;
            }

            .board-org {
                font-size: 12px;
            }

            .board-scroll-wrapper {
                animation-duration: 16s;
                gap: 16px;
            }

            .board-track {
                gap: 16px;
            }
        }
/* ============================================
   TAKE ACTION SECTION
   ============================================ */
.action-section {
    /* padding: 80px 0; */
    background-color: #ffffff;
}

.action-section-heading {
    font-size: 48px;
    font-weight: 700;
    /* margin-bottom: 50px; */
    text-align: center;
    color: #1a202c;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.action-card {
    text-align: center;
    padding: 24px 16px;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

.action-card:hover {
    transform: translateY(-4px);
}

.action-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   CONNECT WITH US SECTION
   ============================================ */
.connect-section {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.connect-heading {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1a202c;
    margin-bottom: 50px;
}

.connect-card {
    background: linear-gradient(135deg, #EBF4FF 0%, #E0E7FF 100%);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.connect-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.connect-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #2d3748;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.connect-link:last-child {
    border-bottom: none;
}

.connect-link:hover {
    color: #2b6cb0;
    padding-left: 8px;
}

.connect-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.connect-link:hover svg {
    transform: translate(4px, -4px);
}

.connect-image {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.connect-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (Large) */
@media (max-width: 1024px) {
    .action-section-heading {
        font-size: 40px;
    }

    .action-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .connect-heading {
        font-size: 36px;
    }

    .connect-card {
        padding: 50px;
        gap: 50px;
    }

    .connect-link {
        font-size: 15px;
    }
}

/* Tablet (Small) */
@media (max-width: 768px) {
    .action-section {
        padding: 60px 0;
    }

    .action-section-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .action-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .action-card {
        padding: 20px 12px;
    }

    .action-icon svg {
        width: 64px;
        height: 64px;
    }

    .action-card h3 {
        font-size: 14px;
        min-height: 36px;
    }

    .connect-section {
        padding: 50px 0 80px;
    }

    .connect-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .connect-card {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }

    .connect-links {
        order: 1;
    }

    .connect-image {
        order: 2;
    }

    .connect-link {
        font-size: 14px;
        padding: 20px 0;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .action-section {
        padding: 50px 0;
    }

    .action-section-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .action-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 320px;
    }

    .action-card {
        padding: 24px 16px;
    }

    .action-icon svg {
        width: 72px;
        height: 72px;
    }

    .action-card h3 {
        font-size: 15px;
        min-height: auto;
    }

    .connect-section {
        padding: 40px 0 60px;
    }

    .connect-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .connect-card {
        padding: 30px 24px;
        gap: 30px;
        border-radius: 20px;
    }

    .connect-link {
        font-size: 13px;
        padding: 18px 0;
    }

    .connect-link svg {
        width: 18px;
        height: 18px;
    }

    .connect-image img {
        border-radius: 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .action-section-heading {
        font-size: 24px;
    }

    .action-card h3 {
        font-size: 14px;
    }

    .connect-heading {
        font-size: 24px;
    }

    .connect-card {
        padding: 24px 20px;
    }

    .connect-link {
        font-size: 12px;
    }
}
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .about-hero-content,
    .solve-layout,
    .mission-wrapper,
    .connect-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .what-we-do-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-exist-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .board-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-layout {
        height: 700px;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 28px;
    }

    .about-hero {
        padding: 60px 0;
        min-height: 300px;
    }

    .about-hero-text h1 {
        font-size: 32px;
    }

    .video-badge-circle {
        position: static;
        margin: 0 auto 30px;
    }

    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid,
    .board-grid,
    .action-grid {
        grid-template-columns: 1fr;
    }

    .values-layout {
        height: auto;
        position: static;
    }

    .value-circle,
    .values-center {
        position: static;
        transform: none;
        margin: 20px auto;
    }

    .mission-wrapper {
        padding: 40px 30px;
    }

    .mission-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .about-hero-text h1 {
        font-size: 24px;
    }

    .section-heading {
        font-size: 24px;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
    }

    .mission-wrapper {
        padding: 30px 20px;
    }

    .connect-form-area h2 {
        font-size: 26px;
    }
}


/* ================================nw=========================================== */


 .connect-section {
            max-width: 960px;
            margin: 30px auto;
            background: linear-gradient(135deg, #e8f3ff 0%, #f0f4f8 100%);
            border-radius: 40px;
            padding: 60px;
            position: relative;
            overflow: hidden;
        }

        .connect-section h1 {
            font-size: 2rem !important;
            font-weight: 700;
            color: #000;
            margin-bottom: 50px;
        }

        .links-container {
            max-width: 550px;
        }

        .link-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 0;
            border-bottom: 1px solid #d0d0d0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .link-item:hover {
            padding-left: 10px;
        }

        .link-item h3 {
            font-size: 20px;
            font-weight: 600;
            color: #000;
            margin: 0;
        }

        .link-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .link-icon svg {
            width: 16px;
            height: 16px;
            stroke: #000;
            stroke-width: 2;
        }

        /* Decorative Elements */
        .cloud-image {
            position: absolute;
            top: 80px;
            right: 20px;
            width: 200px;
            height: auto;
            opacity: 1.5;
        }

        .leaf-image {
            position: absolute;
            bottom: 40px;
            right: 80px;
            width: 180px;
            height: auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .connect-section {
                padding: 40px 30px;
                border-radius: 30px;
            }

            .connect-section h1 {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .link-item h3 {
                font-size: 18px;
            }

            .cloud-image {
                width: 140px;
                right: 40px;
                top: 60px;
            }

            .leaf-image {
                width: 120px;
                right: 30px;
                bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .connect-section {
                padding: 30px 20px;
                border-radius: 25px;
            }

            .connect-section h1 {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .link-item {
                padding: 20px 0;
            }

            .link-item h3 {
                font-size: 16px;
                max-width: 250px;
            }

            .cloud-image {
                width: 100px;
                right: 20px;
                top: 40px;
            }

            .leaf-image {
                width: 90px;
                right: 15px;
                bottom: 20px;
            }
        }

h1 {
    font-size: 3rem !important;
}

h2 {
    font-size: 2rem !important;
}

/* p {
    font-size: 17px !important;
} */
 a{
    text-decoration: none;
 }
/* Board static layout — 4 or fewer items, no scroll */
.board-scroll-static {
    display: block;
    animation: none;
}

.board-scroll-static .board-track {
    flex-wrap: wrap;
    justify-content: center;
}

.board-scroll-static .board-card {
    width: 280px;
    min-width: 280px;
}

.board-scroll-static:hover {
    animation: none;
}

@media (max-width: 768px) {
    .board-scroll-static .board-card {
        width: calc(50% - 10px);
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .board-scroll-static .board-card {
        width: 100%;
    }
}

/* Mobile-only compact layout */
@media (max-width: 768px) {
    .what-we-do-section {
        padding: 24px 0 36px;
    }

    .what-we-do-section .container {
        padding: 0 14px;
    }

    .auto-scroll-wrapper {
        height: 340px;
        overflow: hidden;
        align-items: center;
        padding: 0 14px;
    }

    .auto-scroll-track {
        height: 100%;
        gap: 12px;
        animation: scroll-horizontal 42s linear infinite;
    }

    .card-column {
        height: 100%;
    }

    .card-column.single {
        justify-content: center;
    }

    .card-column.double {
        justify-content: space-between;
        gap: 14px;
    }

    .card-column.single .activity-scroll-card,
    .activity-scroll-card {
        width: 210px;
        height: 156px;
    }

    .activity-scroll-content h3 {
        font-size: 11px;
        line-height: 1.25;
    }

    .why-exist {
        padding: 34px 14px 28px;
    }

    .why-title {
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .why-subtitle {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.45;
    }

    .why-grid {
        gap: 14px;
    }

    .why-card {
        padding: 16px;
        gap: 14px;
    }

    .how-solve-section {
        padding: 30px 0 36px;
    }

    .mission-section {
        padding: 26px 0 24px;
    }

    .mission-section > .container > h2 {
        margin-bottom: 18px !important;
    }

    .mission-wrapper {
        width: 100%;
        padding: 26px 20px;
        border-radius: 18px;
    }

    .mission-content p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .mission-image {
        margin-top: 18px;
        height: 210px;
    }

    .values-section {
        padding: 24px 0 20px;
    }

    .value-section-heading {
        margin-bottom: 14px;
    }

    .values-layout {
        gap: 14px;
    }

    .values-center {
        margin-bottom: 6px;
    }

    .section-headinghow {
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .section-subheadinghow {
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.55;
    }

    .solve-interactive-layout {
        gap: 18px;
    }

    .solve-buttons {
        gap: 10px;
    }

    .solve-btn {
        padding: 14px 16px;
    }

    .board-section {
        padding: 34px 0;
    }

    .board-section-heading {
        margin-bottom: 16px;
    }

    .board-scroll-container {
        padding: 8px 0;
    }

    .board-card {
        min-height: 240px;
        padding: 22px 16px;
    }

    .board-image {
        margin-bottom: 12px;
    }

    .board-info h3 {
        margin-bottom: 4px;
    }

    .board-title {
        margin-bottom: 0;
        line-height: 1.35;
    }

    .board-scroll-static .board-card {
        min-height: 0;
    }

    .action-section {
        padding: 30px 0 36px;
    }

    .action-section-heading {
        margin-bottom: 14px;
    }

    .action-grid {
        gap: 8px;
        max-width: 100%;
        padding: 0 14px;
    }

    .action-card {
        padding: 14px 10px;
    }

    .action-icon {
        margin-bottom: 10px;
    }

    .action-icon svg {
        width: 56px;
        height: 56px;
    }

    .action-card h3 {
        min-height: auto;
        font-size: 13px;
        line-height: 1.25;
    }

    .connect-section {
        margin: 14px auto 8px;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .connect-section h1 {
        margin-bottom: 14px;
    }

    .link-item {
        padding: 14px 0;
    }

    .about-page > br {
        display: none;
    }
}

@media (max-width: 480px) {
    .what-we-do-section {
        padding: 18px 0 28px;
    }

    .auto-scroll-wrapper {
        height: 300px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .card-column.single .activity-scroll-card,
    .activity-scroll-card {
        width: 184px;
        height: 140px;
    }

    .activity-scroll-content h3 {
        font-size: 10px;
        line-height: 1.2;
    }

    .why-exist {
        padding: 26px 10px 22px;
    }

    .why-subtitle {
        margin-bottom: 16px;
    }

    .why-grid {
        gap: 12px;
    }

    .how-solve-section {
        padding: 24px 0 30px;
    }

    .mission-section {
        padding: 20px 0 18px;
    }

    .mission-section > .container > h2 {
        margin-bottom: 14px !important;
    }

    .mission-wrapper {
        padding: 20px 14px;
        border-radius: 14px;
    }

    .mission-content p {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 10px;
    }

    .mission-image {
        margin-top: 14px;
        height: 170px;
    }

    .values-section {
        padding: 18px 0 16px;
    }

    .value-section-heading {
        margin-bottom: 10px;
    }

    .values-center {
        margin-bottom: 4px;
    }

    .section-subheadinghow {
        margin-bottom: 18px;
    }

    .board-section {
        padding: 28px 0;
    }

    .board-card {
        padding: 18px 14px;
        min-height: 0;
    }

    .action-section {
        padding: 24px 0 28px;
    }

    .action-grid {
        gap: 4px;
        padding: 0 10px;
    }

    .connect-section {
        margin: 10px auto 4px;
        padding: 16px 12px;
        border-radius: 14px;
    }

    .connect-section h1 {
        margin-bottom: 10px;
    }

    .link-item {
        padding: 10px 0;
    }
}
