/* ============================================================
   GYANA EDUTECH - Premium MBBS Abroad Consultancy
   Version: 3.0 - Complete Premium Redesign
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anek+Gujarati:wght@100..800&display=swap');
:root {
    --primary: #4f1b56;
    --primary-light: #1A3A5C;
    --primary-dark: #051525;
    --accent: #4f1b56;
    --accent-light: #34D399;
    --accent-dark: #059669;
    --gold: #F59E0B;
    --purple: #7C3AED;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --text-primary: #4f1b56;
    --text-secondary: #4B5563;
    --text-muted: #0b0c0c;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s ease;
}


/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}


/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #141313;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    color: #1f2020;
}

.text-gradient {
    /* background: linear-gradient(135deg, var(--accent), #4f1b56); */
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Container */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 960px;
}


/* Sections */

.section {
    padding: 90px 0;
}

.section-sm {
    padding: 80px 0;
}

.bg-light {
    background: linear-gradient(135deg, #fefbff 0%, #fefbff 100%);
}

.bg-dark {
    background: var(--primary);
}

.bg-white {
    background: var(--white);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 10px 24px;
    background: rgba(123, 60, 125, 0.08);
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
}

.btn-primary {
    /* background: var(--accent); */
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: #ffffff;
    color: #441746;
    border-color: #441746;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: #ffffff;
    color: #49194b;
    border-color: #49194b;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    color: var(--white);
    border-color: transparent;
}

.btn-white {
    background: var(--white);
    color: #431745;
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #431745;
}

.btn-outline-white {
    background: transparent;
    color: #431745;
    border-color: rgb(68 23 70);
}

.btn-outline-white:hover {
    background: var(--white);
    color: #4f1b56;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}


/* ===== NAVBAR WITH MEGA MENU ===== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
    padding: 12px 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 55px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* .navbar-brand img {
    height: 44px;
} */

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #ffffff;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #4f1b56;
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
}

.nav-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

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


/* Mega Menu */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 600px;
}

.mega-menu-lg {
    /* min-width: 800px; */
    min-width: 1110px;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 10px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mega-menu-item:hover {
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
}

.mega-menu-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mega-menu-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #461848;
    line-height: 20px;
}

.mega-menu-content span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.mega-menu-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-cta {
    display: flex;
    gap: 12px;
}

.navbar-toggler {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
}

.navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    border-radius: 2px;
    transition: var(--transition);
}

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

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Mobile Menu */

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
    z-index: 1001;
    padding: 24px;
    overflow-y: auto;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.mobile-menu.show {
    left: 0;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
}

.mobile-nav-item {
    border-bottom: 1px solid #0000001c;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #121212;
}

.mobile-submenu {
    display: none;
    padding-left: 16px;
    padding-bottom: 16px;
}

.mobile-submenu.show {
    display: block;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: #121212;
}

.mobile-submenu a:hover {
    color: var(--accent);
}


/* ===== PAGE HEADER WITH IMAGE ===== */

.page-header {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgb(10 37 64 / 49%) 0%, rgb(10 10 10 / 49%) 100%); */
    background: linear-gradient(135deg, rgb(10 37 64 / 49%) 0%, rgb(10 10 10 / 60%) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    margin-right: 8px;
    color: rgba(255, 255, 255);
}

.breadcrumb-item.active {
    color: var(--white);
}

.page-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    color: rgba(255, 255, 255);
    font-size: 1.125rem;
    max-width: 600px;
    line-height: 1.7;
}


/* Hero Badges */

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #ffffff;
}


/* ===== HERO BANNER ===== */

.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}


/* Background Slides */

.hero-bg-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(10 10 10 / 60%) 0%, rgb(10 10 10 / 51%) 100%);
    z-index: 1;
}


/* Hero Grid */

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}


/* Hero Content */

