﻿
/* font family*/
@font-face {
    font-family: 'space-grotesk-bold';
    src: url('../fonts/space-grotesk-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'inter';
    src: url('../fonts/inter.ttf') format('truetype');
}
/* font family*/

.desktop {
    display: block;
}
/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .desktop {
        display: none;
    }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/

/* ============================================
   AMClinical - Modern Clinical Research Website
   Theme: Blue Gradient & Vibrant Healthcare
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Blue Gradient Theme */
    --primary-blue: #0066FF;
    --primary-dark: #0047AB;
    --primary-light: #3399FF;
    --accent-cyan: #00C9FF;
    --accent-purple: #667EEA;
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00C9FF 100%);
    --gradient-secondary: linear-gradient(135deg, #00C9FF 0%, #0066FF 100%);
    --gradient-hero: linear-gradient(135deg, #667EEA 0%, #0066FF 50%, #00C9FF 100%);
    --gradient-card: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #000000;
    /* Typography */
    --font-primary: 'inter', sans-serif;
    --font-display: 'space-grotesk-bold', sans-serif;
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(0, 102, 255, 0.3);
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow-md);
    }

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 165px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.tagline {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color var(--transition-fast);
    position: relative;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-blue);
    }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
        }

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 12px;
    min-width: 210px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 10px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: all var(--transition-fast);
}

    .dropdown-content a:hover {
        background: var(--gradient-card);
        color: var(--primary-blue);
    }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--gray-700);
        border-radius: var(--radius-full);
        transition: all var(--transition-base);
    }

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 201, 255, 0.15) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-card);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
    width: fit-content;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 59px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 560px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.6s ease-out 0.6s backwards;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
    }

.btn-hero-secondary {
    background: var(--white);
    color: var(--gray-700);
    padding: 16px 32px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .btn-hero-secondary:hover {
        border-color: var(--primary-blue);
        color: var(--primary-blue);
        transform: translateY(-3px);
    }

.play-icon {
    font-size: 12px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 20px;
    animation: fadeInUp 0.6s ease-out 0.8s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: var(--gray-200);
}

.hero-visual {
    position: relative;
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-1 {
    top: 10%;
    right: -30px;
}

.card-2 {
    bottom: 30%;
    left: -40px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: -20px;
    animation-delay: 2s;
}

.card-icon {
    font-size: 28px;
}

.card-title {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 15px;
}

.card-subtitle {
    font-size: 13px;
    color: var(--gray-500);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    font-size: 12px;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
    display: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* ============================================
   Trust Section
   ============================================ */
.trust-section {
    padding: 40px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-text {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.trust-logos {
    display: flex;
    gap: 32px;
    align-items: center;
}

.trust-logo {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    padding: 8px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   Sections Common
   ============================================ */
.section-header {
    margin-bottom: 60px;
}

    .section-header.centered {
        text-align: center;
    }

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-card {
    background: var(--gradient-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.about-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.about-card p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 15px;
    color: var(--gray-700);
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.about-stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ============================================
   Why Section
   ============================================ */
.why-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.why-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-blue);
    }

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
    line-height: 26px;
}

.why-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   Leaders Section
   ============================================ */
.leaders-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.leader-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

    .leader-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-2xl);
    }

.leader-image-container {
    position: relative;
    height: 260px;
    overflow: hidden;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/general/wave-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.leader-image {
    width: 30%;
    height: 100%;
    object-fit: cover;
    padding-top: 5px;
}

.leader-badge {
    position: absolute;
    bottom: 0px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

.leader-content {
    padding: 32px;
}

    .leader-content h3 {
        font-family: var(--font-display);
        font-size: 28px;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 8px;
    }

.leader-role {
    display: block;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 16px;
}

.leader-bio {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.leader-vision {
    background: var(--gradient-card);
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-700);
}

    .leader-vision strong {
        color: var(--primary-blue);
    }

/* ============================================
   Programs Section
   ============================================ */
.programs-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.programs-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.tab-btn {
    background: var(--white);
    color: var(--gray-700);
    padding: 12px 32px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition-base);
}

    .tab-btn:hover {
        border-color: var(--primary-blue);
        color: var(--primary-blue);
    }

    .tab-btn.active {
        background: var(--gradient-primary);
        color: var(--white);
        border-color: transparent;
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
        animation: fadeIn 0.4s ease-out;
    }

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 0px 0px 30px;
}

.program-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 2px solid var(--gray-200);
    position: relative;
}

    .program-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-blue);
    }

    .program-card.featured {
        border-color: var(--primary-blue);
        background: var(--gradient-card);
    }

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.program-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 15px 0px;
    line-height: 35px;
}

