
:root {
    /* الألوان الأساسية */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #343A40;
    --black: #212529;
    
    /* ألوان مربعات المهن - ألوان فاتحة ومتنوعة */
    --career-color-1: #E3F2FD; /* أزرق فاتح */
    --career-color-2: #F3E5F5; /* بنفسجي فاتح */
    --career-color-3: #E8F5E8; /* أخضر فاتح */
    --career-color-4: #FFF3E0; /* برتقالي فاتح */
    --career-color-5: #FCE4EC; /* وردي فاتح */
    --career-color-6: #E0F2F1; /* فيروزي فاتح */
    
    /* ألوان التمييز */
    --accent-blue: #2196F3;
    --accent-dark: #1976D2;
    --dark-blue: #014c67;
}

* {
    margin: 0;
    padding: 0;
        text-align: center;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Almarai', sans-serif;
    line-height: 1.7;
    color: var(--black);
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 50%, var(--medium-gray) 100%);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Premium Header */
.premium-header {
background: linear-gradient(135deg, var(--accent-blue), var(--dark-blue));
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.premium-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.nav-toggle {
display: none;
background: none;
border: none;
font-size: 2rem;
color: white;
cursor: pointer;
border-radius: 8px;
transition: background 0.2s ease;
}

/* Mobile-only drawer chrome: hidden by default, shown inside the mobile nav media query */
.nav-drawer-header,
.nav-overlay {
    display: none;
}

/* Mobile Navigation - Removed duplicate styles */
.premium-header.scrolled {
    padding: 10px 0;
    backdrop-filter: blur(10px);
background: linear-gradient(135deg, var(--accent-blue), var(--dark-blue));}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar-brand img {
    width: 10rem;
    height: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Desktop navigation spacing */
@media (min-width: 992px) {
    .premium-nav {
        margin-right: 20px; /* Bring nav closer to logo */
    }
    
    .premium-nav ul {
        gap: 3px; /* Reduce spacing between nav items */
    }
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 70px;
    height: 70px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.4);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: rotate(10deg);
    box-shadow: 0 0 30px rgba(33, 150, 243, 0.6);
}

.logo i {
    font-size: 2rem;
    color: white;
}

.logo-text {
    color: var(--white);
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--white) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.premium-nav ul {
    display: flex;
    list-style: none;
}

.premium-nav ul li {
    margin: 0 15px;
    position: relative;
}

.premium-nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    padding: 10px 2px;
    transition: color 0.3s ease;
    position: relative;
}

/* Link icons are only meaningful in the mobile drawer; hidden on desktop nav */
.premium-nav ul li a i:not(.dropdown-arrow) {
    display: none;
}

.premium-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.premium-nav ul li a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.premium-nav ul li a:hover::after {
    width: 70%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.premium-cta {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.premium-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
}

/* Dropdown styles */
.dropdown {
position: relative;
}
.dropdown-menu {
display: none;
position: absolute;
top: 130%;
right: 0;
background: #fff;
min-width: max-content;
width: max-content;
max-width: 90vw;
box-shadow: 0 15px 35px rgba(0,0,0,0.15);
border: 1px solid rgba(0,0,0,0.06);
border-radius: 14px;
z-index: 100;
padding: 8px;
}
.dropdown-menu .dropdown-item {
color: #333;
padding: 12px 16px;
display: block;
text-align: right;
font-weight: 600;
border-radius: 8px;
white-space: nowrap;
transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-menu .dropdown-item:hover {
background: linear-gradient(135deg, var(--accent-blue), var(--dark-blue));
color: #fff;
}

/* Dropdown menu only on click */
.dropdown .dropdown-menu {
display: none;
}
.dropdown.open .dropdown-menu {
display: block;
}
.dropdown-toggle i {
margin-right: 8px;
font-size: 0.9em;
vertical-align: middle;
transition: transform 0.3s;
}
.dropdown.open .dropdown-toggle i {
transform: rotate(180deg);
}

/* Luxury Hero Section */
.luxury-hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--dark-gray);
    padding: 99px 0 99px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(33, 150, 243, 0.2);
    color: var(--accent-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    border: 1px solid rgba(33, 150, 243, 0.3);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--dark-gray);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--dark-gray);
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.8);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--dark-gray);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-luxury {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: rgba(33, 150, 243, 0.1);
    transform: translateY(-3px);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Networkat SD-WAN Promo Section */
.sdwan-promo {
    background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 60%, #0a2040 100%);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sdwan-promo-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 120, 200, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.sdwan-promo-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sdwan-promo-badge {
    display: inline-block;
    background: rgba(0, 170, 255, 0.15);
    border: 1px solid rgba(0, 170, 255, 0.4);
    color: #00d4ff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.sdwan-promo-title {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.sdwan-promo-title-accent {
    color: #00d4ff;
    display: block;
    margin-top: 6px;
}

.sdwan-promo-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 32px;
}

