@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
    /* Color Tokens based on Logo (Teal, Blue, Purple) */
    --clr-cyan: #06b6d4;
    --clr-blue: #0ea5e9;
    --clr-indigo: #4f46e5;
    --clr-purple: #8b5cf6;

    /* Semantic Colors */
    --primary: var(--clr-blue);
    --secondary: var(--clr-purple);
    --dark: #0b1329;
    --light: #f8fafc;
    --medium: #f1f5f9;
    --border: #e2e8f0;

    /* Text Colors */
    --txt-dark: #0f172a;
    --txt-muted: #475569;
    --txt-light: #f8fafc;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--clr-blue) 0%, var(--clr-indigo) 50%, var(--clr-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--clr-cyan) 0%, var(--clr-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--clr-indigo) 0%, var(--clr-purple) 100%);
    --gradient-light: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.7) 100%);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 16px -6px rgba(15, 23, 42, 0.05);
    --shadow-purple: 0 10px 20px -5px rgba(139, 92, 246, 0.25);
    --shadow-blue: 0 10px 20px -5px rgba(14, 165, 233, 0.25);
    --shadow-glass: 0 8px 32px 0 rgba(15, 23, 42, 0.06);

    /* Layout */
    --max-width: 1300px;
    --header-height: 90px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;

    /* Animation & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--txt-dark);
    background-color: var(--light);
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
}

p {
    color: var(--txt-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--medium);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--clr-blue), var(--clr-purple));
    border-radius: var(--border-radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--clr-indigo);
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes pulseSoft {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.35;
    }
}

/* Scroll Animation Trigger Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-fade-up {
    transform: translateY(40px);
}

.animate-fade-in {
    transform: none;
}

.animate-slide-left {
    transform: translateX(-40px);
}

.animate-slide-right {
    transform: translateX(40px);
}

.animated {
    opacity: 1 !important;
    transform: none !important;
}

/* Delay Helpers */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ==========================================
   LAYOUT UTILITIES & COMMON COMPONENTS
   ========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 70px 0;
    position: relative;
}

.section-bg-gradient {
    background: var(--gradient-light);
}

.section-bg-medium {
    background-color: var(--medium);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-full);
    margin-bottom: 20px;
}

.badge-gradient {
    background: var(--gradient-primary);
    color: var(--txt-light);
    box-shadow: var(--shadow-blue);
}

.badge-soft {
    background: rgba(14, 165, 233, 0.1);
    color: var(--clr-blue);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.badge-soft-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--clr-purple);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--txt-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--txt-light);
    box-shadow: var(--shadow-blue);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(14, 165, 233, 0.4), var(--shadow-purple);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--clr-blue);
    color: var(--clr-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-text {
    padding: 0;
    background: transparent;
    color: var(--clr-blue);
    font-weight: 700;
    gap: 5px;
}

.btn-text:hover {
    color: var(--clr-purple);
    gap: 10px;
}

.btn-text i {
    transition: var(--transition-fast);
}

/* Glassmorphic Card */
.glass-card {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
}

/* Floating Blobs (Aesthetics) */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.25;
    pointer-events: none;
}

.bg-blob-blue {
    background: var(--clr-blue);
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
    animation: blobFloat 20s infinite ease-in-out;
}

.bg-blob-purple {
    background: var(--clr-purple);
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: -150px;
    animation: blobFloat 25s infinite ease-in-out alternate;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--dark);
    /* Keep it dark so white logo subtext stands out */
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.sticky {
    height: 90px;
    background-color: rgba(11, 19, 41, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

/* .header.sticky .logo img {
    height: 44px;
} */

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition-fast);
}

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

.nav-link.active {
    color: var(--clr-cyan);
    font-weight: 700;
}

.nav-cta {
    margin-left: 20px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--txt-light);
    border-radius: 3px;
    position: absolute;
    transition: var(--transition-normal);
}

.mobile-nav-toggle span:nth-child(1) {
    top: 0;
}

.mobile-nav-toggle span:nth-child(2) {
    top: 10px;
}

.mobile-nav-toggle span:nth-child(3) {
    top: 20px;
}

.mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider-section {
    position: relative;
    height: 90vh;
    min-height: 550px;
    width: 100%;
    margin-top: var(--header-height);
    overflow: hidden;
    background-color: var(--dark);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Beautiful dark gradient overlay for text contrast and premium feel */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 19, 41, 0.85) 0%, rgba(11, 19, 41, 0.5) 50%, rgba(11, 19, 41, 0.3) 100%);
    z-index: 2;
}

.slide-content-container {
    position: relative;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 650px;
    color: var(--txt-light);
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity 0.8s ease-out 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 3.5rem;
    color: var(--txt-light);
    margin-bottom: 20px;
    line-height: 1.15;
}

.slide-content h1 span {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 300;
}

.slide-actions {
    display: flex;
    gap: 15px;
}


/* Slider Dots Indicator */
.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background: var(--clr-cyan);
    width: 32px;
    border-radius: 6px;
}

/* ==========================================
   HOMEPAGE SPECIFIC SECTIONS
   ========================================== */