.hero-content {
    position: relative;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .gradient-text {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-description {
    color: rgba(255, 255, 255);
    font-size: 1rem;
    max-width: 540px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-gradient {
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 163, 127, 0.4);
}

.btn-dark {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-stats-inline {
    display: flex !important;
    gap: 48px !important;
}

.hero-stat-inline {
    text-align: left;
}

.hero-stat-inline .number {
    display: inline;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-inline .label {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}


/* Hero Form Card */

.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 5px solid #441746;
}

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

.hero-form-header h3 {
    font-size: 1.375rem;
    font-weight: 800;
    color: #48194a;
    margin-bottom: 6px;
}

.hero-form-header p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

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

.hero-form .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: var(--text-primary);
}

.hero-form .form-label .required {
    color: var(--accent);
}

.hero-form .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--gray-50);
    transition: var(--transition);
}

.hero-form .form-control:focus {
    border-color: var(--accent);
    background: var(--white);
    outline: none;
}

.hero-form .form-control::placeholder {
    color: var(--gray-400);
}

.hero-form .btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 18px;
}

.hero-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 163, 127, 0.4);
}


/* Slider Navigation */

.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    background: var(--white);
    width: 28px;
    border-radius: 10px;
}

.hero-scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll-indicator span {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 4px;
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(6px);
        opacity: 0.5;
    }
}


/* ===== ABOUT SECTION ===== */

.about-section {
    padding: 100px 0;
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-image-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.about-image-badge span {
    font-size: 0.875rem;
}

.about-content .section-eyebrow {
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 5px;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 1.25rem;
    color: var(--accent);
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}


/* ===== WHY CHOOSE SECTION ===== */

.why-section {
    padding: 100px 0;
    /* background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%); */
    background: linear-gradient(135deg, #fefbff 0%, #fefbff 100%);
}

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

.why-card {
    padding: 40px 32px;
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-desc {
    font-size: 1rem;
    color: #101010;
    line-height: 1.7;
    margin: 0;
}


/* ===== COUNTRIES SECTION ===== */

.countries-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.countries-slider {
    overflow: hidden;
    flex: 1;
}

.countries-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.countries-slider .country-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

.slider-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: #451747;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.slider-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.slider-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 10px;
}

.slider-dots .dot:hover {
    background: var(--accent-light);
}

.country-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.country-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.country-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.country-card:hover .country-image img {
    transform: scale(1.1);
}

.country-flag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2.5rem;
    /* background: var(--white); */
    /* padding: 8px 12px; */
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.country-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 18px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.country-body {
    padding: 32px;
}

.country-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.country-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.country-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.country-meta i {
    color: var(--accent);
}

.country-highlights {
    margin-bottom: 24px;
}

.country-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.country-highlights li:last-child {
    border-bottom: none;
}

.country-highlights li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 163, 127, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    border-radius: 50%;
}

.country-actions {
    display: flex;
    gap: 12px;
}

.country-actions .btn {
    flex: 1;
}

.countries-section {
    padding: 100px 0;
}

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

.country-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    padding-bottom: 7px;
}

.country-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.country-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.country-card:hover .country-image img {
    transform: scale(1.1);
}

.country-flag {
    position: absolute;
    top: 16px;
    right: 16px;
    /* box-shadow: var(--shadow); */
    width: 65px;
}

.country-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 18px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
}

.country-body {
    padding: 30px;
}

.country-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.country-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.country-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.country-meta i {
    color: var(--accent);
}

.country-highlights {
    margin-bottom: 0px;
    padding-left: 0;
}

.country-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.country-highlights li:last-child {
    border-bottom: none;
}

.country-highlights li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
    color: var(--accent);
    font-size: 0.75rem;
    border-radius: 50%;
}

.country-actions {
    display: flex;
    gap: 12px;
    padding: 15px;
}

.country-actions .btn {
    flex: 1;
}


/* ===== SERVICES SECTION ===== */

.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
}

