@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
CSS CUSTOM PROPERTIES (Orientation Page Colors)
============================================= */
:root {
    --primary-color: #2c4c9c;
    --primary-hover: #1a3a7a;
    --primary-light: rgba(44, 76, 156, 0.08);
    --primary-dark: #333333;
    --secondary-color: #333333;
    --text-color: #333;
    --text-light: #666;
    --white-color: #ffffff;
    --background-light: #fafbfc;
    --background-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2c4c9c 0%, #4a6bc2 100%);
    --gradient-hero: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    --gradient-section: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    --card-shadow: 0 8px 30px rgba(44, 76, 156, 0.08);
    --hover-shadow: 0 15px 40px rgba(44, 76, 156, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --section-spacing: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    overflow-x: hidden; /* Global horizontal clip for floating elements */
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--background-light);
    color: var(--text-color);
    line-height: 1.6;
    overscroll-behavior-y: none; /* Prevent bounce gap */
    position: relative; /* Ensure body is strictly positioned */
}

/* ============================================
NAVBAR COMPONENT
============================================= */
.navbar {
    background: var(--white-color);
    padding: 12px 48px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 76, 156, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
}

.nav-logo {
    height: 45px;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
HERO SECTION (Orientation Style)
============================================= */
/* Scoped Container for Mission/Vision to avoid global layout issues */
.mission-vision-container .container {
    margin-top: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 30px; /* Optional: smooth corners if duplicates background */
    padding: 30px; /* Ensure content isn't flush */
}

.header {
    position: relative;
    padding: 80px 0 60px;
    background: var(--gradient-hero);
    /* overflow: hidden; Removed to allow floating shapes to cross sections */
    box-shadow: 0 20px 40px rgba(44, 76, 156, 0.08);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Shapes - Orientation Style */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    /* overflow: hidden; Removed to allow shapes to float out */
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    background: var(--primary-color);
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    animation: morphShape 20s ease-in-out infinite;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: morphShape 25s ease-in-out infinite reverse;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.08), rgba(44, 76, 156, 0.12));
    opacity: 0.6;
    border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
}

.float-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation: floatShape 15s ease-in-out infinite;
}

.float-2 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    right: 15%;
    animation: floatShape 18s ease-in-out infinite reverse;
    animation-delay: 2s;
}

/* Hero Content */
.team-header {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 25px;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(44, 76, 156, 0.2);
}

.team-header h1 {
    color: var(--text-color);
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.team-header h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.team-header h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: lineGrow 2s ease-in-out infinite;
}

.team-header p {
    color: var(--secondary-color);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* ============================================
TEAM SECTIONS
============================================= */
.section-container {
    margin: var(--section-spacing) 0;
    position: relative;
}

/* Remove margin from last section to touch footer */
.section-container:last-of-type {
    margin-bottom: 0;
}

.section-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    max-width: 1200px; /* Match team-grid max-width */
    margin: 0 auto 50px;
    padding: 0 20px; /* Match team-grid padding */
}

.section-title {
    color: var(--primary-dark);
    font-size: 2.2rem;
    font-weight: 700;
    padding-right: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.section-title-container::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    margin-left: 20px;
    max-width: calc(100% - 200px);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Fixed min width, flexible max */
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    /* Remove justify-content: center */
}

/* Team Card - Enhanced */
.team-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    animation: slideInUp 0.8s ease-out backwards;
    border: 1px solid rgba(44, 76, 156, 0.1);
    width: 100%;
    max-width: 350px;
    transform-origin: center bottom;
}

/* Staggered animations */
/* Staggered animations */
.team-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card:nth-child(3) {
    animation-delay: 0.3s;
}

.team-card:nth-child(4) {
    animation-delay: 0.4s;
}

.team-card:nth-child(5) {
    animation-delay: 0.5s;
}

.team-card:nth-child(6) {
    animation-delay: 0.6s;
}

.team-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--hover-shadow);
    border-color: rgba(44, 76, 156, 0.2);
}

/* Card Image with Shine Effect */
.card-img {
    position: relative;
    width: calc(100% - 40px);
    height: 300px; /* Increased from 220px for better visibility */
    overflow: hidden;
    margin: 20px 20px 0;
    border-radius: 12px;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

.card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.8s ease;
}

