/* ===== ABOUT PAGE CSS - MATCHES SERVICES.CSS STYLE ===== */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #1a365d;
    --secondary-color: #7c3aed;
    --accent-color: #ffffff;
    --text-dark: #2d3748;
    --text-light: #718096;
    --success-color: #10b981;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #a855f7 100%);
    --gradient-success: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    --shadow-soft: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-medium: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-strong: 0 25px 50px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

body {
    zoom: 0.75;
    transform-origin: top left;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fafbfc;
    /* DO NOT add width: 133.33vw to body! */
}

/* ===== Hero Section - MATCHES SERVICES ===== */
/* ===== Hero Section - MATCHES SERVICES ===== */
.about-hero {
   min-height: 133.33vh; /* Compensates for 0.75 zoom */
    height: auto;
    padding: 100px clamp(20px, 5vw, 50px) 60px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(124, 58, 237, 0.8) 100%), 
                url('clin.png') no-repeat center/cover;
    background-attachment: scroll;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 70%);
}

/* Floating Shapes - Keep them but simplified */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: clamp(60px, 10vw, 100px);
    height: clamp(60px, 10vw, 100px);
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: clamp(100px, 15vw, 150px);
    height: clamp(100px, 15vw, 150px);
    right: 15%;
    top: 60%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: clamp(50px, 8vw, 80px);
    height: clamp(50px, 8vw, 80px);
    left: 70%;
    bottom: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1.1); 
        opacity: 0.2;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    animation: heroFadeIn 1.2s ease-out;
}

/* CRITICAL: Match services.css hero text exactly */
.about-hero .hero-content h1,
.hero-content h1 {
    font-size: clamp(2rem, 6vw, 5.5rem) !important;
    font-weight: 900 !important;
    margin-bottom: 24px !important;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e2e8f0 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    line-height: 1.1 !important;
    word-break: break-word !important;
}

.about-hero .hero-content p,
.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem) !important;
    opacity: 0.95 !important;
    margin-bottom: 40px !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
    background: var(--gradient-secondary);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    min-height: 44px;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

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

/* ===== Container ===== */
/* ===== Container ===== */
.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 50px);
    /* NO width rules - let max-width and margin: 0 auto center it */
}

/* ===== Section Titles - Match Services ===== */
.section-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 800;
    position: relative;
    word-break: break-word;
}

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

.section-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 60px;
    font-weight: 300;
    line-height: 1.7;
}

/* ===== Cards - Match Services Style ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: clamp(30px, 5vw, 50px);
    margin-top: 60px;
}

.card {
    background: var(--accent-color);
    border-radius: clamp(16px, 3vw, 24px);
    padding: clamp(30px, 5vw, 50px) clamp(25px, 4vw, 40px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
    transition: left 0.6s ease;
}

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

.card:hover::after {
    left: 100%;
}

.card-icon {
    width: clamp(70px, 15vw, 100px);
    height: clamp(70px, 15vw, 100px);
    border-radius: clamp(16px, 3vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    color: var(--accent-color);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 32px;
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.3);
    transition: var(--transition);
}

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

.card h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.card p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.7;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    position: relative;
    padding-left: clamp(28px, 5vw, 32px);
    margin: 12px 0;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    word-break: break-word;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
    background: var(--gradient-secondary);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.checklist li:hover {
    transform: translateX(8px);
    color: var(--secondary-color);
}

/* ===== Stats Section - Match Services ===== */
/* ===== Stats Section - Match Services ===== */
/* ===== Stats Section - Match Services ===== */
.stats {
    background: var(--gradient-primary);
    color: var(--accent-color);
    text-align: center;
    border-radius: clamp(20px, 4vw, 32px);
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 50px);
    margin: clamp(60px, 10vw, 120px) auto; /* Changed from "0" to "auto" */
    position: relative;
    overflow: hidden;
    max-width: 1400px; /* Changed from 133.33vw to match container width */
    width: 100%; /* Changed from 133.33vw */
    box-sizing: border-box;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: clamp(20px, 4vw, 32px);
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: clamp(40px, 6vw, 60px);
    font-weight: 800;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: clamp(30px, 5vw, 50px);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.stat {
    padding: clamp(20px, 4vw, 30px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.num {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #ffd700;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    word-break: break-word;
    hyphens: auto;
}

.label {
    opacity: 0.95;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 500;
}

/* ===== Team Section - Match Services ===== */
/* ===== Team Section - Match Services ===== */
.team {
    padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 50px);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: clamp(60px, 10vw, 120px);
    margin-bottom: 60px !important;  /* ← CHANGE FROM 0 to 60px */
    border-radius: clamp(20px, 4vw, 32px);
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    width: 100%;
    margin: clamp(60px, 10vw, 120px) auto 60px;
}

.team::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.team-content {
    position: relative;
    z-index: 2;
}

.team h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: clamp(50px, 8vw, 80px);
    font-weight: 800;
}

.team-grid {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.member {
    background: var(--accent-color);
    border-radius: clamp(20px, 4vw, 32px);
    padding: clamp(40px, 6vw, 60px) clamp(30px, 5vw, 50px);
    text-align: center;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
}

.member:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
}

.avatar {
    width: clamp(100px, 20vw, 150px);
    height: clamp(100px, 20vw, 150px);
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: var(--accent-color);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
    transition: var(--transition);
    border: 4px solid rgba(255, 255, 255, 0.9);
}

.member:hover .avatar {
    transform: scale(1.1);
}

.m-name {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    word-break: break-word;
}

.m-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.m-bio {
    color: var(--text-light);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    font-weight: 400;
}

/* ===== Scroll Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Tablets (max-width: 1024px) */

/* Tablets (max-width: 768px) */


/* Disable hover effects on all touch devices */
@media (hover: none) and (pointer: coarse) {
    .card:hover,
    .member:hover,
    .stat:hover,
    .hero-cta:hover {
        transform: none;
        box-shadow: var(--shadow-soft);
    }
    
    .card:hover .card-icon {
        transform: none;
    }
    
    .member:hover .avatar {
        transform: none;
    }
    
    .checklist li:hover {
        transform: none;
        color: var(--text-dark);
    }
}

/* Print Styles */
@media print {
    .floating-shapes {
        display: none;
    }
    
    .about-hero {
        page-break-after: always;
    }
    
    .card,
    .member,
    .stat {
        page-break-inside: avoid;
    }
}
.site-footer {
    background: #1a365d !important;
    color: white;
    padding: 30px 20px;
    text-align: center;
   width: 100%;
    max-width: 100%;
    margin: 0 !important;
    box-sizing: border-box;
    clear: both;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.site-footer p {
    margin: 0;
    opacity: 0.9;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
}

/* Add spacing before footer */
.cta-section {
    margin-bottom: 60px !important;
}

/* Prevent horizontal scroll */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

/* Mobile adjustments for footer */


header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    z-index: 9999 !important;
    background: #1a365d !important;
}

.header-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
}