/* Key Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -40px;
    /* Overlaps hero slider slightly */
    position: relative;
    z-index: 5;
}

.highlight-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-normal);
    border-bottom: 4px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--clr-blue);
}

.highlight-card:nth-child(2):hover {
    border-bottom-color: var(--clr-purple);
}

.highlight-card:nth-child(3):hover {
    border-bottom-color: var(--clr-cyan);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition-normal);
}

.highlight-card:nth-child(1) .highlight-icon {
    background: rgba(14, 165, 233, 0.1);
    color: var(--clr-blue);
}

.highlight-card:nth-child(2) .highlight-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--clr-purple);
}

.highlight-card:nth-child(3) .highlight-icon {
    background: rgba(6, 182, 212, 0.1);
    color: var(--clr-cyan);
}

.highlight-card:hover .highlight-icon {
    transform: rotateY(180deg);
}

.highlight-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

/* Feature/Introduction Section */
.intro-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.intro-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.intro-image-container:hover img {
    transform: scale(1.05);
}

.intro-badge {
    position: absolute;
    bottom: 5px;
    left: 10px;
    background: rgba(11, 19, 41, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.intro-badge-icon {
    font-size: 2rem;
    color: var(--clr-cyan);
}

.intro-badge-text h4 {
    color: var(--txt-light);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.intro-badge-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.intro-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.intro-content p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.stat-box {
    padding: 20px;
    border-radius: var(--border-radius-md);
    background-color: var(--medium);
    border-left: 4px solid var(--clr-blue);
}

.stat-box:nth-child(2) {
    border-left-color: var(--clr-purple);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-number span {
    color: var(--clr-blue);
}

.stat-box:nth-child(2) .stat-number span {
    color: var(--clr-purple);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--txt-muted);
}

/* Services Teaser Section */
.services-teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.teaser-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.teaser-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.teaser-icon {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--clr-blue), var(--clr-indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.teaser-card:nth-child(2) .teaser-icon {
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-indigo));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.teaser-card:nth-child(3) .teaser-icon {
    background: linear-gradient(135deg, var(--clr-cyan), var(--clr-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.teaser-card:nth-child(4) .teaser-icon {
    background: linear-gradient(135deg, var(--clr-purple), var(--clr-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.teaser-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.teaser-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* CTA Callout Banner */
.cta-banner {
    position: relative;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    color: var(--txt-light);
    overflow: hidden;
    box-shadow: var(--shadow-purple);
    z-index: 2;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-banner-text {
    max-width: 650px;
}

.cta-banner-text h2 {
    color: var(--txt-light);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-banner-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 300;
}

.cta-banner-actions .btn-secondary {
    background: white;
    color: var(--clr-blue);
    border: none;
}

.cta-banner-actions .btn-secondary:hover {
    background: var(--dark);
    color: var(--txt-light);
    transform: scale(1.05);
}

/* ==========================================
   ABOUT US PAGE SPECIFIC SECTIONS
   ========================================== */

/* Breadcrumb Header */
.page-header {
    margin-top: var(--header-height);
    background: var(--dark);
    color: var(--txt-light);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.page-header-content h1 {
    font-size: 2.8rem;
    color: var(--txt-light);
    margin-bottom: 12px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a:hover {
    color: var(--clr-cyan);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs .current {
    color: var(--clr-cyan);
}

/* Split Profile Content */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.profile-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.profile-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.profile-features {
    margin-top: 30px;
}

.profile-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark);
}

.profile-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--clr-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.profile-image-container {
    position: relative;
}

.profile-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.profile-image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.profile-card-overlay {
    position: absolute;
    bottom: -70px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--txt-light);
    border-radius: var(--border-radius-md);
    padding: 14px 15px;
    box-shadow: var(--shadow-purple);
    z-index: 3;
    max-width: 250px;
}

.profile-card-number {
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.profile-card-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Mission & Vision Section */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.mv-card:nth-child(2)::before {
    background: var(--gradient-accent);
}

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

.mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--clr-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.mv-card:nth-child(2) .mv-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--clr-purple);
}

.mv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Core Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 35px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.value-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--clr-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

/* Company Milestone Timeline */
.timeline-section {
    background-color: var(--medium);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--border);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--border-radius-full);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--clr-blue);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition-normal);
}

.timeline-item:nth-child(even)::after {
    border-color: var(--clr-purple);
}

.timeline-item:hover::after {
    background-color: var(--dark);
    transform: scale(1.2);
}

.left-timeline {
    left: 0;
}

.right-timeline {
    left: 50%;
}

.right-timeline::after {
    left: -10px;
}

.timeline-content {
    padding: 24px;
    background-color: white;
    position: relative;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: var(--clr-blue);
    margin-bottom: 5px;
}

.timeline-item:nth-child(even) .timeline-content h3 {
    color: var(--clr-purple);
}

.timeline-content h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

/* ==========================================
   SERVICES PAGE SPECIFIC SECTIONS
   ========================================== */

/* Full Detailed Services Grid */
.services-full-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 65px;
    align-items: center;
}

.service-row:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
}

.service-row:nth-child(even) .service-detail-content {
    order: 2;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.service-benefits-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--txt-dark);
}

.benefit-pill i {
    color: var(--clr-cyan);
}

.service-image-box {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 4/3;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 19, 41, 0.7) 100%);
}