.program-duration {
    display: inline-block;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.program-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-outcomes {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

    .program-outcomes strong {
        display: block;
        font-size: 15px;
        color: var(--primary-blue);
        margin-bottom: 8px;
    }

    .program-outcomes span {
        font-size: 14px;
        color: var(--gray-600);
    }

.program-outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.program-outcomes-left,
.program-outcomes-right {
    display: block;
    line-height: 35px;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
}

.btn-program {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-base);
}

    .btn-program:hover {
        background: var(--gradient-primary);
        color: var(--white);
        border-color: transparent;
    }

/* ============================================
   Therapeutic Section
   ============================================ */
.therapeutic-section {
    padding: 80px 0;
    background: var(--white);
}

.therapeutic-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.therapeutic-tag {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all var(--transition-base);
}

    .therapeutic-tag:hover {
        background: var(--gradient-primary);
        color: var(--white);
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

/* ============================================
   Placement Section
   ============================================ */
.placement-section {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.placement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.placement-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin: 16px 0 40px;
}

.placement-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.placement-item {
    display: flex;
    gap: 20px;
}

.placement-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.placement-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.placement-item p {
    font-size: 15px;
    color: var(--gray-600);
}

.placement-goal {
    margin-top: 40px;
    padding: 24px;
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-blue);
    font-size: 18px;
    text-align: center;
}

    .placement-goal strong {
        color: var(--primary-blue);
    }

.placement-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

/* ============================================
   Eligibility Section
   ============================================ */
.eligibility-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.eligibility-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all var(--transition-base);
}

    .eligibility-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-blue);
    }

.eligibility-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.eligibility-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.eligibility-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.cta-card {
    background: var(--gradient-hero);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.cta-content h2, .cta-content h3 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0px;
}

.cta-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

    .cta-buttons a {
        color: var(--white);
        transition: all 0.5s;
        text-decoration: none;
        font-size: 18px;
    }

        .cta-buttons a:hover {
            text-decoration: underline;
        }

        .cta-buttons a img {
            width: 30px;
            margin: 0px 0px -10px 0px;
        }

.cta-buttons-whatsapp {
    gap: 30px;
    margin-bottom: 20px;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 16px 40px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-base);
}

    .btn-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    }

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-base);
}

    .btn-cta-secondary:hover {
        background: var(--white);
        color: var(--primary-blue);
        transform: translateY(-3px);
    }

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo-img {
    width: 180px;
    height: auto;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .footer-contact a {
        color: var(--gray-300);
        text-decoration: none;
        font-size: 14px;
        transition: color var(--transition-fast);
    }

        .footer-contact a:hover {
            color: var(--primary-light);
        }

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.footer-col a {
    display: block;
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 7px;
    transition: all var(--transition-fast);
}

    .footer-col a:hover {
        color: var(--accent-cyan);
        padding-left: 8px;
    }

    .footer-col a i {
        padding-right: 3px;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-800);
}

    .footer-bottom p,
    .footer-bottom p a {
        font-size: 14px;
        color: var(--gray-400);
        transition: all 0.5s;
    }

        .footer-bottom p a:hover {
            color: var(--white);
        }

.footer-links {
    display: flex;
    gap: 24px;
}

    .footer-links a {
        color: var(--gray-400);
        text-decoration: none;
        font-size: 14px;
        transition: color var(--transition-fast);
    }

        .footer-links a:hover {
            color: var(--white);
        }

.footer-social-media ul {
    list-style-type: none;
    margin: 5px 0px 0px;
}

    .footer-social-media ul li {
        display: inline-block;
        padding: 0px 3px 0px;
    }

        .footer-social-media ul li a {
            font-size: 18px;
        }