.services-section .section-eyebrow {
    /* background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%); */
    background: linear-gradient(135deg, #7B3C7D, #5A1F5C);
}

.services-section .section-title {
    color: var(--white);
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

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

.service-card {
    padding: 48px 36px;
    background: #E6D4E7;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #3e1540;
    transform: translateY(-6px);
}

.service-number {
    position: absolute;
    top: 36px;
    right: 36px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    color: #48194a;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-desc {
    color: rgb(0 0 0 / 90%);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: rgb(0 0 0 / 90%);
}

.service-list li i {
    color: #ffffff;
    font-size: 0.875rem;
    background: #4a194c;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}


/* ===== TESTIMONIALS SLIDER ===== */

.testimonials-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(50% - 22px);
    min-width: calc(50% - 22px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #121212;
    line-height: 1.4;
    margin-bottom: 23px;
}

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

.author-avatar {
    /* width: 60px;
    height: 60px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%); */
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.author-info h5 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #4a194c;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
}

.slider-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    color: #49184b;
    transition: var(--transition);
}

.slider-btn:hover {
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    color: var(--white);
    border-color: #49184b;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    width: 40px;
    background: var(--accent);
    border-radius: 10px;
}


/* ===== BLOG SECTION ===== */

.blog-section {
    padding: 100px 0;
}

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

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.blog-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    display: none;
}

.blog-body {
    padding: 32px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 14px;
}

.blog-title a {
    color: #441746;
}

.blog-title a:hover {
    color: var(--accent);
}

.blog-excerpt {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent);
}

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


/* ===== CTA SECTION ===== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    position: relative;
    overflow: hidden;
}


/* .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 163, 127, 0.15) 0%, transparent 70%);
    border-radius: 50%;
} */

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    color: rgba(255, 255, 255);
    font-size: 1.125rem;
    margin-bottom: 36px;
}

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


/* ===== UNIVERSITY CARDS ===== */

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

.university-card {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    align-items: center;
}

.university-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.uni-logo {
    /* width: 140px; */
    /* height: 140px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--gray-100); */
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    overflow: hidden;
}

.uni-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.uni-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    color: var(--white);
}

.uni-badge.top-ranked {
    background: var(--accent);
}

.uni-badge.popular {
    background: var(--gold);
}

.uni-badge.featured {
    background: var(--primary);
}

.uni-badge.affordable {
    background: var(--purple);
}

.uni-content {
    flex: 1;
}

.uni-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    /* padding-right: 80px; */
}

.uni-location {
    font-size: 0.875rem;
    color: #000000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.uni-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.uni-meta span {
    font-size: 0.875rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.uni-meta i {
    color: var(--accent);
}

.uni-actions {
    display: flex;
    gap: 12px;
}


/* ===== ELIGIBILITY CARDS ===== */

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

.eligibility-card {
    text-align: center;
    padding: 35px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.eligibility-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.eligibility-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
    border-radius: var(--radius-lg);
    margin: 0 auto 24px;
}

.eligibility-icon i {
    font-size: 2.25rem;
    color: #431645;
}

.eligibility-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.eligibility-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}


/* ===== FEE TABLE ===== */

.fee-table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
}

.fee-table th,
.fee-table td {
    padding: 20px 28px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.fee-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
}

.fee-table th:first-child {
    border-radius: var(--radius-xl) 0 0 0;
}

.fee-table th:last-child {
    border-radius: 0 var(--radius-xl) 0 0;
}

.fee-table td {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.fee-table .total-row {
    background: var(--gray-50);
}

.fee-table .total-row td {
    font-weight: 700;
    color: var(--text-primary);
}


/* ===== INFO CARD ===== */

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 24px;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px;
    background: linear-gradient( 135deg, #5A1F5C 0%, #3E1540 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.0625rem;
}

.info-list {
    padding: 8px 28px;
}

.info-list li {
    display: flex;
    gap: 6px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li strong {
    min-width: 130px;
    color: #121212;
}

.info-list li span {
    color: #212121;
}


/* ===== FAQ ACCORDION ===== */

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, #faf5fb 0%, #e6d4e7 100%);
    border: none;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #49194b;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, #faf5fb 0%, #e6d4e7 100%);
}

.faq-question i {
    font-size: 1.25rem;
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0 28px 24px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #121212;
    line-height: 1.5;
}


/* ===== GALLERY LIGHTBOX ===== */

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    /* aspect-ratio: 4/3; */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 26%), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: var(--white);
    font-size: 1rem;
    margin: 0 0 4px;
}

.gallery-overlay span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}


/* Lightbox Modal */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--accent);
    color: var(--white);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    margin-top: 20px;
    font-size: 1rem;
}