/* Key Benefits Checklist Section */
.benefits-section {
    background-color: var(--medium);
}

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

.benefit-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.benefit-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.benefit-card:nth-child(1) .benefit-card-icon {
    background: rgba(14, 165, 233, 0.1);
    color: var(--clr-blue);
}

.benefit-card:nth-child(2) .benefit-card-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--clr-purple);
}

.benefit-card:nth-child(3) .benefit-card-icon {
    background: rgba(6, 182, 212, 0.1);
    color: var(--clr-cyan);
}

.benefit-card:nth-child(4) .benefit-card-icon {
    background: rgba(79, 70, 229, 0.1);
    color: var(--clr-indigo);
}

.benefit-card:hover .benefit-card-icon {
    transform: scale(1.15);
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* ==========================================
   CONTACT US PAGE SPECIFIC SECTIONS
   ========================================== */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.info-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--clr-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-card:nth-child(even) .info-card-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--clr-purple);
}

.info-card-text h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.info-card-text p,
.info-card-text a {
    font-size: 0.95rem;
    color: var(--txt-muted);
}

.info-card-text a:hover {
    color: var(--clr-blue);
}

/* Enquiry Form Container */
.form-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.form-card p {
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--txt-dark);
    background-color: var(--light);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-blue);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Form success message overlay */
.form-success-container {
    display: none;
    text-align: center;
    padding: 30px 0;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.form-success-container h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Map Section */
.map-section {
    padding-top: 0;
}

.map-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    height: 450px;
    position: relative;
    background-color: var(--medium);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--dark);
    color: var(--txt-light);
    padding: 80px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--txt-light);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-full);
}

.footer-about .footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--txt-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--clr-cyan);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-cyan);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--clr-cyan);
    margin-top: 4px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.footer-hour-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.footer-hour-row .day {
    font-weight: 600;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--clr-cyan);
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Download Brochure Button Style */
.btn-brochure {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--txt-light);
    box-shadow: 0 6px 15px -3px rgba(16, 185, 129, 0.3);
}

.btn-brochure:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px -5px rgba(16, 185, 129, 0.45);
}

.btn-brochure::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-brochure:hover::before {
    left: 100%;
}

/* ==========================================
   RESPONSIVE STYLES (MEDIA QUERIES)
   ========================================== */

/* Large screens and laptops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
        gap: 35px;
    }
}

/* Tablets landscape and small laptops (iPad Pro, etc.) */
@media (max-width: 1024px) {
    .services-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .slide-content h1 {
        font-size: 3rem;
    }

    .intro-container {
        gap: 40px;
    }

    .service-row {
        gap: 40px;
    }
}

