/* Global Styles */
:root {
    --primary-blue: #0056b3;
    --dark-blue: #0a192f;
    --accent-gold: #f2c94c;
    --text-white: #ffffff;
    --card-bg-blue: rgba(255, 255, 255, 0.1);
    --btn-primary-bg: #0f172a;
    --btn-secondary-bg: linear-gradient(90deg, #2563eb, #1d4ed8);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

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

/* Top Bar */
.top-bar {
    background-color: #ffffff;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #555;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    flex: 0 0 auto;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #1e40af;
}

.contact-info i {
    color: #1e40af;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 50%, #1e40af 100%);
    color: var(--text-white);
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.hero-person-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 20px;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.hero-content {
    flex: 1.2;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(93.36deg, #FFF9E6 2.89%, #F4C24E 78.52%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtext {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e2e8f0;
}

.hero-subtext strong {
    color: #fff;
    font-weight: 600;
}

/* Stats Cards */
.stats-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 25px;
    text-align: center;
    min-width: 120px;
    flex: 1;
}

.stat-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    color: #fff;
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-footer-text {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* Logo Section */
.logo-section {
    padding: 30px 0;
    background: #fff;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.logo-item img {
    max-width: 100px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Impact Carousel Section */
.impact-carousel-section {
    padding: 40px 0 50px;
    background: #f1f5f9;
    overflow: hidden;
}

.carousel-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.carousel-arrow {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #1e40af;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: #1e40af;
    color: #fff;
    border-color: #1e40af;
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.impact-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.impact-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.impact-card {
    background: linear-gradient(135deg, #192242 0%, #31AEDA 100%);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: max-content;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    display: inline-block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: #ec4899;
    width: 12px;
    height: 12px;
}

/* Bio Section */
.bio-section {
    position: relative;
    padding: 60px 0;
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Gray overlay */
.bio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(240, 240, 245, 0.774);
    /* Light gray overlay with transparency */
    z-index: 1;
}

.bio-section .container {
    position: relative;
    z-index: 2;
}

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

.bio-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 15px;
}

.bio-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* Each card spans 2 columns in a 6-column grid (shows 3 per row) */
.bio-card {
    grid-column: span 2;
}

/* Last 2 cards - card 7 starts at column 2, card 8 starts at column 4 */
.bio-card:nth-child(7) {
    grid-column: 2 / 4;
    /* Spans columns 2-3 */
}

.bio-card:nth-child(8) {
    grid-column: 4 / 6;
    /* Spans columns 4-5 */
}

.bio-card {
    background: rgba(49, 88, 165, 1);
    color: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    border-image-source: linear-gradient(180deg, #152652 0%, #2F55B8 100%);
    border-image-slice: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.bio-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Flagship Innovations Section */
.flagship-section {
    padding: 60px 0;
    background: #fff;
}

.flagship-section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 35px;
    color: #1e293b;
}

.flagship-section .carousel-wrapper {
    max-width: 100%;
    padding: 0;
}

.flagship-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.flagship-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.flagship-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.flagship-text {
    flex: 1;
}

.flagship-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.flagship-text ul {
    list-style: none;
    padding: 0;
}

.flagship-text ul li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #334155;
}

.flagship-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    color: #3b82f6;
    line-height: 1;
}

.flagship-image {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flagship-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    max-height: 280px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.flagship-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

/* National & Global Recognition Section */
.recognition-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 50%, #1e40af 100%);
    color: #fff;
}

.recognition-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.recognition-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.recognition-text {
    flex: 1;
}

.recognition-text ul {
    list-style: none;
    padding: 0;
}

.recognition-text ul li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.recognition-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.recognition-image {
    flex: 1;
}

.recognition-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Why Nations Choose Our Solutions Section */
.solutions-section {
    padding: 80px 0;
    background: #fff;
}

.solutions-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1e293b;
}

.solutions-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solutions-image {
    flex: 1;
}

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

.solutions-text {
    flex: 1;
}

.solutions-text ul {
    list-style: none;
    padding: 0;
}

.solutions-text ul li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
}

.solutions-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Testimonials Section - Same style as Impact Carousel */
.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.testimonials-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    white-space: normal;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 280px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

/* Testimonials CTA Button */
.testimonials-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-case-study {
    background: #00C724;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-case-study:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
}

/* Holistic & Spiritual Identity Section */
.holistic-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.holistic-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.holistic-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: #64748b;
    margin-bottom: 40px;
}

.holistic-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto 30px;
}

.holistic-list li {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 15px;
    line-height: 1.6;
}

.holistic-note {
    font-size: 1rem;
    font-style: italic;
    color: #64748b;
    margin-top: 30px;
}

/* Partnership Section */
.partnership-section {
    padding: 60px 0 160px 0;
    background: #D5F2FF;
    text-align: center;
}

.partnership-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}

.partnership-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.partnership-list {
    list-style: none;
    padding: 0;
    max-width: 1080px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.partnership-list li {
    font-size: 1.05rem;
    position: relative;
    padding-left: 20px;
    width: calc(25% - 10px);
    text-align: left;
}

.partnership-list li:nth-child(n+5) {
    width: calc(25% - 10px);
}

.partnership-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: bold;
}

.partnership-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-partnership {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-partnership:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    margin-top: -180px;
}