.sdwan-feature-grid {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sdwan-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 170, 255, 0.18);
    border-radius: 16px;
    padding: 22px 16px;
    width: 190px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.sdwan-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00aaff, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.sdwan-feature-card:hover {
    transform: translateY(-6px);
    background: rgba(0, 170, 255, 0.08);
    border-color: rgba(0, 170, 255, 0.4);
    box-shadow: 0 12px 30px rgba(0, 120, 200, 0.25);
}

.sdwan-feature-card:hover::before {
    opacity: 1;
}

.sdwan-feature-card-highlight {
    background: rgba(0, 120, 200, 0.15);
    border-color: rgba(0, 120, 200, 0.4);
}

.sdwan-feature-card-highlight:hover {
    background: rgba(0, 120, 200, 0.22);
}

.sdwan-feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: rgba(0, 170, 255, 0.12);
    border-radius: 14px;
    transition: transform 0.35s ease;
}

.sdwan-feature-card:hover .sdwan-feature-icon {
    transform: scale(1.1) rotate(-4deg);
}

.sdwan-feature-label {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.sdwan-feature-card-highlight .sdwan-feature-label {
    color: #00d4ff;
}

.sdwan-promo-cta {
    display: inline-block;
    background: #0078C8;
    color: white;
    padding: 14px 42px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 120, 200, 0.5);
    transition: all 0.3s ease;
}

.sdwan-promo-cta:hover {
    background: #00aaff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 170, 255, 0.5);
}

@media (max-width: 576px) {
    .sdwan-feature-card {
        width: 140px;
        min-height: 120px;
        padding: 18px 14px;
    }
}

/* NCA Exam Section */
.nca-exam-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.nca-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nca-text {
    flex: 1;
}

.nca-badge {
    display: inline-block;
    background: rgba(33, 150, 243, 0.2);
    color: var(--accent-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.nca-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.2;
}

.nca-subtitle {
    font-size: 1.3rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
    font-weight: 600;
}

.nca-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.nca-features {
    list-style: none;
    margin-bottom: 40px;
}

.nca-features li {
    color: var(--dark-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.nca-features li i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.nca-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nca-image {
    flex: 1;
    text-align: center;
}

.nca-certificate {
    width: 100%;
    height: 700px;
    max-width: 627px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.nca-certificate:hover {
    transform: scale(1.03);
}

/* Interactive Career Paths */
.career-paths {
    padding: 45px 0;
    background: var(--light-gray);
}

.career-paths-header {
    text-align: center;
    margin-bottom: 80px;
}

.career-paths-header .section-badge {
    background: rgba(33, 150, 243, 0.2);
    color: var(--accent-dark);
}

.career-paths-header .section-title {
    color: var(--dark-gray);
}

.career-paths-header .section-title::after {
    background: var(--accent-blue);
}

.career-paths-header .section-subtitle {
    color: var(--dark-gray);
}

.path-slider {
    position: relative;
}

.path-slider-track {
    position: relative;
    overflow: hidden;
    transition: height 0.4s ease;
}

.path-item {
    display: flex;
    align-items: stretch;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.path-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.path-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 35px;
}

.path-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--medium-gray);
    background: var(--white);
    color: var(--accent-blue);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

#pathPrev {
    right: 10px;
}

#pathNext {
    left: 10px;
}

.path-nav-btn:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--dark-blue));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.35);
}