.team-card:hover .card-img::before {
    left: 150%;
}

/* Coordinator section animations */
.section-container:nth-of-type(2) .team-card:nth-child(1) .card-img::before {
    animation: shine-profile 4s infinite;
    animation-delay: 0s;
}

.section-container:nth-of-type(2) .team-card:nth-child(2) .card-img::before {
    animation: shine-profile 4s infinite;
    animation-delay: 1.3s;
}

.section-container:nth-of-type(2) .team-card:nth-child(3) .card-img::before {
    animation: shine-profile 4s infinite;
    animation-delay: 2.6s;
}

/* Developers section animations */
.section-container:nth-of-type(3) .team-card:nth-child(1) .card-img::before {
    animation: shine-profile 4s infinite;
    animation-delay: 4s;
}

.section-container:nth-of-type(3) .team-card:nth-child(2) .card-img::before {
    animation: shine-profile 4s infinite;
    animation-delay: 5.3s;
}

.section-container:nth-of-type(3) .team-card:nth-child(3) .card-img::before {
    animation: shine-profile 4s infinite;
    animation-delay: 6.6s;
}

@keyframes shine-profile {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(0.2);
}

.team-card:hover .card-img img {
    transform: scale(1.1);
    filter: grayscale(0);
}

/* Card Content */
.card-content {
    padding: 15px;
    position: relative;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.team-card:hover .card-content {
    transform: translateY(-3px);
}

.job-title {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    transform: translateX(-10px);
    opacity: 0;
    animation: fadeInRight 0.6s ease-out 0.4s forwards;
}

.job-title::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    transition: width 0.6s ease;
}

.team-card:hover .job-title::after {
    width: 100%;
}

.team-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    transition: var(--transition);
    transform: translateY(10px);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.team-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(0);
}

/* SWOT Card Styles (New Compact Modern Style) */
.swot-card {
    height: 100%;
    padding: 25px 20px;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 76, 156, 0.08);
    position: relative;
    overflow: hidden;
}

