/* HAH Healthcare Experts - Main Stylesheet */

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

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2563eb;
    --accent-color: #059669;
    --light-bg: #f8fafc;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #e0e7ff;
}

.hero .description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #dbeafe;
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: #f0f9ff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Pillars Section */
.pillars {
    background: var(--light-bg);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    margin-bottom: 0.5rem;
}

.pillar-card p {
    color: var(--text-light);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-card a:hover {
    color: var(--accent-color);
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #e0e7ff;
}

/* Leadership Section */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.leader-card .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-card .expertise {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 4rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0;
    text-align: center;
}

.page-header-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.page-header-content {
    padding: 3rem 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info,
.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    display: none;
}

.form-status.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Detailed Content Sections */
.service-detail-item {
    background: var(--light-bg);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-intro {
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-features,
.service-benefits {
    margin-bottom: 1.5rem;
}

.service-features h3,
.service-benefits h3 {
    margin-bottom: 1rem;
}

.service-features ul,
.service-benefits ul {
    list-style: none;
    padding-left: 1rem;
}

.service-features li,
.service-benefits li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before,
.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.timeline-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.timeline-item h3 {
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Expertise Cards */
.expertise-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.expertise-card.featured {
    border-left: 4px solid var(--secondary-color);
}

.expertise-header {
    background: var(--light-bg);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.expertise-header h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.expertise-header .position {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.expertise-body {
    padding: 2rem;
}

.expertise-details,
.expertise-highlights,
.expertise-contribution {
    margin-bottom: 2rem;
}

.expertise-details h3,
.expertise-highlights h3,
.expertise-contribution h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expertise-details ul,
.expertise-highlights ul {
    list-style: none;
    padding-left: 1rem;
}

.expertise-details li,
.expertise-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-details li:before,
.expertise-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Portfolio Cards */
.project-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.project-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem;
}

.project-header h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.project-type {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

.project-content {
    padding: 1.5rem;
}

.project-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.project-content strong {
    color: var(--primary-color);
}

.project-content ul {
    list-style: none;
    padding-left: 1rem;
    margin-left: 1rem;
}

.project-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.project-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

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

    .contact-section {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    section h2 {
        font-size: 2rem;
    }

    .services-grid,
    .pillars-grid,
    .leaders-grid,
    .team-members,
    .expertise-matrix,
    .facility-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

/* Service Detail Cards Layout */
.biomedical-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.biomedical-services > h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
}

.service-detail {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-detail h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary-color);
}

.service-detail > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.service-detail li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Equipment Categories Cards */
.equipment-categories {
    margin-top: 3rem;
    padding-top: 2rem;
}

.equipment-categories > h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.category {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #bae6fd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
}

.category h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0ea5e9;
}

.category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.category li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Engineering Process Cards */
.engineering-process {
    margin-top: 3rem;
    padding-top: 2rem;
}

.engineering-process > h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.step {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e879f9;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

/* Why Biomedical Benefits Grid */
.why-biomedical {
    margin-top: 3rem;
    padding-top: 2rem;
}

.why-biomedical > h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #86efac;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.benefit h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #22c55e;
}

.benefit p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ================================
   About Page - Modern Template
   ================================ */

/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%);
    display: flex;
    align-items: center;
}

.about-hero-overlay h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: #e0e7ff;
    font-size: 1.25rem;
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
}

/* Mission & Vision - Side by Side */
.about-mission-vision {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mv-card h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mv-tagline {
    font-size: 1.125rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.mv-mission {
    border-top: 4px solid var(--secondary-color);
}

.mv-vision {
    border-top: 4px solid var(--accent-color);
}

/* Who We Are Section */
.about-who-we-are {
    padding: 5rem 0;
    background: white;
}

.who-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-text h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.who-text p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
}

.who-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Core Values Section */
.about-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid #a855f7;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.value-highlight {
    font-size: 0.875rem;
    color: #a855f7;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p:last-child {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Expertise Blocks Section */
.about-expertise {
    padding: 5rem 0;
    background: white;
}

.expertise-blocks {
    display: grid;
    gap: 1rem;
}

.expertise-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.expertise-block:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.expertise-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    min-width: 60px;
}

.expertise-block:hover .expertise-number {
    opacity: 1;
}

.expertise-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.expertise-content p {
    color: var(--text-light);
    margin: 0;
}

/* Team Section */
.about-team {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

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

.team-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #10b981 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.team-title-block h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.team-bio {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-expertise h4 {
    color: var(--primary-color);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.team-expertise ul {
    list-style: none;
    padding: 0;
}

.team-expertise li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.875rem;
}

.team-expertise li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Regulatory Section */
.about-regulatory {
    padding: 5rem 0;
    background: white;
}

.regulatory-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.regulatory-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #93c5fd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regulatory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.regulatory-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.regulatory-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary-color);
}

.regulatory-card ul {
    list-style: none;
    padding: 0;
}

.regulatory-card li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-light);
}

.regulatory-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Commitment Section */
.about-commitment {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
}

.commitment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.commitment-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
}

.commitment-check {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.commitment-card h3 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.commitment-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Responsive Adjustments for About Page */
@media (max-width: 768px) {
    .about-hero-overlay h1 {
        font-size: 2rem;
    }
    
    .who-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid,
    .team-cards {
        grid-template-columns: 1fr;
    }
    
    .expertise-block {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .expertise-number {
        min-width: auto;
    }
    
    .leader-card-grid {
        grid-template-columns: 1fr;
    }
    
    .leader-image-block {
        justify-self: center;
    }
    
    .leader-details {
        grid-template-columns: 1fr;
    }
}

/* ================================
   Leadership Cards - Side-by-Side Layout
   ================================ */

.leadership-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.leader-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.leader-card-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}

.leader-image-block {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.leader-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.leader-avatar-blue {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1d4ed8 100%);
}

.leader-avatar-green {
    background: linear-gradient(135deg, var(--accent-color) 0%, #047857 100%);
}

.leader-avatar-purple {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.leader-badge {
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.leader-content {
    padding: 2.5rem;
}

.leader-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.leader-header h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.leader-role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.leader-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.leader-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.leader-expertise h4,
.leader-highlights h4 {
    font-size: 0.9375rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.leader-expertise ul,
.leader-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leader-expertise li,
.leader-highlights li {
    padding: 0.375rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.875rem;
}

.leader-expertise li::before,
.leader-highlights li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.leader-quote {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--secondary-color);
}

.leader-quote p {
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    font-size: 0.9375rem;
}

/* ================================
   Home Page Hero Enhancements
   ================================ */

.home-hero {
    height: 500px;
}

.home-hero .about-hero-overlay {
    text-align: center;
}

.home-hero .about-hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-description {
    color: #e0e7ff;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Team card button styling */
.team-card .btn {
    margin-top: 1rem;
    display: inline-block;
}

/* Service detail button styling */
.service-detail .btn {
    margin-top: 1rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .home-hero {
        height: auto;
        min-height: 400px;
    }
    
    .home-hero .about-hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta-section {
        display: none;
    }
}