.path-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.path-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.path-dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--accent-blue);
}

.path-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.path-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.path-item:hover .path-image img {
    transform: scale(1.05);
}

.path-content {
    flex: 1;
    padding: 60px;
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--medium-gray);
}

.path-item:nth-child(even) .path-content {
    border-right: none;
    border-left: 1px solid var(--medium-gray);
}

.path-content h3 {
    font-size: 2.2rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.path-content p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.path-features {
    list-style: none;
    margin-bottom: 30px;
}

.path-features li {
    color: var(--dark-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.path-features li i {
    color: var(--accent-blue);
}

.path-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.path-link:hover {
    gap: 15px;
    color: var(--accent-dark);
}

/* Professional Skills Section - بألوان متنوعة */
.professional-skills {
    padding: 60px 0;
    background: var(--white);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.skill-card {
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ألوان مختلفة لكل بطاقة */
.skill-card:nth-child(1) {
    background: var(--career-color-1);
}

.skill-card:nth-child(2) {
    background: var(--career-color-2);
}

.skill-card:nth-child(3) {
    background: var(--career-color-3);
}

.skill-card:nth-child(4) {
    background: var(--career-color-4);
}

.skill-card:nth-child(5) {
    background: var(--career-color-5);
}

.skill-card:nth-child(6) {
    background: var(--career-color-6);
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.skill-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.skill-card h4 {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.skill-card p {
    color: var(--dark-gray);
    opacity: 0.8;
    line-height: 1.7;
}

/* Training Programs Section */
.training-programs {
    padding: 80px 0;
    background: var(--light-gray);
}

.programs-header {
    text-align: center;
    margin-bottom: 80px;
}

.programs-header .section-badge {
    background: rgba(52, 58, 64, 0.1);
    color: var(--dark-gray);
}

.programs-header .section-title {
    color: var(--dark-gray);
}

.programs-header .section-title::after {
    background: var(--accent-blue);
}

.programs-header .section-subtitle {
    color: var(--dark-gray);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.program-card-premium {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--medium-gray);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.program-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-blue);
}

.program-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card-premium:hover .program-image img {
    transform: scale(1.1);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.program-content {
    padding: 30px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.program-content p {
    color: var(--dark-gray);
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.7;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    border-top: 1px solid var(--medium-gray);
    padding-top: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--accent-blue);
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.program-link:hover {
    gap: 15px;
    color: var(--accent-dark);
}

/* Exclusive Stats Section */
.exclusive-stats {
    padding: 60px 0;
    background: var(--white);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
}

.stat-number-premium {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    display: block;
    margin-bottom: 10px;
}

.stat-label-premium {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Exclusive Stats Section (premium dark variant, used by index.php and about-us.php) */
#exclusive-stats {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 60%, #0a2040 100%);
    overflow: hidden;
}

#exclusive-stats .stats-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.18) 0%, transparent 70%);
}

#exclusive-stats .stats-glow-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
}

#exclusive-stats .stats-glow-2 {
    width: 400px;
    height: 400px;
    bottom: -180px;
    left: -100px;
}

#exclusive-stats .section-header .section-badge {
    background: rgba(33, 150, 243, 0.15);
    color: #4fc3f7;
}

#exclusive-stats .section-header .section-title {
    color: #fff;
}

#exclusive-stats .section-header .section-title::after {
    background: linear-gradient(90deg, var(--accent-blue), #4fc3f7);
}

#exclusive-stats .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

#exclusive-stats .stats-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

#exclusive-stats .stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    height: auto;
    min-height: 220px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

#exclusive-stats .stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(33, 150, 243, 0.45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

#exclusive-stats .stat-icon {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #4fc3f7 100%);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.35);
}

#exclusive-stats .stat-number-premium {
    background: linear-gradient(135deg, #ffffff 0%, #8ecdf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#exclusive-stats .stat-label-premium {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    #exclusive-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #exclusive-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    #exclusive-stats .stat-card {
        padding: 26px 16px;
        min-height: auto;
    }

    #exclusive-stats .stat-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    #exclusive-stats .stat-number-premium {
        font-size: 28px;
        font-weight: 700;
    }

    #exclusive-stats .stat-label-premium {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    #exclusive-stats .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* New Training Programs Section */
.testimonials-section{
        padding: 80px 0;

}
.training-programs-section-1 {
    padding: 80px 0;
    background: var(--light-gray);
}

.programs-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.program-card-compact {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--medium-gray);
    height: 500px; /* Increased height to accommodate larger images */
    display: flex;
    flex-direction: column;
}