.swot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.swot-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.swot-card.strength .swot-icon { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.swot-card.weakness .swot-icon { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.swot-card.opportunity .swot-icon { background: rgba(23, 162, 184, 0.1); color: #17a2b8; }
.swot-card.threat .swot-icon { background: rgba(220, 53, 69, 0.1); color: #dc3545; }

.swot-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.swot-list li {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
    color: var(--text-light) !important;
    line-height: 1.5;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

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

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.team-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: justify; /* Justified text */
    text-justify: inter-word; /* Better word spacing */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    transform: translateY(10px);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.team-card:hover .social-icons {
    animation: floatCard 3s ease-in-out infinite;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(44, 76, 156, 0.1);
    transform: scale(0.9);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(44, 76, 156, 0.3);
}

/* ============================================
FOOTER (Orientation Style)
============================================= */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 70px 0 30px;
    color: var(--white-color);
    position: relative;
    /* overflow: hidden; Removed to allow footer circles to extend */
    border-radius: 20px 20px 0 0;
    margin-top: 0; /* Removed 80px margin to fix blank space */
}

.footer::before {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.footer::after {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--white-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--white-color);
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white-color);
    transform: translateX(5px);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 45px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
ANIMATIONS (Orientation Style)
============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes morphShape {
    0%, 100% {
        border-radius: 50%;
        transform: scale(1);
    }
    33% {
        border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
        transform: scale(1.05);
    }
    66% {
        border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
        transform: scale(0.95);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes lineGrow {
    0%, 100% {
        transform: scaleX(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* ============================================
RESPONSIVE DESIGN
============================================= */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .team-header h1 {
        font-size: 2.2rem;
    }

    .team-header p {
        font-size: 1.1rem;
    }

    .section-title {
        color: var(--primary-dark);
        font-size: 2.2rem;
        font-weight: 700;
        padding-right: 20px;
        position: relative;
        z-index: 1;
        animation: slideInLeft 0.8s ease-out;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        justify-content: center; /* center the grid items */
    }

    .card-img {
        height: 220px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 80px 0 60px;
        border-radius: 15px;
    }

    .team-header h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .card-content {
        padding: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* --- Button Styles --- */
a.btn-hero {
    display: inline-block;
    background: #2C4C9C;
    color: #fff;
    padding: 14px 36px;
    border-radius: 5px;
    /* font-weight: 600; */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
    font-family: 'Inter';
}

a.btn-hero:hover {
    background: #0c58c0 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(216, 235, 214, 0.4);
    transform: translateY(-3px);
}

a.btn-hero-filled {
    display: inline-block;
    background: #fff;
    color: #2C4C9C;
    padding: 14px 36px;
    border-radius: 5px;
    /* font-weight: 600; */
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-family: 'Inter';
}

a.btn-hero-filled:hover {
    background: #0c58c0 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Mission & Vision Section - Sequential Layout */
.mission-vision-container {
    position: relative;
    /* overflow: hidden; Removed to allow dots to float out */
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 50px 0 40px;
    display: flex;
    align-items: center;
}

/* Background Animation */
.mv-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3; /* Increased to 3 to float over Values section (z-index 2) */
    /* overflow: hidden; Removed */
}

.mv-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    background: var(--primary-color);
}

.mv-shape-1 {
    width: 450px;
    height: 450px;
    top: -120px;
    right: -120px;
    animation: morphShape 20s ease-in-out infinite;
}

.mv-shape-2 {
    width: 380px;
    height: 380px;
    bottom: -90px;
    left: -90px;
    animation: morphShape 25s ease-in-out infinite reverse;
}

/* Floating Elements */
.mv-floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.08), rgba(44, 76, 156, 0.12));
    opacity: 0.6;
    border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
}

.mv-float-1 {
    width: 110px;
    height: 110px;
    top: 20%;
    left: 8%;
    animation: floatShape 16s ease-in-out infinite;
}

.mv-float-2 {
    width: 85px;
    height: 85px;
    bottom: 25%;
    right: 10%;
    animation: floatShape 19s ease-in-out infinite reverse;
    animation-delay: 2s;
}

/* Floating Shapes */
.mv-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3; /* Increased to 3 */
    pointer-events: none;
}

.mv-shape-float {
    position: absolute;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.08), rgba(44, 76, 156, 0.12));
    opacity: 0.6;
}

.mv-shape-3 {
    width: 95px;
    height: 95px;
    border-radius: 40% 60% 60% 40% / 50% 60% 40% 50%;
    top: 65%;
    right: 12%;
    animation: floatShape 21s ease-in-out infinite;
    animation-delay: 1s;
}

.mv-shape-4 {
    width: 70px;
    height: 70px;
    border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%;
    bottom: 60%;
    left: 10%;
    animation: floatShape 23s ease-in-out infinite reverse;
    animation-delay: 3s;
}

/* Dot Decoration */
.mv-dot-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3; /* Increased to 3 */
    pointer-events: none;
}

.mv-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2c4c9c;
    border-radius: 50%;
    opacity: 0.15;
    animation: dotFloat 8s ease-in-out infinite;
}

.mv-dot:nth-child(1) {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.mv-dot:nth-child(2) {
    top: 45%;
    right: 20%;
    animation-delay: 2s;
}

.mv-dot:nth-child(3) {
    bottom: 35%;
    left: 18%;
    animation-delay: 4s;
}

.mv-dot:nth-child(4) {
    bottom: 50%;
    right: 25%;
    animation-delay: 6s;
}

.mv-dot:nth-child(5) {
    top: 70%;
    left: 45%;
    animation-delay: 8s;
}

/* Corner Accents */
.mv-corner-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 1;
    pointer-events: none;
}

.mv-corner-top-left {
    top: 40px;
    left: 40px;
    border-top: 2px solid rgba(44, 76, 156, 0.15);
    border-left: 2px solid rgba(44, 76, 156, 0.15);
    animation: expandCorner 3s ease-in-out infinite;
}

.mv-corner-bottom-right {
    bottom: 40px;
    right: 40px;
    border-bottom: 2px solid rgba(44, 76, 156, 0.15);
    border-right: 2px solid rgba(44, 76, 156, 0.15);
    animation: expandCorner 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Mission & Vision Content */
.mv-content {
    position: relative;
    z-index: 2;
    text-align: center;
    /*max-width: 1200px;*/
    margin: 0 auto;
}

.mv-wave-decoration {
    width: 180px;
    opacity: 0.15;
    margin: 0 auto 20px;
    display: block;
}

.mv-badge-wrapper {
    margin-bottom: 25px;
}

.mv-hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 25px;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(44, 76, 156, 0.2);
}

.mv-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.mv-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.mv-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: lineGrow 2s ease-in-out infinite;
}