/* Tablets portrait and small laptops */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .section {
        padding: 70px 0;
    }

    /* Navigation */
    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background-color: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        gap: 25px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        transition: var(--transition-normal);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
        text-align: center;
    }

    /* Hero Slider */
    .slide-content h1 {
        font-size: 2.6rem;
    }

    .slide-content {
        max-width: 500px;
    }

    /* .slider-control {
        width: 46px;
        height: 46px;
    } */

    /* Homepage Layouts */
    .highlights-grid {
        grid-template-columns: 1fr;
        margin-top: -30px;
        gap: 20px;
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image-container img {
        height: 350px;
    }

    /* About Us */
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-image-container {
        max-width: 600px;
        margin: 0 auto;
    }

    .profile-image-wrapper img {
        height: 380px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    /* Services */
    .service-row,
    .service-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-row:nth-child(even) .service-detail-content {
        order: unset;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* iPad / Small Tablets portrait */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    /* Hide decorative blobs on tablets and smaller to prevent any overflow */
    .bg-blob {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

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

    /* Hero Slider */
    .hero-slider-section {
        height: 75vh;
        min-height: 480px;
    }

    .slide-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .slide-content {
        max-width: 100%;
        padding-right: 60px;
    }

    .slide-overlay {
        background: linear-gradient(to right, rgba(11, 19, 41, 0.9) 0%, rgba(11, 19, 41, 0.7) 60%, rgba(11, 19, 41, 0.5) 100%);
    }

    .slide-actions {
        flex-direction: column;
        gap: 10px;
    }

    .slide-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* .slider-control {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .slider-control-prev {
        left: 10px;
    }

    .slider-control-next {
        right: 10px;
    } */

    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 26px;
    }

    /* Highlights */
    .highlight-card {
        padding: 25px 20px;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Intro */
    .intro-image-container img {
        height: 280px;
    }

    .intro-badge {
        padding: 14px;
        gap: 10px;
        bottom: 15px;
        left: 15px;
    }

    .intro-badge-icon {
        font-size: 1.5rem;
    }

    .intro-badge-text h4 {
        font-size: 0.95rem;
    }

    .intro-badge-text p {
        font-size: 0.8rem;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

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

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

    /* Features */
    .services-teaser-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 35px 20px;
        border-radius: var(--border-radius-md);
    }

    .cta-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cta-banner-text h2 {
        font-size: 1.6rem;
    }

    .cta-banner-text p {
        font-size: 0.95rem;
    }

    .cta-banner-actions {
        width: 100%;
    }

    .cta-banner-actions .btn {
        width: 100%;
    }

    /* Page Header */
    .page-header {
        padding: 55px 0;
    }

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

    /* About Us */
    .profile-text h2 {
        font-size: 1.8rem;
    }

    .profile-card-overlay {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 15px;
        max-width: 100%;
    }

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

    .mv-card h3 {
        font-size: 1.35rem;
    }

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

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

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 15px;
    }

    .timeline-item::after {
        left: 21px;
        right: auto;
    }

    .right-timeline {
        left: 0;
    }

    .right-timeline::after {
        left: 21px;
    }

    .timeline-content {
        padding: 18px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    /* Services */
    .services-full-list {
        gap: 50px;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .service-benefits-tag {
        gap: 8px;
    }

    .benefit-pill {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

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

    /* Contact */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

    .form-card {
        padding: 25px 18px;
    }

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

    .contact-info-panel h2 {
        font-size: 1.6rem;
    }

    .info-card {
        padding: 18px;
    }

    .map-card {
        height: 300px;
        border-radius: var(--border-radius-md);
    }

    /* Footer */
    .footer {
        padding: 50px 0 25px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-bottom-links {
        justify-content: center;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Large Phones (iPhone 14 Pro Max, Pixel 7, Galaxy S23) */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

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

    /* Header */
    .header {
        height: 75px;
    }

    .header.sticky {
        height: 75px;
    }

    .logo img {
        height: 58px;
    }

 

    /* Hero Slider */
    .hero-slider-section {
        height: 80vh;
        min-height: 430px;
        margin-top: 72px;
    }

    .slide-content {
        padding-right: 45px;
    }

    .slide-content h1 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .slide-content p {
        font-size: 1.2rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .slide-content .badge {
        font-size: 0.7rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }

    /* .slider-control {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    } */

    /* .slider-control-prev {
        left: 8px;
    }

    .slider-control-next {
        right: 8px;
    } */

    .slider-dots {
        bottom: 15px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    /* Highlights */
    .highlights-grid {
        margin-top: 40px;
        gap: 15px;
    }

    .highlight-card {
        padding: 22px 18px;
    }

    .highlight-card h3 {
        font-size: 1.1rem;
    }

    .highlight-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    /* Intro */
    .intro-content h2 {
        font-size: 1.6rem;
    }

    .intro-image-container img {
        height: 240px;
    }

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

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

    .stat-box {
        padding: 15px;
    }

    /* Services Teaser */
    .teaser-card {
        padding: 22px 18px;
    }

    .teaser-card h3 {
        font-size: 1.05rem;
    }

    .teaser-icon {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    /* CTA */
    .cta-banner {
        padding: 30px 16px;
    }

    .cta-banner-text h2 {
        font-size: 1.4rem;
    }

    /* Page Header */
    .page-header {
        padding: 45px 0;
    }

    .page-header-content h1 {
        font-size: 1.6rem;
    }

    .breadcrumbs {
        font-size: 0.85rem;
    }

    /* About Profile */
    .profile-text h2 {
        font-size: 1.5rem;
    }

    .profile-image-wrapper img {
        height: 280px;
    }

    .profile-card-overlay {
        padding: 16px 20px;
    }

    .profile-card-number {
        font-size: 2rem;
    }

    .profile-features {
        margin-top: 20px;
    }

    .profile-feature-item {
        font-size: 0.9rem;
        gap: 10px;
    }

    /* Mission & Vision */
    .mv-card {
        padding: 25px 18px;
    }

    .mv-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .mv-card h3 {
        font-size: 1.25rem;
    }

    .mv-card p {
        font-size: 0.95rem;
    }

    /* Values */
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    /* Timeline */
    .timeline::after {
        left: 22px;
    }

    .timeline-item {
        padding-left: 55px;
        padding-right: 10px;
    }

    .timeline-item::after {
        left: 13px;
        width: 16px;
        height: 16px;
    }

    .right-timeline::after {
        left: 13px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content h4 {
        font-size: 0.95rem;
    }

    /* Services Detail */
    .services-full-list {
        gap: 40px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-image-box {
        aspect-ratio: 16/10;
    }

    /* Benefits */
    .benefit-card {
        padding: 25px 18px;
    }

    .benefit-card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .benefit-card h3 {
        font-size: 1.05rem;
    }

    /* Contact */
    .form-card {
        padding: 22px 16px;
    }

    .form-card h3 {
        font-size: 1.25rem;
    }

    .form-control {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .info-card {
        padding: 16px;
        gap: 14px;
    }

    .info-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .map-card {
        height: 260px;
    }

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

    .footer-grid {
        gap: 25px;
    }

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .footer-about .footer-logo {
        height: 42px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer-hour-row {
        font-size: 0.82rem;
        flex-direction: column;
        gap: 2px;
    }

    /* Glass card */
    .glass-card {
        padding: 25px 18px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 16px;
        right: 16px;
    }
}

/* Small Phones (iPhone SE, Galaxy A series, 320-480px) */
@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }

    .section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.4rem;
        padding-bottom: 12px;
    }

    .section-header h2::after {
        width: 50px;
        height: 3px;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Header */
    .header {
        height: 70px;
    }

   

    .logo img {
        height: 42px;
    }

   

    .nav-menu {
        width: 260px;
        padding: 80px 25px 30px 25px;
        gap: 20px;
    }

    .nav-link {
        font-size: 1rem;
    }

    /* Hero */
    .hero-slider-section {
        height: 80vh;
        min-height: 380px;
        margin-top: 68px;
    }

    .slide-overlay {
        background: linear-gradient(to bottom, rgba(11, 19, 41, 0.75) 0%, rgba(11, 19, 41, 0.9) 100%);
    }

    .slide-content {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .slide-content h1 {
        font-size: 1.45rem;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .slide-content .badge {
        font-size: 0.65rem;
        padding: 3px 10px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .slide-actions .btn {
        padding: 10px 18px;
        font-size: 0.82rem;
    }

    .slider-control {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .slider-control-prev {
        left: 5px;
    }

    .slider-control-next {
        right: 5px;
    }

    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
    }

    .slider-dot.active {
        width: 20px;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.82rem;
        border-radius: var(--border-radius-sm);
    }

    /* Highlights */
    .highlights-grid {
        margin-top: 25px;
        gap: 12px;
    }

    .highlight-card {
        padding: 18px 14px;
    }

    .highlight-card h3 {
        font-size: 1rem;
    }

    .highlight-card p {
        font-size: 0.85rem;
    }

    .highlight-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    /* Intro */
    .intro-content h2 {
        font-size: 1.35rem;
    }

    .intro-content p {
        font-size: 0.9rem;
    }

    .intro-image-container img {
        height: 200px;
    }

    .intro-badge {
        padding: 10px;
        gap: 8px;
        bottom: 10px;
        left: 10px;
    }

    .intro-badge-icon {
        font-size: 1.2rem;
    }

    .intro-badge-text h4 {
        font-size: 0.8rem;
    }

    .intro-badge-text p {
        font-size: 0.7rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-box {
        padding: 12px;
    }

    /* Teaser cards */
    .teaser-card {
        padding: 18px 14px;
    }

    .teaser-card h3 {
        font-size: 1rem;
    }

    .teaser-icon {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    /* CTA */
    .cta-banner {
        padding: 25px 14px;
    }

    .cta-banner-text h2 {
        font-size: 1.25rem;
    }

    .cta-banner-text p {
        font-size: 0.85rem;
    }

    /* Page Header */
    .page-header {
        padding: 35px 0;
    }

    .page-header-content h1 {
        font-size: 1.4rem;
    }

    .breadcrumbs {
        font-size: 0.8rem;
    }

    /* Profile */
    .profile-text h2 {
        font-size: 1.35rem;
    }

    .profile-text p {
        font-size: 0.9rem;
    }

    .profile-image-wrapper img {
        height: 220px;
    }

    .profile-card-number {
        font-size: 1.6rem;
    }

    .profile-card-text {
        font-size: 0.8rem;
    }

    .profile-feature-item {
        font-size: 0.82rem;
        gap: 8px;
        margin-bottom: 10px;
    }

    .profile-feature-icon {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    /* Mission Vision */
    .mv-card {
        padding: 20px 14px;
    }

    .mv-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .mv-card h3 {
        font-size: 1.15rem;
    }

    .mv-card p {
        font-size: 0.88rem;
    }

    /* Values */
    .value-card {
        padding: 20px 14px;
    }

    .value-icon {
        width: 44px;
        height: 44px;
        font-size: 1.05rem;
        margin-bottom: 14px;
    }

    .value-card h3 {
        font-size: 1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }

    /* Timeline */
    .timeline::after {
        left: 16px;
        width: 3px;
    }

    .timeline-item {
        padding-left: 42px;
        padding-right: 5px;
    }

    .timeline-item::after {
        left: 8px;
        width: 14px;
        height: 14px;
        border-width: 3px;
    }

    .right-timeline::after {
        left: 8px;
    }

    .timeline-content {
        padding: 12px;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content h4 {
        font-size: 0.88rem;
    }

    .timeline-content p {
        font-size: 0.82rem;
    }

    /* Services */
    .service-detail-content h2 {
        font-size: 1.35rem;
    }

    .service-detail-content p {
        font-size: 0.9rem;
    }

    .service-benefits-tag {
        gap: 6px;
    }

    .benefit-pill {
        padding: 5px 10px;
        font-size: 0.75rem;
        gap: 5px;
    }

    .service-image-box {
        aspect-ratio: 16/9;
    }

    /* Benefits */
    .benefit-card {
        padding: 20px 14px;
    }

    .benefit-card-icon {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .benefit-card h3 {
        font-size: 0.95rem;
    }

    .benefit-card p {
        font-size: 0.82rem;
    }

    /* Contact */
    .contact-info-panel h2 {
        font-size: 1.3rem;
    }

    .info-card {
        padding: 14px;
        gap: 12px;
    }

    .info-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .info-card-text h4 {
        font-size: 0.95rem;
    }

    .info-card-text p,
    .info-card-text a {
        font-size: 0.85rem;
    }

    .form-card {
        padding: 18px 14px;
    }

    .form-card h3 {
        font-size: 1.15rem;
    }

    .form-card p {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.82rem;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    textarea.form-control {
        min-height: 100px;
    }

    .map-card {
        height: 220px;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px 0;
    }

    .footer-grid {
        gap: 22px;
    }

    .footer-col h3 {
        font-size: 1rem;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .footer-about .footer-logo {
        height: 38px;
        margin-bottom: 14px;
    }

    .footer-about p {
        font-size: 0.85rem;
    }

    .footer-socials {
        gap: 8px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact-item span {
        font-size: 0.82rem;
    }

    .footer-contact-item i {
        font-size: 0.85rem;
    }

    .footer-hour-row {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .footer-bottom-links a {
        font-size: 0.75rem;
    }

    /* Blobs are too large on mobile */
    .bg-blob {
        display: none;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 46px;
        height: 46px;
        font-size: 1.35rem;
        bottom: 14px;
        right: 14px;
    }
}

/* Extra small fix for 320px (iPhone SE 1st gen, Galaxy S4 mini) */
@media (max-width: 340px) {
    .container {
        padding: 0 10px;
    }

    .slide-content h1 {
        font-size: 1.3rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

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

    .header {
        height: 70px;
    }

    

    .hero-slider-section {
        margin-top: 64px;
    }

    .logo img {
        height: 42px;
    }


    .nav-menu {
        width: 240px;
        padding: 70px 20px 25px 20px;
    }

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

    .highlight-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .btn {
        padding: 9px 16px;
        font-size: 0.78rem;
    }
}

/* Landscape orientation on phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider-section {
        height: 100vh;
        min-height: 320px;
    }

    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .slide-actions {
        flex-direction: row;
    }

    .slide-actions .btn {
        width: auto;
    }

    .slider-dots {
        bottom: 8px;
    }
}

/* ==========================================
   PROCESS / TIMELINE SECTION STYLES
   ========================================== */
.section-bg-light {
    background-color: var(--light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

/* Desktop Connecting Line */
@media (min-width: 992px) {
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 35px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: var(--border);
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-blue);
    color: var(--light);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
   
    border: 4px solid var(--light);
    transition: var(--transition-normal);
}

.process-step:hover .step-number {
    background: var(--gradient-primary);
    transform: scale(1.2);
    box-shadow: var(--shadow-blue);
}

.step-content h4 {
    font-family: var(--font-heading);
    color: var(--txt-dark);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.step-content p {
    color: var(--txt-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Utility Class for Text Alignment */
.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}



/* ==========================================
   THERAPEUTIC SECTION - PREMIUM DARK ASYMMETRICAL 
   ========================================== */
.therapeutic-section {
    background: linear-gradient(135deg, var(--dark) 0%, #101a35 100%);
    padding: 100px 0;
    position: relative;
    /* CRUCIAL: Do NOT add overflow: hidden or overflow-x: clip here */
}

/* Background Glow Effect */
.therapeutic-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(11, 19, 41, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.therapeutic-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

/* Desktop Side-by-Side Layout */
@media (min-width: 992px) {
    .therapeutic-container {
        grid-template-columns: 4fr 6fr;
        /* CRUCIAL FIX: 'start' forces the wrapper to be shorter than the list, giving it room to stick */
        align-items: start; 
        gap: 80px;
    }
}

/* ==========================================
   THE FIX: STICKY WRAPPER 
   ========================================== */
.therapeutic-sticky-wrapper {
    position: -webkit-sticky; /* For Safari support */
    position: sticky;
    top: 130px; /* Adjust this value so it sits below your navigation bar */
    height: max-content;
    z-index: 10;
}

/* Intro Content Styling */
.therapeutic-intro h2 {
    color: var(--light);
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: 2.5rem;
    line-height: 1.2;
}

.therapeutic-intro p {
    color: #94a3b8;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .therapeutic-sticky-wrapper {
        position: relative;
        top: 0;
    }
}

/* Right Side List */
.therapeutic-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Horizontal Cards - Dark Glassmorphism */
.thera-row-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(255, 255, 255, 0.04); /* Slightly lighter for depth */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 35px;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.thera-row-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateX(10px); /* Smooth slide to the right */
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.4);
}

/* Flexbox adjustment for mobile devices */
@media (max-width: 768px) {
    .thera-row-card {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }
    
    .therapeutic-intro {
        position: relative; /* Turn off sticky on mobile so it scrolls naturally */
        top: 0;
    }
}

.thera-icon-box {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--light);
    box-shadow: var(--shadow-blue);
}

.thera-content h3 {
    color: var(--light);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.thera-content p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.thera-link {
    color: var(--clr-cyan);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.thera-link:hover {
    color: var(--light);
    gap: 12px;
}

/* ==========================================
   LEADERSHIP / FOUNDER SECTION
   ========================================== */


.leadership-section {
    background-color: var(--light, #f8f9fa);
    padding: 50px 0;
}

/* Flex Layout for Rows */
.leadership-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* Reverses the order for even rows on desktop (Zig-Zag) */
.leadership-row.reverse {
    flex-direction: row-reverse;
}

.leadership-content-col {
    flex: 1.2;
}

/* Container for the circular image */
.leadership-image-col {
    flex: 1;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

/* Modern gradient glow behind the circle */
.leadership-image-col::before {
    content: '';
    position: absolute;
    width: 330px; 
    height: 330px;
    border-radius: 50%; /* Perfect circle */
    background: var(--gradient-secondary, linear-gradient(135deg, #0ea5e9, #8b5cf6));
    z-index: 0;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* The Circular Image Box with Dynamic Border */
.director-image-box {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    padding: 6px; /* Space for the animated border */
    background: white;
    z-index: 1;
    margin: 0 auto;
}

/* The dynamic rotating border effect */
.director-image-box::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary), #8b5cf6, #0ea5e9, var(--primary));
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    100% { transform: rotate(360deg); }
}

/* Internal circle mask */
.director-image-box::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: white;
    border-radius: 50%;
    z-index: 0;
}

/* Image styling */
.director-image-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    position: relative;
    z-index: 1;
    display: block;
}

/* Fallback icon styling if no image is present */
.director-image-box i {
    font-size: 120px;
    color: #e2e8f0;
    line-height: 284px;
    text-align: center;
    width: 100%;
}

/* Responsive Mobile Stacking */
@media (max-width: 991px) {
    .leadership-row, .leadership-row.reverse {
        flex-direction: column; /* Stacks image on top of text */
        text-align: center;
        gap: 40px;
        margin-bottom: 70px;
    }
    
    .leadership-row .founder-quote {
        text-align: left;
    }
    
    .leadership-row .founder-signature {
        justify-content: center;
    }
    
    .director-image-box {
        width: 250px;
        height: 250px;
    }
    
    .leadership-image-col::before {
        width: 275px;
        height: 275px;
    }
}

.founder-badge h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--txt-dark);
    margin-bottom: 5px;
}

.founder-badge p {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}
/* Leadership Content */
.founder-quote {
    position: relative;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--txt-dark);
    font-style: italic;
    background: rgba(14, 165, 233, 0.05);
    padding: 30px 30px 30px 50px;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin: 25px 0;
    font-weight: 500;
}

.quote-icon {
    position: absolute;
    top: 25px;
    left: 15px;
    color: var(--primary);
    opacity: 0.2;
    font-size: 2rem;
}

.founder-signature {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.signature-text {
    font-family: 'Brush Script MT', cursive, sans-serif; /* Adds a handwritten feel */
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1;
}

.signature-title {
    font-size: 0.85rem;
    color: var(--txt-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ==========================================
   CERTIFICATIONS BANNER SECTION
   ========================================== */
.cert-section {
    padding-top: 30; /* Merges closely with the section above */
}

/* ==========================================
   FIXED: VERTICALLY CENTERED BANNER
   ========================================== */
.cert-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #101a35 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    padding: 60px 50px;
    gap: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .cert-banner {
        flex-direction: row;
        /* THIS IS THE KEY FIX */
        align-items: center; 
        justify-content: space-between;
        min-height: 250px; /* Ensures the container has enough height to center into */
    }

    .cert-text-area {
        flex: 1.2;
        padding-right: 40px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        
        /* THIS FORCES THE TEXT AREA TO CENTER VERTICALLY */
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    
    .cert-badges-area {
        flex: 2;
        padding-left: 40px;
        display: flex;
        justify-content: space-around;
        align-items: center; /* Locks icons to the middle */
        height: 100%;
    }
}

/* Banner Glow Effect */
.cert-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at right, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    pointer-events: none;
}


.cert-text-area h2 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.cert-text-area p {
    color: #94a3b8;
    margin: 0;
    font-size: 1.05rem;
}

.cert-badges-area {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    z-index: 1;
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--clr-cyan);
    backdrop-filter: blur(5px);
    transition: var(--transition-normal);
}

.cert-item:hover .cert-icon {
    background: var(--gradient-secondary);
    color: var(--light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-blue);
    border-color: transparent;
}

.cert-item span {
    color: var(--light);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* ==========================================
   PHILOSOPHY SECTION - EDITORIAL DESIGN
   ========================================== */
.philosophy-section {
    padding: 120px 0;
    background: #ffffff;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

@media (min-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.phil-text-col h2 {
    font-size: 2.8rem;
    color: var(--txt-dark);
    margin: 20px 0;
    line-height: 1.1;
}

.phil-text-col p {
    color: var(--txt-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================
   REFINED PHILOSOPHY HIGHLIGHTS
   ========================================== */
.phil-highlight {
    margin-top: 30px;
    padding: 30px;
    
    /* Removed heavy background, added continuous border */
    background: transparent; 
    border: 2px solid var(--clr-blue); 
    border-radius: var(--border-radius-md);
    
    /* Text styling */
    color: var(--txt-dark); 
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    
    /* Subtle shadow for depth */
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.1);
}

/* Optional: Add a subtle glow to the continuous border on hover */
.phil-highlight:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.15);
}

/* Feature List (Matching the clean border style) */
.phil-feature {
    margin-bottom: 35px;
    padding-left: 25px;
    border-left: 3px solid var(--clr-blue); /* Stronger vertical border */
    transition: var(--transition-fast);
}

.phil-feature:hover {
    border-left-color: var(--secondary);
    padding-left: 35px; /* Subtle interaction effect */
}

.phil-feature h4 {
    font-family: var(--font-heading);
    color: var(--txt-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.phil-feature h4 i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ==========================================
   PHILOSOPHY SECTION - PREMIUM GRADIENT 
   ========================================== */
.philosophy-section {
    padding: 100px 0;
    background: #ffffff;
}

/* 1. THE GRADIENT FRAME (No Hover) */
.phil-highlight-gradient {
    margin-top: 30px;
    padding: 30px;
    background: #fff;
    border-radius: var(--border-radius-md);
    position: relative;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--txt-dark);
    
    /* Creating the continuous two-color gradient border */
    border: 3px solid transparent;
    background-image: linear-gradient(#fff, #fff), 
                      linear-gradient(to right, var(--clr-blue), var(--clr-purple));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* 2. THE RUNNING LINE (Persistent) */
.phil-feature-line {
    margin-bottom: 40px;
    padding-left: 25px;
    
    /* The persistent, non-hovering running line */
    border-left: 4px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(to bottom, var(--clr-blue), var(--clr-purple));
}

.phil-feature-line h4 {
    font-family: var(--font-heading);
    color: var(--txt-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.phil-feature-line h4 i {
    color: var(--clr-blue);
    font-size: 1.2rem;
}


/* Fix white gap between header and page-header on mobile */
@media screen and (max-width: 991px) {
    .header {
        margin-bottom: 0 !important;
    }
    
    .page-header {
        margin-top: 50px !important;
       
        padding-top: 70px; 
    }
}

/* --- NEW: Circular Animated Experience Badge --- */
.profile-image-container {
    position: relative; /* Ensures the badge stays locked to this container */
}

.circle-exp-badge {
    position: absolute;
    top: -70px;    /* Adjusted for better desktop balance */
    left: -30px;   /* Adjusted for desktop */
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), inset 0 0 15px rgba(14, 165, 233, 0.05);
    border: 4px solid #ffffff;
    z-index: 10;
    animation: floatCircleBadge 4s ease-in-out infinite;
}

/* Decorative spinning ring for a premium, realistic look */
.circle-exp-badge::before {
    content: '';
    position: absolute;
    top: -8px; left: -8px; right: -8px; bottom: -8px;
    border: 1px dashed var(--primary, #0ea5e9);
    border-radius: 50%;
    opacity: 0.6;
    animation: spinRing 20s linear infinite;
}

.circle-exp-badge .exp-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary, #0ea5e9);
    line-height: 1;
}

.circle-exp-badge .exp-txt {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--dark, #1f2937);
    text-transform: uppercase;
    text-align: center;
    margin-top: 4px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Animations */
@keyframes floatCircleBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================================
   RESPONSIVE DESIGN FOR TABLETS & MOBILE 
========================================= */

/* Tablets (Max Width: 991px) */
@media (max-width: 991px) {
    .circle-exp-badge {
        width: 120px;
        height: 120px;
        top: -30px;
        left: -15px;
    }
    .circle-exp-badge .exp-num {
        font-size: 2.2rem;
    }
    .circle-exp-badge .exp-txt {
        font-size: 0.65rem;
    }
}

/* Mobile Devices (Max Width: 767px) */
@media (max-width: 767px) {
    .profile-image-container {
        /* Adds space above the image so the badge doesn't cover your features list */
        margin-top: 35px; 
    }
    .circle-exp-badge {
        width: 95px;
        height: 95px;
        top: -50px;   /* Sits closer to the image */
        left: -5px;   /* Pushed inward so it doesn't get cut off the screen edge */
        border: 3px solid #ffffff; /* Slightly thinner border for mobile */
    }
    .circle-exp-badge::before {
        /* Adjust the dashed ring spacing for the smaller badge */
        top: -5px; left: -5px; right: -5px; bottom: -5px; 
    }
    .circle-exp-badge .exp-num {
        font-size: 1.8rem; /* Smaller font for mobile */
    }
    .circle-exp-badge .exp-txt {
        font-size: 0.55rem;
        margin-top: 2px;
    }
    
    /* Mute the float animation distance slightly for smaller screens */
    @keyframes floatCircleBadge {
        0% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
        100% { transform: translateY(0); }
    }
}