/* ===== BROCHURE DOWNLOAD SECTION ===== */

.brochure-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
}

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

.brochure-content .section-eyebrow {
    background: rgba(124, 58, 237, 0.15);
    color: var(--purple);
}

.brochure-content h2 {
    color: #581C87;
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.brochure-content p {
    color: #7E22CE;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.brochure-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.brochure-form .form-group {
    margin-bottom: 20px;
}

.brochure-form .form-control {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.brochure-form .form-control:focus {
    outline: none;
    border-color: var(--purple);
}

.brochure-form .btn-brochure {
    width: 100%;
    padding: 18px;
    background: #7C3AED;
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.brochure-form .btn-brochure:hover {
    background: #6D28D9;
}


/* ===== STAFF SECTION ===== */

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

.staff-card {
    text-align: center;
}

.staff-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border);
    transition: var(--transition);
}

.staff-card:hover .staff-image {
    border-color: var(--accent);
}

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

.staff-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.staff-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}


/* ===== FORM ELEMENTS ===== */

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--gray-50);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
}

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


/* ===== MODALS ===== */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.lead-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 1051;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lead-modal.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    padding: 30px 30px;
    text-align: center;
    position: relative;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: rgba(255, 255, 255);
    font-size: 1rem;
    margin: 0;
}

.modal-body {
    padding: 35px 35px 5px 35px;
}

.modal-footer {
    padding: 0 36px 36px;
}

.modal-footer .btn {
    width: 100%;
}


/* ===== TOAST NOTIFICATIONS ===== */

.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border-left: 4px solid var(--accent);
    transform: translateX(120%);
    transition: var(--transition);
    min-width: 320px;
}

.toast.show {
    transform: translateX(0);
}

.toast.error {
    border-left-color: #EF4444;
}

.toast-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 163, 127, 0.1);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.25rem;
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.toast-content h5 {
    font-size: 1rem;
    margin: 0 0 2px;
}

.toast-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}


/* ===== FLOATING ELEMENTS ===== */

.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: var(--white);
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.floating-whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    z-index: 998;
}

.mobile-sticky-inner {
    display: flex;
    gap: 10px;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius);
    color: var(--white);
}

.sticky-btn.call {
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
}

.sticky-btn.whatsapp {
    background: #25D366;
}

.sticky-btn.apply {
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
}


/* ===== FOOTER ===== */

