/* ===== CSS Variables ===== */
:root {
    --primary: #1E28B4;
    --primary-dark: #151D8A;
    --primary-light: #2D38CC;
    --secondary: #FA6400;
    --secondary-dark: #E05A00;
    --secondary-light: #FF7A1A;
    --accent: #FA6400;
    --dark: #1A1A2E;
    --dark-2: #2D2D44;
    --gray-900: #1a1a2e;
    --gray-800: #2d2d44;
    --gray-700: #40405a;
    --gray-600: #6c6c80;
    --gray-500: #8e8ea0;
    --gray-400: #b0b0c0;
    --gray-300: #d1d1db;
    --gray-200: #e8e8ed;
    --gray-100: #f4f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1E28B4 0%, #FA6400 100%);
    --gradient-hero: linear-gradient(135deg, #0F1233 0%, #1A1A2E 50%, #1E28B4 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(30,40,180,0.03) 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --shadow-card: 0 2px 12px rgba(30,40,180,0.08);
    --shadow-hover: 0 8px 24px rgba(30,40,180,0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.3;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(10,110,189,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(10,110,189,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left a {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover {
    color: var(--secondary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-right span {
    color: var(--gray-500);
}

.top-bar-right a {
    color: var(--gray-400);
    font-size: 14px;
}

.top-bar-right a:hover {
    color: var(--secondary);
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-link i {
    font-size: 10px;
    transition: var(--transition);
}

/* Dropdown */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 20px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: var(--white);
    border-left: 1px solid rgba(0,0,0,0.05);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--primary);
    font-size: 13px;
    opacity: 0.7;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(30,40,180,0.05), rgba(250,100,0,0.05));
    color: var(--primary);
    padding-left: 16px;
}

.dropdown-item:hover i {
    opacity: 1;
}

/* Mega Dropdown */
.dropdown-mega {
    left: 0;
    transform: translateX(0) translateY(10px);
    width: 700px;
    padding: 0;
    overflow: hidden;
}

.dropdown-mega::before {
    left: 30px;
    transform: translateX(0) rotate(45deg);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}

.mega-col {
    padding: 20px;
    border-right: 1px solid var(--gray-200);
}

.mega-col:last-child {
    border-right: none;
}

.mega-col h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gray-500);
    padding: 0 0 14px;
    margin-bottom: 4px;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.mega-col h5 i {
    color: var(--secondary);
    font-size: 12px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.mega-item:hover {
    background: linear-gradient(135deg, rgba(30,40,180,0.06), rgba(250,100,0,0.04));
    transform: translateX(4px);
}

.mega-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 800;
    font-family: var(--font-primary);
    flex-shrink: 0;
}

.mega-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(30,40,180,0.1), rgba(250,100,0,0.1));
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.mega-icon i {
    font-size: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mega-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mega-info strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.mega-info small {
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.3;
}

.mega-cta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.mega-cta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.mega-cta a:hover {
    gap: 10px;
    color: var(--secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    background: var(--gradient-hero);
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(15,18,51,0.95) 0%, rgba(26,26,46,0.75) 40%, rgba(30,40,180,0.20) 70%, transparent 100%),
        url('/images/hero-bg.jpg') center/cover no-repeat;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-text {
    text-align: left;
    max-width: 650px;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250,100,0,0.15);
    color: var(--secondary-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(250,100,0,0.2);
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 17px;
    color: var(--gray-300);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-bottom: 32px;
    justify-content: flex-start;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-primary);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray-400);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
}

/* Hero Form Card - removed from hero, kept for potential reuse */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

/* Hero Form Card */
.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.form-icon i {
    font-size: 22px;
    color: var(--white);
}

.form-header h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.form-header p {
    font-size: 14px;
    color: var(--gray-600);
}

.hero-form .form-group {
    margin-bottom: 14px;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-secondary);
    color: var(--dark);
    transition: var(--transition);
    background: var(--gray-50);
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(10,110,189,0.1);
}

.hero-form input::placeholder {
    color: var(--gray-500);
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 16px;
    cursor: pointer;
}

.consent-check input {
    margin-top: 2px;
    accent-color: var(--primary);
}

/* ===== USP Bar ===== */
.usp-bar {
    background: var(--white);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.usp-bar .container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px 40px;
}

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

.usp-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.usp-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(18,184,134,0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon i {
    font-size: 22px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.usp-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.usp-text p {
    font-size: 13px;
    color: var(--gray-600);
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(18,184,134,0.1));
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-600);
}

/* ===== Universities ===== */
.universities {
    padding: 80px 0;
    overflow: hidden;
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.uni-logo-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
    padding: 10px;
}

.uni-logo-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);
}

.uni-logo-card i {
    font-size: 36px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.uni-logo-card img {
    max-width: 90%;
    max-height: 70px;
    object-fit: contain;
}

/* ===== Why Section ===== */
.why-section {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

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

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(18,184,134,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.why-icon i {
    font-size: 26px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-num {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-primary);
    margin-bottom: 4px;
}

.why-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
}

/* ===== Process Section ===== */
.process-section {
    padding: 80px 0;
}

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

.process-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
}

.process-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.process-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-primary);
}