.mission-section,
.vision-section {
    margin-bottom: 40px; /* Reduced from 60px */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white-color);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(44, 76, 156, 0.3);
    transition: transform 0.3s ease;
}

.section-header:hover .header-icon {
    transform: scale(1.1) rotate(5deg);
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.header-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.mission-card {
    position: relative;
    background: var(--white-color);
    border-radius: 20px;
    padding: 25px 20px; /* Kept compact padding */
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 76, 156, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(44, 76, 156, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.mission-decoration {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.05), rgba(44, 76, 156, 0.02));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

/* Vision Section */
.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-statement-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 25px;
    padding: 30px 20px;
    color: var(--white-color);
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(44, 76, 156, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.vision-quote-mark {
    position: absolute;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.2);
    font-family: serif;
    line-height: 1;
}

.vision-quote-mark:first-child {
    top: 20px;
    left: 30px;
}

.vision-quote-mark:last-child {
    bottom: 20px;
    right: 30px;
}

.vision-statement {
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Vision Pillars */
.vision-pillars {
    text-align: center;
}

.vision-pillars h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pillar-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 76, 156, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.pillar-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.pillar-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 50%;
        transform: scale(1);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1.05);
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: scale(1.1);
    }
    75% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
        transform: scale(1.05);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

@keyframes dotFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes expandCorner {
    0%, 100% {
        width: 80px;
        height: 80px;
    }
    50% {
        width: 90px;
        height: 90px;
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(44, 76, 156, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(44, 76, 156, 0.3);
    }
}

@keyframes lineGrow {
    0%, 100% {
        transform: scaleX(0);
        opacity: 0;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Staggered animations based on data-delay */
.mission-card[data-delay="0.1"] {
    animation-delay: 0.1s;
}

.mission-card[data-delay="0.2"] {
    animation-delay: 0.2s;
}

.mission-card[data-delay="0.3"] {
    animation-delay: 0.3s;
}

.mission-card[data-delay="0.4"] {
    animation-delay: 0.4s;
}

.pillar-card[data-delay="0.1"] {
    animation-delay: 0.5s;
}

.pillar-card[data-delay="0.2"] {
    animation-delay: 0.6s;
}

.pillar-card[data-delay="0.3"] {
    animation-delay: 0.7s;
}

.pillar-card[data-delay="0.4"] {
    animation-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .mission-vision-container {
        padding: 40px 0 30px;
    }

    .mv-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .mission-section,
    .vision-section {
        margin-bottom: 70px;
    }

    .mission-card {
        padding: 20px 15px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .vision-statement-card {
        padding: 40px 30px;
    }

    .vision-statement {
        font-size: 1.2rem;
    }

    .vision-quote-mark {
        font-size: 4rem;
    }

    .vision-quote-mark:first-child {
        top: 10px;
        left: 20px;
    }

    .vision-quote-mark:last-child {
        bottom: 10px;
        right: 20px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-floating-shapes,
    .mv-dot-decoration {
        display: none;
    }

    .mv-corner-accent {
        width: 60px;
        height: 60px;
    }

    .mv-corner-top-left {
        top: 20px;
        left: 20px;
    }

    .mv-corner-bottom-right {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .mv-title {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .header-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .mission-card {
        padding: 25px 20px;
    }

    .mission-card h3 {
        font-size: 1.3rem;
    }

    .vision-statement {
        font-size: 1.1rem;
    }

    .vision-statement-card {
        padding: 30px 25px;
    }
}

/* Our Values Section Styles */
.values-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
    z-index: 2;
    text-align: center;
    /*max-width: 1200px;*/
    /*margin: 0 auto;*/
    padding: 30px;
}

.values-wave-decoration {
    width: 180px;
    opacity: 0.15;
    margin: 0 auto 20px;
    display: block;
}

.values-badge-wrapper {
    margin-bottom: 25px;
}

.values-hero-badge {
    display: inline-block;
    padding: 12px 18px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(44, 76, 156, 0.2);
}

.values-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.values-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.values-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: lineGrow 2s ease-in-out infinite;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    position: relative;
    background: var(--white-color);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 76, 156, 0.1);
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    /*max-width: 450px; !* Add fixed max width *!*/
    width: 100%; /* Ensure it doesn't exceed container */
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(44, 76, 156, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white-color);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(44, 76, 156, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.value-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0 0 25px 0;
}

.value-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.value-feature {
    background: rgba(44, 76, 156, 0.08);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.value-card:hover .value-feature {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.value-decoration {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(44, 76, 156, 0.05), rgba(44, 76, 156, 0.02));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
}

/* Values Principles */
.values-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.principle-item {
    background: var(--white-color);
    border-radius: 15px;
    padding: 20px 15px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 76, 156, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.principle-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.principle-item:hover .principle-icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.principle-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.principle-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Staggered Animations */
.value-card[data-delay="0.1"] {
    animation-delay: 0.1s;
}

.value-card[data-delay="0.2"] {
    animation-delay: 0.2s;
}

.principle-item[data-delay="0.3"] {
    animation-delay: 0.3s;
}

.principle-item[data-delay="0.4"] {
    animation-delay: 0.4s;
}

.principle-item[data-delay="0.5"] {
    animation-delay: 0.5s;
}

.principle-item[data-delay="0.6"] {
    animation-delay: 0.6s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes lineGrow {
    0%, 100% {
        transform: scaleX(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .values-principles {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .values-content {
        padding: 60px 20px;
    }

    .values-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .value-card {
        padding: 30px 25px;
    }

    .value-content h3 {
        font-size: 1.3rem;
    }

    .values-principles {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .principle-item {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .values-title {
        font-size: 1.8rem;
    }

    .value-card {
        padding: 25px 20px;
    }

    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .value-features {
        justify-content: center;
    }

    .value-feature {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Compact Milestone Section Styles */
.milestone-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.milestone-wave-decoration {
    width: 150px;
    opacity: 0.15;
    margin: 0 auto 15px;
    display: block;
}

.milestone-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(44, 76, 156, 0.2);
}

.milestone-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.milestone-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.milestone-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: lineGrow 2s ease-in-out infinite;
}

/* Compact Timeline Styles */
.milestone-timeline {
    margin: 0 auto 60px;
    padding: 20px 0;
    overflow: hidden; /* Hide overflow for marquee */
    white-space: nowrap;
    position: relative;
    display: block; /* Ensure block formatting context */
}

/* Marquee Track */
.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 25s linear infinite; /* Smooth continuous scroll */
    will-change: transform; /* Hint for hardware acceleration */
}

/* Pause on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Marquee Keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move by 50% because we doubled the content */
    }
}

/* Hide scrollbar completely */
.milestone-timeline::-webkit-scrollbar {
    display: none;
}

/* Timeline Item - Horizontal Card */
.timeline-item {
    flex: 0 0 auto; /* Prevent shrinking/growing */
    width: 320px; /* Output fixed width */
    min-width: 320px;
    white-space: normal; /* Allow text inside card to wrap */
    background: var(--white-color);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 76, 156, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    margin: 0; /* Reset margins */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    clear: none; /* Reset clear */
}

/* Reset nth-child specific styles from previous vertical layout */
.timeline-item:nth-child(even),
.timeline-item:nth-child(odd) {
    margin: 0;
    text-align: left;
    padding: 25px 20px;
}

/* Hide Central Line and Markers */
.milestone-timeline::before {
    display: none;
}

.timeline-marker {
    display: none;
}

/* Hover effect for cards */
.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(44, 76, 156, 0.2);
}

.timeline-content {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    text-align: left;
}

.timeline-item:hover .timeline-content {
    transform: none;
    box-shadow: none;
}


.timeline-content {
    text-align: left;
    flex: 1;
    background: var(--white-color);
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(44, 76, 156, 0.08);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(44, 76, 156, 0.12);
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(44, 76, 156, 0.25);
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.timeline-achievements {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
}

.achievement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(44, 76, 156, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.achievement:hover {
    background: rgba(44, 76, 156, 0.06);
    transform: translateX(3px);
}

.achievement i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 1px;
    flex-shrink: 0;
    width: 14px;
}

.achievement span {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Timeline Status */
.timeline-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.timeline-status.current {
    background: rgba(76, 175, 80, 0.08);
    color: #2c4c9c;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.timeline-status.upcoming {
    background: rgba(255, 152, 0, 0.08);
    color: #2c4c9c;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.timeline-status.future {
    background: rgba(33, 150, 243, 0.08);
    color: #2c4c9c;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.timeline-status.vision {
    background: rgba(156, 39, 176, 0.08);
    color: #9C27B0;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

/* Compact Statistics */
.milestone-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    background: var(--white-color);
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 76, 156, 0.06);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.6s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.7s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.8s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.9s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(44, 76, 156, 0.1);
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.05);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

@keyframes lineGrow {
    0%, 100% {
        transform: scaleX(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .milestone-content {
        padding: 40px 15px;
    }

    .milestone-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }

    .timeline-marker {
        margin-right: 0;
        margin-bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .timeline-line {
        left: 50%;
        top: 18px;
        height: calc(100% + 15px);
    }

/* Reset mobile stacking since we want horizontal scroll everywhere */
    .timeline-item {
        width: 280px; /* Slightly smaller on mobile */
        min-width: 280px;
        margin: 0 !important;
        padding: 20px 15px !important;
        display: flex;
        margin-bottom: 0;
    }

    .timeline-content {
        text-align: left;
        padding: 0;
    }

    .timeline-achievements {
        align-items: center;
    }

    .achievement {
        text-align: left;
        max-width: 280px;
    }

    .milestone-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 18px 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .milestone-title {
        font-size: 1.6rem;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .achievement {
        padding: 6px 10px;
    }

    .achievement span {
        font-size: 0.8rem;
    }

    .milestone-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 15px 12px;
    }

    .stat-number {
        font-size: 1.4rem;
    }
}

/* SWOT Cards Styling */
.swot-card {
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(44, 76, 156, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid transparent;
    max-width: 280px;
    margin: 0 auto;
}

.swot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 76, 156, 0.15);
}

/* SWOT Card Types */
.swot-card.strength {
    border-top-color: #2c4c9c;
}

.swot-card.weakness {
    border-top-color: #2c4c9c;
}

.swot-card.opportunity {
    border-top-color: #2c4c9c;
}

.swot-card.threat {
    border-top-color: #2c4c9c;
}

.swot-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

/* SWOT Analysis Responsive Centering */
@media (max-width: 1200px) {
    .swot-card {
        max-width: 260px;
    }
}

@media (max-width: 992px) {
    .swot-card {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .swot-card {
        max-width: 280px;
    }
}

/* Unified SWOT Icon Style */
.strength .swot-icon,
.weakness .swot-icon,
.opportunity .swot-icon,
.threat .swot-icon {
    background: var(--primary-color); /* Original Solid Blue */
    color: var(--white-color);        /* Original White Icon */
}

/* Original Hover Scale Effect */
.swot-card:hover .swot-icon {
    transform: scale(1.1);
}



.swot-card .swot-content {
    text-align: left;
}

.swot-card .swot-list {
    padding-left: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

/* SWOT List Styling */

.swot-list li {
    font-size: 0.85rem;
    color: #5a6c8f;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
    line-height: 1.4;
    text-align: left;
}

.swot-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .swot-card {
        padding: 20px 15px !important;
    }

    .swot-icon {
        width: 50px;
        height: 50px;
    }

    .swot-icon i {
        font-size: 1.5rem !important;
    }

    .swot-list li {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .swot-card {
        margin-bottom: 15px;
    }
}

/* Team Section Wave Decoration */
.team-wave-decoration {
    width: 150px;
    opacity: 0.15;
    margin: 0 auto 15px;
    display: block;
}

/* Team Section Badge */
.team-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(44, 76, 156, 0.2);
    text-align: center;
}

/* Team Section Title */
.team-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    text-align: center;
}

.team-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.team-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: lineGrow 2s ease-in-out infinite;
}

/* Team Badge Wrapper - Center Alignment */
.team-badge-wrapper {
    text-align: center;
    /*margin-bottom: 25px;*/
}

.team{
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(250, 251, 252) 100%);
}