.footer {
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgb(0 0 0 / 90%);
    font-size: 1rem;
    line-height: 1.8;
    margin: 24px 0 28px;
    max-width: 320px;
}

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

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient( 135deg, #5A1F5C 0%, #3E1540 100%); */
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

.footer-heading {
    color: #431745;
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-links li {
    margin-bottom: 5px;
    list-style: disc;
}

.footer-links a {
    color: rgb(0 0 0);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #451747;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 6px;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgb(0 0 0 / 100%);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgb(0 0 0);
    font-size: 1rem;
}


/* ===== ANIMATIONS ===== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 1s linear infinite;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 1199px) {
    .mega-menu {
        min-width: 500px;
    }
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .countries-grid,
    .services-grid,
    .blog-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .staff-grid,
    .eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .about-grid {
        gap: 60px;
    }
}

@media (max-width: 991px) {
    .navbar-menu,
    .navbar-cta {
        display: none;
    }
    .navbar-toggler {
        display: flex;
    }
    .section {
        padding: 80px 0;
    }
    .page-header {
        padding: 140px 0 80px;
    }
    .hero-banner {
        min-height: auto;
        padding: 160px 0 100px;
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 16px);
        min-width: calc(50% - 16px);
    }
    .about-grid,
    .brochure-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-badge {
        position: static;
        margin-top: 24px;
        display: inline-block;
    }
    .university-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
    .section {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .countries-grid,
    .services-grid,
    .blog-grid,
    .why-grid,
    .staff-grid,
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hero-stat {
        padding: 24px 16px;
    }
    .hero-stat-number {
        font-size: 2rem;
    }
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
    }
    .mobile-sticky-bar {
        display: block;
    }
    .floating-whatsapp {
        bottom: 90px;
    }
    body {
        padding-bottom: 80px;
    }
    .lead-modal {
        max-width: calc(100% - 32px);
    }
    .modal-header,
    .modal-body {
        padding: 28px;
    }
    .modal-footer {
        padding: 0 28px 28px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .lightbox-nav {
        display: none;
    }
    .university-card {
        flex-direction: column;
    }
    .uni-logo {
        width: 80px;
        height: 80px;
    }
}

.text-white {
    color: var(--white) !important;
}

nav.navbar.scrolled .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #000000 !important;
    border-radius: var(--radius);
    transition: var(--transition);
}

.width_175 {
    width: 175px;
}

.logo {
    filter: brightness(0) invert(1);
}

nav.navbar.scrolled .logo {
    filter: none;
}

.bg_number {
    background: #ffffff;
}

.filter-btn {
    padding: 9px 20px;
    background: linear-gradient(135deg, #FAF5FB 0%, #E6D4E7 100%);
    color: #49194b;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
}

button.filter-btn.active {
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
    color: #ffffff;
}

.cta-icon-wrap {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 41px;
    line-height: 80px;
    color: #581e5a;
    border: 2px solid rgba(255, 255, 255, .2);
    margin-bottom: 15px;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-evenly;
}

.text-justify {
    text-align: justify;
}

.footer_copyright {
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
}

.footer-links {
    padding-left: 20px;
}

.uni_name {
    color: #141313;
}

.pl_0 {
    padding-left: 0;
}

.text_black {
    color: rgb(0 0 0 / 90%) !important;
}

.hero-stat {
    text-align: center;
    padding: 36px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.hero-stat-number {
    display: block;
    font-size: 2.3rem !important;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0px;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.btn_brochure {
    background: #ffffff;
    border: none;
}

.btn_apply {
    padding: 13px 30px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.width_100 {
    width: 100px;
}

.footer-links li::marker {
    color: #431745;
}

.bg_light_purple {
    background: #f7f0f8;
}

.university_header_icon {
    width: 50px;
}

.university_header_icon img {
    border-radius: 50%;
}

.uni_details_logo {
    width: 110px !important;
    border-radius: 50%;
}

.uni_btn {
    background: #ffffff !important;
    border: none !important;
    padding: 16px 30px !important;
}

.hover_border_none:hover {
    border: none !important;
}

.mr_10 {
    margin-right: 10px;
}

.border_bottom {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10px;
}

.border_radius_10 {
    border-radius: 10px !important;
}

.bg_gallery {
    padding: 6px;
    background: linear-gradient(135deg, #faf5fb 0%, #e6d4e7 100%);
    border: 1px solid var(--border);
    border-radius: 10px !important;
}

.testimonial_img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.bg_white {
    background: #ffffff !important;
}

.anekfonts {
    font-family: "Anek Gujarati", sans-serif;
}

.ul_loan {
    padding-left: 16px;
}

.ul_loan li {
    list-style: disc;
    color: #141313;
}

.title_clr {
    color: #471849;
}

.border_radius {
    border-radius: 10px !important;
}

.uni_ul {
    padding-left: 18px !important;
}

.uni_ul li {
    list-style: disc;
    color: #212121;
}

.disc_list {
    padding-left: 20px;
}

.country_ul {
    padding-left: 20px;
}

.disc_list li {
    list-style: disc;
    color: #212121;
    text-align: justify;
    line-height: 23px;
    margin-top: 10px;
}

.country_ul li {
    list-style: disc;
    color: #212121;
    text-align: justify;
    line-height: 23px;
    margin-top: 5px;
}

.country_ul li::marker {
    color: var(--accent);
}

.disc_list li::marker {
    color: var(--accent);
}

.uni_ul li::marker {
    color: var(--accent);
}

.text_theme {
    color: #431745;
}

.pt_65 {
    padding-top: 65px;
}

.faq.ul {
    padding-left: 20px;
    margin: 0;
}

.faq.ul li {
    list-style: disc;
    color: #212121;
}

.bg_rector {
    background: linear-gradient(135deg, #3E1540 0%, #5A1F5C 50%, #7B3C7D 100%);
}