.program-card-compact:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-blue);
}

.program-image-compact {
    height: 276px; /* Increased height for better visibility */
    overflow: hidden;
    position: relative;
}

.program-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Ensure images are centered */
    transition: transform 0.5s ease;
}

.program-card-compact:hover .program-image-compact img {
    transform: scale(1.1);
}

.program-badge-compact {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.program-content-compact {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-content-compact h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.program-content-compact p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.program-button-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.program-button-compact:hover {
    gap: 12px;
    color: var(--accent-dark);
}

/* Distinguished Testimonials */
        .testimonials-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-block;
            background: rgba(33, 150, 243, 0.2);
            color: var(--accent-dark);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--dark-gray);
            margin-bottom: 20px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--accent-blue);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 30px auto ;
            line-height: 1.7;
        }
        


@media (max-width: 768px) {
  .testimonial-card-premium {
    flex: 0 0 80%;
  }
  .testimonials-nav.prev {
    right: 5px;
  }
  .testimonials-nav.next {
    right: 5px;
  }
}

        .testimonial-text {
            color: var(--dark-gray);
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 20px;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .author-info h4 {
            color: var(--dark-gray);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--accent-blue);
            font-size: 0.9rem;
        }
        

/* Partners Section - Modern Redesign */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.partners-section .container {
    position: relative;
    z-index: 2;
}

.partners-marquee-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    direction: ltr;
}

.partners-marquee-row {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 10px 24px;
    direction: rtl;
}

.partners-marquee-track-left {
    animation: partnersMarqueeLeft 75s linear infinite;
}

.partners-marquee-track-right {
    animation: partnersMarqueeRight 75s linear infinite;
}

.partners-marquee-row:hover .partners-marquee-track {
    animation-play-state: paused;
}

@keyframes partnersMarqueeLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes partnersMarqueeRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.partner-logo {
    flex: 0 0 auto;
    width: 220px;
    background: var(--white);
    border-radius: 22px;
    padding: 28px 24px 22px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 28px rgba(1, 76, 103, 0.08);
    border: 2px solid rgba(1, 76, 103, 0.06);
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.partner-name {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--dark-gray);
    opacity: 0.85;
}

.partner-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-blue), var(--dark-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-logo-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.partner-logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo-icon i {
    font-size: 1.8rem;
    color: var(--accent-blue);
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(1, 76, 103, 0.18);
    border-color: transparent;
    background: linear-gradient(135deg, var(--white) 0%, rgba(33, 150, 243, 0.06) 100%);
}

.partner-logo:hover::before {
    opacity: 1;
}

.partner-logo:hover .partner-logo-icon {
    transform: scale(1.08);
}

/* Premium Footer */
.premium-footer {
    background: linear-gradient(180deg, var(--dark-gray) 0%, #24282c 100%);
    color: var(--light-gray);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--dark-blue), var(--accent-blue));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column {
    position: relative;
}

.footer-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-end: -25px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.footer-logo {
   width: 250px;
    height: auto;
    margin: 0 0 25px 0;
    display: block;
}

.footer-column h3 {
    font-size: 1.35rem;
    font-weight: 700;
    text-align: right;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
    color: var(--white);
    letter-spacing: 0.3px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--dark-blue));
}