.footer-top {
    margin-top: 20px;
}
/* Ratings Section */
.ratings {
    margin-top: 20px;
}

    .ratings .rating-item {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

        .ratings .rating-item .platform-icon {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }

        .ratings .rating-item .stars {
            color: #ffd700;
            font-size: 14px;
            margin-right: 5px;
        }

        .ratings .rating-item .score {
            font-weight: 600;
            color: #fff;
            font-size: 14px;
        }
/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 71px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 30px;
        box-shadow: var(--shadow-xl);
        transition: left var(--transition-base);
        align-items: flex-start;
        gap: 10px;
    }

        .nav-menu.active {
            left: 0;
        }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 15px;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .btn-hero-primary, .btn-hero-secondary {
        padding: 0px 15px;
        font-weight: 500;
        font-size: 14px;
        height: 35px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-container {
        height: 400px;
    }

    .floating-card {
        display: none;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .section-title {
        font-size: 25px;
    }

    .about-grid,
    .placement-grid,
    .leaders-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid,
    .programs-grid,
    .eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .programs-tabs {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-bottom: 30px;
    }

    .cta-card {
        padding: 30px;
    }

    .cta-content h2 {
        font-size: 25px;
    }

    .cta-content h3 {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: unset;
    }

    .cta-buttons-whatsapp {
        gap: 10px;
    }

    :root {
        --section-padding: 60px;
    }

    .footer {
        padding: 30px 0px 0px;
    }

    .footer-grid {
        margin-bottom: 20px;
    }

    .footer-bottom {
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: unset;
    }

    .stat-number {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .trust-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* ============================================================
   MOBILE STICKY SIDEBAR STYLES
   ============================================================ */

/* Hide sidebar on desktop - Show only on mobile */
.mobile-contact-sidebar {
    display: none;
}

@media (max-width: 767px) {
    .mobile-contact-sidebar {
        display: block;
        position: fixed;
        z-index: 9999;
    }

    /* ============================================================
       TOGGLE BUTTON (Always visible)
       ============================================================ */
    .sidebar-toggle {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #0066FF 0%, #00C9FF 100%);
        border: none;
        border-radius: 8px 0 0 8px;
        padding: 12px 8px;
        box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        z-index: 10000;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-width: 40px;
    }

        .sidebar-toggle:active {
            transform: translateY(-50%) scale(0.95);
        }

    .toggle-icon {
        font-size: 20px;
        color: white;
        font-weight: bold;
    }

    .toggle-text {
        font-size: 10px;
        color: white;
        font-weight: 600;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        letter-spacing: 1px;
    }

    /* Pulse animation for toggle button */
    @keyframes pulse {
        0%, 100% {
            box-shadow: -2px 2px 12px rgba(0, 0, 0, 0.3);
        }

        50% {
            box-shadow: -2px 2px 20px rgba(0, 102, 255, 0.6);
        }
    }

    .sidebar-toggle {
        animation: pulse 2s infinite;
    }

    /* ============================================================
       SIDEBAR CONTENT (Slides in from right)
       ============================================================ */
    .sidebar-content {
        position: fixed;
        right: -100%;
        top: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 10001;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

        .sidebar-content.active {
            right: 0;
        }

    /* ============================================================
       SIDEBAR HEADER
       ============================================================ */
    .sidebar-header {
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        padding: 15px 15px;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

        .sidebar-header h3 {
            margin: 0;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 0.5px;
            font-family: var(--font-display);
        }

    .sidebar-close {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        font-size: 28px;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        padding: 0;
        line-height: 1;
    }

        .sidebar-close:active {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0.9);
        }

    /* ============================================================
       SIDEBAR LINKS CONTAINER
       ============================================================ */
    .sidebar-links {
        padding: 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* ============================================================
       INDIVIDUAL LINK BUTTONS
       ============================================================ */
    .sidebar-btn {
        display: flex;
        align-items: center;
        padding: 14px 12px;
        background: white;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
        gap: 12px;
    }

        .sidebar-btn:active {
            transform: scale(0.98);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
        }

    /* WhatsApp Button */
    .whatsapp-btn {
        border-left-color: #25D366;
    }

        .whatsapp-btn:active {
            background: #f0fdf4;
        }

    /* Email Button */
    .email-btn {
        border-left-color: #3498db;
    }

        .email-btn:active {
            background: #eff6ff;
        }

    /* Counselling Button */
    .counselling-btn {
        border-left-color: #f39c12;
    }

        .counselling-btn:active {
            background: #fffbeb;
        }

    /* ============================================================
       ICONS
       ============================================================ */
    .sidebar-icon {
        flex-shrink: 0;
    }

    .sidebar-btn img.sidebar-icon {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .email-icon,
    .counsel-icon {
        font-size: 28px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ============================================================
       BUTTON CONTENT (Text)
       ============================================================ */
    .btn-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .btn-label {
        font-size: 11px;
        font-weight: 600;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-number,
    .btn-email,
    .btn-subtitle {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .btn-email {
        font-size: 13px;
        word-break: break-word;
    }

    /* ============================================================
       SIDEBAR FOOTER
       ============================================================ */
    .sidebar-footer {
        padding: 15px;
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }

    .footer-text {
        margin: 0;
        font-size: 12px;
        color: #666;
        text-align: center;
    }

    /* ============================================================
       OVERLAY (Darkens background when sidebar is open)
       ============================================================ */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

    /* ============================================================
       ACCESSIBILITY & SMOOTH SCROLLING
       ============================================================ */
    .sidebar-content::-webkit-scrollbar {
        width: 6px;
    }

    .sidebar-content::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .sidebar-content::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }

        .sidebar-content::-webkit-scrollbar-thumb:hover {
            background: #999;
        }
}

/* ============================================================
   ENSURE SIDEBAR HIDDEN ON LARGER SCREENS
   ============================================================ */
@media (min-width: 768px) {
    .mobile-contact-sidebar {
        display: none !important;
    }
}

/*Media query*/
/* Large desktop and laptops*/
@media (min-width: 1200px) {
    .nav-container {
        padding: 0px 24px;
    }

    .logo-img {
        width: 185px;
        padding-top: 3px;
    }

    .hero-container {
        margin: 20px auto !important;
    }

    .hero-image {
        margin: -90px 0px 0px 0px;
    }
}

/* Landscape tablets and medium desktops*/
@media (min-width: 992px) and (max-width: 1199px) {
    logo-img {
        width: 150px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }
}

/* medium tablets and medium laptop*/
@media (min-width: 768px) and (max-width: 991px) {
    .logo-img {
        width: 120px;
    }

    .nav-menu {
        gap: 10px !important;
    }

    .nav-link {
        font-size: 14px !important;
    }

    .btn-primary {
        padding: 10px 15px !important;
        font-size: 13px !important;
    }
}

/* portrait tablets and small desktops*/
@media (max-width: 767px) {
    .logo-img {
        width: 120px;
    }

    .trust-logos {
        gap: 5px;
    }

    .trust-logo {
        font-size: 12px;
        font-weight: 500;
        padding: 8px;
    }

    .about-stats-card {
        right: 0;
        padding: 20px;
    }

    .ratings .rating-item .platform-icon {
        width: 16px;
        height: auto;
    }

    .ratings .rating-item .stars, .ratings .rating-item .score {
        font-size: 13px;
        font-weight: 500;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-card {
        padding: 15px;
    }

    .about-icon {
        font-size: 30px;
        margin-bottom: 0;
    }

    .about-card h3 {
        font-size: 20px;
        margin-bottom: 0;
    }

    .about-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .leader-content {
        padding: 10px 20px;
    }

        .leader-content h3 {
            font-size: 22px;
            margin-bottom: 5px;
        }

    .program-card h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .program-card {
        padding: 15px;
    }

    .program-badge {
        top: 7px;
        padding: 3px 6px;
        font-size: 10px;
        font-weight: 500;
    }

    .eligibility-card {
        padding: 15px;
    }

    .eligibility-icon {
        font-size: 30px;
        margin-bottom: 0;
    }

    .eligibility-card h3 {
        font-size: 18px;
        margin-bottom: 5px;
        line-height: 26px;
    }

    .hero-badge {
        font-size: 10px;
    }

    .hero-cta {
        flex-direction: unset;
    }

    .btn-cta-primary {
        padding: 10px;
        font-weight: 600;
        font-size: 14px;
    }

    .cta-buttons a {
        font-size: 15px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .fixed-ht {
        height: 70px;
    }

    .leader-image-container {
        height: 225px;
    }

    .leader-image {
        width: 36%;
        height: auto;
    }
}

/* Mobile and small Phones*/
@media (max-width: 480px) {
}
/*Media query*/