.form-container {
    background: #1e40af;
    border-radius: 24px;

    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input {
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.contact form input::placeholder {
    color: #94a3b8;
}

.btn-submit {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    transition: transform 0.3s ease;
    margin: 10px auto 0;
    max-width: 200px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #1e40af 100%);
    color: #fff;
    text-align: center;
}

.footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.social-icons a {
    color: #fff;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: var(--accent-gold);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 30px;
    line-height: 1.6;
}

/* Modal Popup Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 10000;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-content .form-container {
    margin: 0;
    border-radius: 20px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .top-bar {
        padding: 15px 0;
        font-size: 0.8rem;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .header-logo {
        height: 40px;
        flex-shrink: 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-end;
        text-align: right;
    }

    .contact-info span {
        margin: 0;
        font-size: 0.75rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-image-wrapper {
        width: 100%;
        max-width: 280px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    /* Stats Cards */
    .stats-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .stats-cards::-webkit-scrollbar {
        display: none;
    }

    .stat-card {
        min-width: 100px;
        flex: 1;
        padding: 15px 10px;
    }

    .stat-card h3 {
        font-size: 1.4rem;
    }

    .stat-card p {
        font-size: 0.75rem;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 14px;
    }

    /* Logo Section */
    .logo-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .logo-item {
        flex: 0 0 auto;
    }

    .logo-item img {
        max-width: 50px;
        height: auto;
    }

    /* Impact Carousel Mobile */
    .impact-carousel-section {
        padding: 30px 0 40px;
    }

    .carousel-wrapper {
        padding: 0 5px;
        gap: 5px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .impact-track {
        gap: 15px;
    }

    .impact-card {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .carousel-dots {
        margin-top: 20px;
    }

    /* Bio Section Mobile */
    .bio-section {
        padding: 50px 0;
    }

    .bio-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .bio-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns = 2 cards per row when each spans 2 */
        gap: 15px;
        margin-bottom: 30px;
    }

    /* All cards span 2 columns in mobile grid */
    .bio-card {
        grid-column: span 2 !important;
        /* Force 2-column span */
        padding: 25px 15px;
        height: 200px;
        /* Fixed height */
        min-height: unset;
    }

    .bio-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Flagship Section Mobile */
    .flagship-section {
        padding: 30px 0;
    }

    .flagship-section h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .flagship-section .carousel-wrapper {
        padding: 0 40px;
        position: relative;
    }

    .flagship-section .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        position: absolute;
        z-index: 10;
        margin: 0;
    }

    .flagship-section .carousel-arrow-left {
        left: 0;
    }

    .flagship-section .carousel-arrow-right {
        right: 0;
    }

    .flagship-card {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
        border-radius: 12px;
        margin: 0;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    /* Image first on mobile */
    .flagship-image {
        order: 1;
        flex: 0 0 auto;
        width: 100%;
        justify-content: center;
    }

    .flagship-text {
        order: 2;
    }

    .flagship-text h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
        line-height: 1.25;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .flagship-text ul {
        margin: 0;
    }

    .flagship-text ul li {
        font-size: 0.75rem;
        margin-bottom: 4px;
        padding-left: 15px;
        line-height: 1.3;
        word-wrap: break-word;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .flagship-text ul li::before {
        font-size: 1rem;
    }

    .flagship-image img {
        max-width: 80%;
        max-height: 160px;
        width: auto;
        margin: 0 auto;
        display: block;
    }

    .flagship-dots {
        margin-top: 15px;
    }

    /* Recognition Section Mobile */
    .recognition-section {
        padding: 50px 0;
    }

    .recognition-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .recognition-content {
        flex-direction: column;
        gap: 30px;
    }

    /* Order: image first, then text */
    .recognition-image {
        order: 1;
    }

    .recognition-text {
        order: 2;
    }

    .recognition-text ul li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    /* Solutions Section Mobile */
    .solutions-section {
        padding: 50px 0;
    }

    .solutions-section h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .solutions-content {
        flex-direction: column;
        gap: 30px;
    }

    /* Order: heading, image, text */
    .solutions-image {
        order: 1;
    }

    .solutions-text {
        order: 2;
    }

    .solutions-text ul li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .testimonials-track {
        gap: 15px;
    }

    .testimonial-card {
        padding: 18px 25px;
        font-size: 0.85rem;
        max-width: 280px;
    }

    .btn-case-study {
        width: 100%;
        max-width: 350px;
        padding: 14px 30px;
        font-size: 1rem;
    }

    /* Holistic Section Mobile */
    .holistic-section {
        padding: 50px 0;
    }

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

    .holistic-tagline {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .holistic-list li {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .holistic-note {
        font-size: 0.95rem;
    }

    /* Partnership Section Mobile */
    .partnership-section {
        padding: 50px 0 200px 0;
    }

    .partnership-section h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .partnership-subtitle {
        font-size: 1.1rem;
    }

    .partnership-list {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .partnership-list li {
        width: 100%;
        max-width: 300px;
    }

    .partnership-list li:nth-child(n+5) {
        width: 100%;
        max-width: 300px;
    }

    .partnership-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-partnership {
        width: 100%;
        max-width: 350px;
    }

    /* Contact Form Mobile */
    .contact-form-section {
        padding: 40px 0;
    }

    .form-container {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .form-container h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .btn-submit {
        width: 100%;
        max-width: 250px;
        padding: 14px 30px;
        font-size: 1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer h3 {
        font-size: 1.5rem;
    }

    .footer p {
        font-size: 1rem;
    }

    .social-icons {
        gap: 20px;
        margin: 25px 0;
    }

    .social-icons a {
        font-size: 1.5rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }
}