.footer-column p {
    color: var(--light-gray);
    opacity: 0.75;
    line-height: 1.85;
    margin-bottom: 22px;
    text-align: rights;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: var(--light-gray);
    opacity: 0.85;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-column ul li a i {
    font-size: 0.7rem;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-blue);
    opacity: 1;
    transform: translateX(-6px);
}

.footer-column ul li a:hover i {
    transform: translateX(-3px);
}

.social-links-premium {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    justify-content: flex-start;
}

.social-links-premium a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-gray);
    transition: all 0.3s ease;
    font-size: 1.05rem;
    text-decoration: none !important;
}

.social-links-premium a:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--dark-blue));
    border-color: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.35);
}

.footer-bottom {
    text-align: center;
    padding: 28px 0;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--light-gray);
    opacity: 0.7;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--dark-blue));
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(33, 150, 243, 0.55);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .premium-footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        gap: 40px;
        text-align: center;
    }

    .footer-column:not(:last-child)::after {
        display: none;
    }

    .footer-column h3::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-column ul li a {
        justify-content: center;
    }

    .social-links-premium {
        justify-content: center;
    }
}

/* MOBILE NAVIGATION */
@media (max-width: 991px){
/* Mobile header layout - logo left, toggle right */
.header-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}
.premium-nav ul li {
    margin: 0 ;
}
.nav-toggle { 
    display: block !important; 
    margin-left: 0;
    order: 2; /* Move to right side */
    z-index: 1001;
    position: relative;
    cursor: pointer;
    padding: 10px;
    border: none;
    background: transparent;
}

.nav-toggle:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.nav-toggle:active {
    transform: scale(0.95);
}

.navbar-brand {
    order: 1; /* Move logo to left side */
}

/* Off-canvas side drawer */
.premium-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 320px);
    height: 100vh;
    background: linear-gradient(165deg, var(--accent-blue) 0%, var(--dark-blue) 55%, #062a3d 100%);
    display: flex;
    flex-direction: column;
    padding: 0 0 24px;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-nav.open {
    transform: translateX(0);
}

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    background: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 10px;
}

.nav-drawer-logo {
    width: 8.5rem;
    height: auto;
}

.nav-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-drawer-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Backdrop overlay */
.nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 20, 0.55);
    backdrop-filter: blur(2px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body class for mobile nav open state */
body.nav-open {
    overflow: hidden;
}

.premium-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    direction: rtl;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0 12px;
}

.premium-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.premium-nav.open li {
    opacity: 1;
    transform: translateX(0);
}

.premium-nav.open li:nth-child(1) { transition-delay: 0.08s; }
.premium-nav.open li:nth-child(2) { transition-delay: 0.12s; }
.premium-nav.open li:nth-child(3) { transition-delay: 0.16s; }
.premium-nav.open li:nth-child(4) { transition-delay: 0.2s; }
.premium-nav.open li:nth-child(5) { transition-delay: 0.24s; }
.premium-nav.open li:nth-child(6) { transition-delay: 0.28s; }
.premium-nav.open li:nth-child(7) { transition-delay: 0.32s; }

.premium-nav a {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-decoration: none;
    padding: 15px 10px;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease, padding-right 0.2s ease;
}

.premium-nav a i:not(.dropdown-arrow) {
    display: inline-block;
    width: 22px;
    text-align: center;
    color: #9fd8ff;
    font-size: 0.95em;
}

.premium-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    padding-right: 16px;
}

/* dropdown in mobile - toggle open with JS */
.dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    border-radius: 10px;
    padding: 6px;
    display: none;
    margin:  10px 0;
    max-height: 0;
    overflow: hidden;
}

.dropdown.open > .dropdown-menu {
    display: block;
    max-height: 300px;
}