.process-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(10,110,189,0.08), rgba(18,184,134,0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 16px;
}

.process-icon i {
    font-size: 24px;
    color: var(--primary);
}

.process-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== Specialisations ===== */
.specialisations {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.spec-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.spec-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.spec-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(18,184,134,0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.spec-icon i {
    font-size: 22px;
    color: var(--primary);
}

.spec-card h4 {
    font-size: 14px;
    font-weight: 600;
}

/* ===== Programs ===== */
.programs {
    padding: 80px 0;
}

.program-category {
    margin-bottom: 48px;
}

.program-category:last-child {
    margin-bottom: 0;
}

.program-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

.program-category-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-category-icon i {
    font-size: 20px;
    color: var(--white);
}

.program-category-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.program-category-header p {
    font-size: 14px;
    color: var(--gray-600);
}

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

.program-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.program-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.program-card-img {
    height: 140px;
    background: linear-gradient(135deg, rgba(10,110,189,0.08), rgba(18,184,134,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card-img i {
    font-size: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program-card-body {
    padding: 20px;
}

.program-card-body h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.program-card-body p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.6;
}

.program-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.program-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ===== Alumni Section ===== */
.alumni-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.company-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.company-logo {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-600);
    transition: var(--transition);
}

.company-logo:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-hover);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 0;
}

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

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    margin-bottom: 12px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    color: var(--white);
    font-size: 18px;
}

.testimonial-author h5 {
    font-size: 15px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray-600);
}

/* ===== Experts Section ===== */
.experts-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.expert-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.expert-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(18,184,134,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.expert-avatar i {
    font-size: 30px;
    color: var(--primary);
}

.expert-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.expert-role {
    display: block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.expert-exp {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 14px;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: var(--gradient-hero);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(18,184,134,0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(10,110,189,0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ===== Blog Section ===== */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.blog-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,110,189,0.08), rgba(18,184,134,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder i {
    font-size: 48px;
    color: var(--gray-400);
}

.blog-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.blog-date span {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.blog-date {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
}

.blog-card-body {
    padding: 20px;
}

.blog-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(18,184,134,0.1));
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card-body h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 14px;
    line-height: 1.6;
}

.blog-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link:hover {
    gap: 10px;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: 16px;
}

.faq-question i {
    font-size: 12px;
    color: var(--gray-500);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 24px;
    border-radius: 4px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 15px;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    font-size: 13px;
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: var(--gray-500);
}

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

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        justify-content: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stat {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-form-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 60px;
    }

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

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

    .spec-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .company-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .experts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on small screens to save space */
    }

    .header .container {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 0;
        box-shadow: var(--shadow);
        border-top: 1px solid var(--gray-100);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }

    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        padding: 20px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 10px 0;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .header-actions .btn {
        display: none; /* Hide 'Talk to Expert' button in header on mobile to save space */
    }

    .dropdown {
        position: static;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0 0 0 15px;
        border: none;
    }

    .has-dropdown:hover .dropdown,
    .has-dropdown.active .dropdown,
    .has-dropdown.open .dropdown {
        display: block;
    }

    .dropdown-mega {
        width: 100%;
        max-width: 100%;
    }

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

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-desc {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stat-num {
        font-size: 24px;
    }

    .hero-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .usp-bar .container {
        padding: 24px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 40px;
    }

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

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

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

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

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

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

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
    }

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

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

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

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

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

    .company-logos {
        grid-template-columns: 1fr;
    }
}
