:root {
    /* Color Palette - Logo Inspired (Vibrant & Warm) */
    --primary-color: #6B4E9E;
    /* Purple from logo text 'Orbit' */
    --secondary-color: #F7941E;
    /* Orange from logo icon */
    --accent-color: #8CC63F;
    /* Green from logo icon */
    --accent-blue: #29ABE2;
    /* Blue from logo icon */

    --text-color: #434A54;
    /* Dark Grey */
    --text-light: #656D78;
    /* Light Grey */
    --bg-color: #F5F7FA;
    /* Very light grey/white */
    --white: #FFFFFF;

    /* Typography */
    --font-family: 'Tajawal', sans-serif;

    /* Spacing */
    --container-padding: 2rem;
    --section-padding: 4rem 2rem;

    /* BorderRadius */
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for sticky navbar */
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    direction: var(--direction, rtl);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

ul {
    list-style: none;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.grid {
    display: grid;
}

/* Language Toggle */
body[dir="rtl"] {
    --direction: rtl;
}

/* Navbar Utilities */
.navbar .nav-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-cta {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-cta.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Hero Section Redesign */
.hero-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 5% 10%, #F5F7FA 0%, #FFFFFF 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Typography & Badge */
.hero-badge {
    display: inline-block;
    background: #E9D8FD;
    /* Light purple */
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hero-start-word {
    display: block;
    color: var(--text-color);
}

.hero-highlight-word {
    display: block;
    color: var(--primary-color);
    /* Purple */
}

.hero-accent-word {
    display: block;
    color: var(--secondary-color);
    /* Blue/Cyan */
}

/* Image & Floating Card (Visuals) */
.hero-visual {
    position: relative;
}

.hero-image-container {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: rotate(0deg);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: 20px;
    /* Logical start check below */
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 300px;
    z-index: 2;
}

body[dir="rtl"] .floating-card {
    right: auto;
    left: -20px;
}

body[dir="ltr"] .floating-card {
    right: -20px;
    left: auto;
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: #EBF8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

/* LTR/RTL Logic Updates */
body[dir="ltr"] {
    text-align: left;
    direction: ltr;
}

body[dir="rtl"] {
    text-align: right;
    direction: rtl;
}

/* Ensure Text Shifts Correctly */
body[dir="ltr"] .text-start {
    text-align: left;
}

body[dir="rtl"] .text-start {
    text-align: right;
}

/* Flex Direction Fixes for LTR */
body[dir="ltr"] .nav-group {
    flex-direction: row;
}

/* Fix specific spacing margins that might be hardcoded */
body[dir="ltr"] .mr-auto {
    margin-right: auto;
    margin-left: 0;
}

body[dir="ltr"] .ml-auto {
    margin-left: auto;
    margin-right: 0;
}

/* Utilities */
.text-start {
    text-align: start;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-container {
        transform: rotate(0);
        margin: 2rem 0;
    }

    body[dir="rtl"] .floating-card,
    body[dir="ltr"] .floating-card {
        right: 0;
        left: 0;
        margin: 0 auto;
        bottom: -30px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    /* Will be adjusted by JS based on dir */
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background: var(--white);
    z-index: 1100;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transform: translateX(100%);
    /* Default RTL hidden state */
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* LTR Support for Mobile Menu */
html[dir="ltr"] .mobile-menu-container {
    transform: translateX(-100%);
    left: 0;
    right: auto;
}

html[dir="rtl"] .mobile-menu-container {
    transform: translateX(100%);
    right: 0;
    left: auto;
}

html[dir="ltr"] body.mobile-menu-open .mobile-menu-container {
    transform: translateX(0);
}

html[dir="rtl"] body.mobile-menu-open .mobile-menu-container {
    transform: translateX(0);
}

.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .navbar .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar .nav-group.desktop-only {
        display: none;
    }
}

@media (min-width: 901px) {

    .mobile-menu-overlay,
    .mobile-menu-container {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* Contact Section Redesign (Split Card) */
.contact-split-card {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-side {
    flex: 1;
    background: var(--primary-color);
    color: white;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    min-width: 300px;
}

.contact-form-side {
    flex: 1.5;
    padding: 3rem;
    background: white;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-placeholder {
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #F8F9FA;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

@media (max-width: 768px) {
    .contact-split-card {
        flex-direction: column;
    }

    .contact-info-side {
        padding: 2rem;
    }

    .contact-form-side {
        padding: 2rem;
    }

    /* Layout */
    .flex {
        flex-wrap: wrap;
    }

    .intro-features .flex {
        flex-wrap: nowrap;
        /* Keep checkmarks inline */
    }

    /* Fix Navbar Wrapping */
    .navbar .container,
    .navbar .nav-group {
        flex-wrap: nowrap !important;
    }

    .navbar .container {
        padding: 0.5rem 1rem;
    }

    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem !important;
    }

    .hero-section h2 {
        font-size: 1.5rem !important;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem !important;
    }

    .founder-section .container {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        justify-content: center;
    }

    .contact-container form div {
        grid-template-columns: 1fr !important;
    }

    .footer .grid {
        gap: 2rem !important;
        text-align: center;
    }

    .footer .flex {
        align-items: center;
    }
}

/* Services Page Redesign Styles */
.page-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background-color: #F8F9FA;
    /* Fallback */
    color: var(--text-color);
    text-align: center;
}

.page-hero .overlay {
    background: linear-gradient(to right, rgba(245, 247, 250, 0.9), rgba(245, 247, 250, 0.7));
    position: absolute;
    inset: 0;
}

/* Feature Collage */
.feature-collage img {
    transition: transform 0.5s ease;
}

.feature-collage:hover img {
    transform: scale(1.05);
}

.floating-play {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 148, 30, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(247, 148, 30, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(247, 148, 30, 0);
    }
}

/* About Page Redesign */
.about-hero-minimal h1 {
    letter-spacing: -2px;
}

/* About Page Redesign - Vibrant Hero */
.hero-vibrant {
    position: relative;
    padding: 10rem 0 8rem;
    background: linear-gradient(135deg, #6B4E9E 0%, #4A3078 100%);
    text-align: center;
    overflow: hidden;
    color: white;
}

/* Badge Soon */
.badge-soon {
    font-size: 0.7rem;
    font-weight: 700;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.1rem 0.5rem;
    border-radius: 999px;
    margin-inline-start: 0.5rem;
    vertical-align: middle;
    display: inline-block;
    line-height: 1.2;
}

/* Background Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #F7941E;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #8CC63F;
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #29ABE2;
    top: 40%;
    left: 20%;
    animation-delay: 4s;
    opacity: 0.2;
}

/* Content Animations */
.hero-title-anim {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-desc-anim {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    /* 0.3s delay */
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respnsive tweaks for hero */
@media (max-width: 768px) {
    .hero-vibrant {
        padding: 6rem 0 4rem;
    }

    .hero-title-anim {
        font-size: 3rem;
    }

    .hero-desc-anim {
        font-size: 1.1rem;
    }
}

.vision-container {
    position: relative;
    overflow: hidden;
}

.value-circle {
    transition: transform 0.3s ease;
}

.value-item:hover .value-circle {
    transform: scale(1.1) rotate(5deg);
}

.team-card-minimal {
    text-align: center;
    cursor: pointer;
}

.team-card-minimal img {
    transition: transform 0.5s ease;
}

.team-card-minimal:hover img {
    transform: scale(1.1);
}

/* Ensure images don't overflow rounded corners during transform */
.team-card-minimal div {
    overflow: hidden;
}

/* Service Card Modern */
.service-card-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: white;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

/* Ensure consistent card heights */
/* =========================================
   MOBILE UI REDESIGN (App-like Experience)
   ========================================= */

/* Default State: Bottom Nav Hidden on Desktop */
.bottom-nav {
    display: none;
}

@media (max-width: 768px) {

    /* 1. Hide Desktop/Hamburgermenu Navigation Elements */
    .mobile-menu-btn,
    .mobile-menu-container,
    .mobile-menu-overlay {
        display: none !important;
    }

    /* 2. Simplified Header */
    .navbar .container {
        justify-content: space-between;
        /* Center logo if desires, or space-between */
    }

    /* 3. Show & Style Bottom Navigation */
    .bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 0.5rem 0;
        border-top: 1px solid #eee;
        z-index: 10000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
        padding-bottom: env(safe-area-inset-bottom);
        /* Safe area for iPhone X+ */
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        font-size: 0.75rem;
        color: var(--text-light);
        padding: 0.5rem;
        border-radius: 12px;
        transition: color 0.2s, background 0.2s;
    }

    .bottom-nav-item.active {
        color: var(--primary-color);
        background: rgba(107, 78, 158, 0.1);
    }

    .bottom-nav-item svg {
        width: 24px;
        height: 24px;
    }

    /* 4. Layout Adjustments */
    body {
        padding-bottom: 80px;
        /* Space for bottom nav */
    }

    /* Hero: Image Top, Text Bottom */
    .hero-grid,
    .hero-vibrant .grid {
        display: flex;
        flex-direction: column-reverse;
        /* Puts the second child (Image) on top? NO. 
                                          Default HTML is: 1. Text, 2. Image.
                                          Column-reverse makes 2. Image first, 1. Text second.
                                          Wait, verify HTML order.
                                          HTML: Text (Lines 68-97), Image (Lines 100-125).
                                          If flex-direction: column, Text is Top.
                                          If flex-direction: column-reverse, Image is Top.
                                          Correct.
                                       */
    }

    /* Fix Hero Stacking Order explicitly if needed */
    .hero-vibrant .grid> :first-child {
        /* Text Container */
        /* No special rule needed if using column-reverse */
    }

    /* Adjust Spacing */
    .hero-section {
        padding: 2rem 0 4rem;
        text-align: center;
    }

    .hero-image-container {
        margin-bottom: 2rem;
        transform: rotate(0);
        max-width: 100%;
    }

    /* Floating Card Adjustment for Mobile */
    /* Floating Card Adjustment for Mobile */
    .floating-card {
        bottom: 10px !important;
        right: 50% !important;
        transform: translateX(50%);
        /* Centering for RTL (right: 50%) */
        /* If using left: 50%, transform would be translateX(-50%) */

        width: auto !important;
        max-width: 90vw;
        /* Prevent overflow if really tiny screen */
        white-space: nowrap;
        /* Don't wrap */
        justify-content: center;

        padding: 0.5rem 1rem !important;
        /* Smaller padding */
        gap: 0.8rem !important;
    }

    /* Scale down inner elements */
    .floating-card>div:first-child {
        width: 40px !important;
        height: 40px !important;
    }

    .floating-card svg {
        width: 20px !important;
        height: 20px !important;
    }

    .floating-card strong {
        font-size: 0.85rem !important;
    }

    .floating-card span {
        font-size: 0.7rem !important;
    }

    /* Typography Adjustments */
    .hero-title-anim {
        font-size: 2.2rem;
    }

    .hero-desc-anim {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Grid Adjustments */
    .grid {
        gap: 2rem;
    }

    .contact-split-card {
        margin: 0 1rem;
    }
}

/* Service Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    /* reversed for RTL if needed, but absolute positioning usually needs specific care */
    background: #F0F2F5;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: #E2E8F0;
}

/* For RTL */
body[dir="rtl"] .modal-close-btn {
    left: 1.5rem;
    right: auto;
}

body[dir="ltr"] .modal-close-btn {
    right: 1.5rem;
    left: auto;
}


.modal-header {
    padding: 3rem 3rem 1rem;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.modal-content {
    padding: 1rem 3rem 3rem;
    overflow-y: auto;
    line-height: 1.8;
    color: var(--text-color);
}

.modal-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-tag {
    background: #F0F2F5;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
    }

    .modal-header,
    .modal-content {
        padding: 1.5rem;
    }
}

/* Service Card Hover Interactions */
/* General Hover Transitions */
.service-card-modern,
.service-card-modern * {
    transition: all 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent !important;
}

/* Text & elements color change on hover */
.service-card-modern:hover h3,
.service-card-modern:hover p,
.service-card-modern:hover a,
.service-card-modern:hover .icon-box-modern {
    color: white !important;
}

.service-card-modern:hover a {
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.service-card-modern:hover .icon-box-modern {
    background: rgba(255, 255, 255, 0.2) !important;
}

.service-card-modern:hover svg {
    stroke: white !important;
}


/* Specific Gradients per Card Type */

/* Diagnostic: Orange Gradient */
.service-card-diagnostic:hover {
    background: linear-gradient(135deg, #FAD961 0%, #F7941E 100%) !important;
}

/* Speech: Cyan/Blue Gradient */
.service-card-speech:hover {
    background: linear-gradient(135deg, #AEE4FF 0%, #29ABE2 100%) !important;
}

/* OT: Green Gradient */
.service-card-ot:hover {
    background: linear-gradient(135deg, #C9F0C9 0%, #8CC63F 100%) !important;
}

/* ABA: Purple Gradient */
.service-card-aba:hover {
    background: linear-gradient(135deg, #D6BCFA 0%, #6B4E9E 100%) !important;
}

/* Medical: Purple Gradient (Primary) */
.service-card-medical:hover {
    background: linear-gradient(135deg, #D6BCFA 0%, #6B4E9E 100%) !important;
}

/* Early Intervention: Purple Gradient (Primary) */
.service-card-early:hover {
    background: linear-gradient(135deg, #D6BCFA 0%, #6B4E9E 100%) !important;
}

/* Diagnostic: Blue Gradient (Secondary) */
.service-card-diagnostic:hover {
    background: linear-gradient(135deg, #90CDF4 0%, #4299E1 100%) !important;
}

/* Speech: Orange Gradient */
.service-card-speech:hover {
    background: linear-gradient(135deg, #FBD38D 0%, #F7941E 100%) !important;
}

/* OT: Green Gradient (Accent) */
.service-card-ot:hover {
    background: linear-gradient(135deg, #9AE6B4 0%, #48BB78 100%) !important;
}

/* Learning: Red Gradient */
.service-card-learning:hover {
    background: linear-gradient(135deg, #FEB2B2 0%, #C53030 100%) !important;
}

/* Psychomotor: Teal Gradient */
.service-card-psychomotor:hover {
    background: linear-gradient(135deg, #81E6D9 0%, #319795 100%) !important;
}

/* Sensory: Purple Gradient */
.service-card-sensory:hover {
    background: linear-gradient(135deg, #E9D8FD 0%, #805AD5 100%) !important;
}

/* Son-Rise: Gray-Blue Gradient */
.service-card-sonrise:hover {
    background: linear-gradient(135deg, #CBD5E0 0%, #4A5568 100%) !important;
}

/* Training: Gold Gradient */
.service-card-training:hover {
    background: linear-gradient(135deg, #FAF089 0%, #D69E2E 100%) !important;
}

/* Process Section */
.process-step {
    align-items: flex-start;
}

.process-step:hover h3 {
    color: var(--primary-color) !important;
}

/* CTA Banner */
.cta-banner {
    color: white;
}