.dropdown .dropdown-item {
    padding: 12px 18px;
    background: transparent;
    margin: 4px 0;
    border-radius: 8px;
    text-align: right;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.dropdown-toggle span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-toggle .dropdown-arrow {
    margin-right: 8px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
    color: #fff;
}
}


/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .nca-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .path-item {
        flex-direction: column !important;
    }

    .path-image, .path-content {
        flex: none;
        width: 100%;
        height: auto;
    }

    .path-image {
        height: 220px;
    }

    .path-content {
        height: auto;
    }

    .feature-card-elite, .skill-card, .stat-card {
        height: auto;
        min-height: 380px;
    }
    
    .program-card-premium {
        height: auto;
    }
    
    .program-card-compact {
        height: auto;
        min-height: 450px;
    }
    
    .testimonial-card-premium {
        height: auto;
        min-height: 320px;
    }
    
    .partners-marquee-track {
        gap: 16px;
    }

    .partner-logo {
        width: 160px;
        min-height: 120px;
        padding: 20px 16px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .partner-logo-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 992px) {
    /* Remove the display: none that was hiding mobile nav links */
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .programs-grid-1 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .nca-content {
        flex-direction: column;
    }
    
    .nca-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-luxury {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nca-title {
        font-size: 2rem;
    }
    
    .features-grid, .programs-grid, .testimonials-grid, .skills-grid, .programs-grid-1 {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .path-content {
        padding: 40px 30px;
    }
    
    .path-content h3 {
        font-size: 1.8rem;
    }
    
    .nca-buttons {
        flex-direction: column;
    }
    
    /*.testimonials-container {*/
    /*    padding: 0 60px;*/
    /*}*/
    
    .testimonials-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonials-nav.prev {
        left: 10px;
    }
    
    .testimonials-nav.next {
        right: 10px;
    }
    
    .testimonial-card-premium {
        min-width: 300px;
        max-width: 350px;
        height: auto;
        min-height: 280px;
    }
}

@media (max-width: 576px) {
    .header-container {
        /*flex-direction: column;*/
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .premium-cta {
        margin-top: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .path-content {
        padding: 30px 20px;
    }
    
    .program-content-compact {
        padding: 20px;
    }
    
    .nca-title {
        font-size: 1.8rem;
    }
    
    /*.testimonials-container {*/
    /*    padding: 0 50px;*/
    /*}*/
    
    .testimonials-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .testimonials-nav.prev {
        left: 5px;
    }
    
    .testimonials-nav.next {
        right: 5px;
    }
    
    .testimonial-card-premium {
        min-width: 280px;
        max-width: 320px;
        height: auto;
        min-height: 260px;
        padding: 30px 20px;
    }
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
position: fixed;
width: 60px;
height: 60px;
bottom: 30px;
left: 30px;
z-index: 100;
}

.whatsapp-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-link:hover {
background-color: #128C7E;
transform: scale(1.1);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
animation-play-state: paused;
}

.fab  {
color: white;
transition: all 0.3s ease;
}

.whatsapp-link:hover .whatsapp-icon {
transform: rotate(15deg);
}

/* Tooltip */
.tooltip {
position: absolute;
right: 70px;
width: max-content;
padding: 8px 12px;
background-color: #333;
color: white;
border-radius: 4px;
font-size: 14px;
font-family: Arial, sans-serif;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
direction:rtl;
}

.whatsapp-link:hover .tooltip {
opacity: 1;
visibility: visible;
right: 80px;
}

/* Pulse Animation */
@keyframes whatsappPulse {
0% { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.6); }
70% { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 0 18px rgba(37, 211, 102, 0); }
100% { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Page Top Header (shared hero banner used by partials/page-header.php) */
.page-top-header {
    background: linear-gradient(135deg, #006994, #004d73);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.page-top-header h1 {
    color: #fff;
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-top-header p {
    color: #fff;
    font-weight: 400;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .page-top-header {
        padding: 40px 15px;
    }

    .page-top-header h1 {
        font-size: 1.9rem;
    }

    .page-top-header p {
        font-size: 1rem;
    }
}


