:root {
    --primary: #0B5ED7;
    --secondary: #0F172A;
    --accent: #22C55E;
    --background: #F8FAFC;
    --text: #1E293B;
    --text-muted: #64748B;
    --primary-rgb: 11, 94, 215;
    --accent-rgb: 34, 197, 94;
    --secondary-rgb: 15, 23, 42;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px 0 rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px 0 rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #0B5ED7 0%, #1E40AF 100%);
    --gradient-accent: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    --gradient-mixed: linear-gradient(135deg, #0B5ED7 0%, #22C55E 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

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

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

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

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.bg-background {
    background-color: var(--background) !important;
}

.fw-semi-bold {
    font-weight: 600;
}

.rounded-4 {
    border-radius: 1rem;
}

.rounded-5 {
    border-radius: 1.5rem;
}

.fs-xs {
    font-size: 0.75rem;
}

.section-padding {
    padding: 50px 0;
}

.section-padding-top {
    padding-top: 50px;
}

.section-padding-bottom {
    padding-bottom: 50px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--gradient-mixed);
    border-radius: 2px;
}

.section-title .subtitle::before {
    left: -40px;
}

.section-title .subtitle::after {
    right: -40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

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

.section-title p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.bg-opacity-10 {
    opacity: 0.1;
}

.bg-opacity-20 {
    opacity: 0.2;
}

.animate-dropdown {
    animation: dropdownFadeIn 0.25s ease forwards;
    transform-origin: top;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }

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

#mainNavbar {
    transition: var(--transition-slow);
    z-index: 1050;
    border-bottom: 1px solid transparent;
}

#mainNavbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.navbar-spacer {
    height: 80px;
}

.navbar-brand {
    padding: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
}

.brand-name,
.brand-accent {
    font-size: 1.15rem;
    display: block;
    line-height: 1.1;
}

.brand-name {
    font-size: 0.95rem;
}

.brand-accent {
    font-size: 1.2rem;
}

.navbar-nav .nav-link {
    padding: 8px 12px !important;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
    width: 30px;
    opacity: 1;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0;
    transition: var(--transition);
}

.navbar-nav .dropdown-toggle::after {
    display: none;
}

.navbar-nav .dropdown-toggle::before {
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 0.7rem;
    margin-left: 6px;
    vertical-align: middle;
    transition: var(--transition);
}

.navbar-nav .dropdown-toggle:hover::before,
.navbar-nav .dropdown-item:hover {
    transform: translateY(0);
}

.dropdown-menu {
    min-width: 240px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 12px !important;
}

.dropdown-item {
    font-size: 0.92rem;
    transition: var(--transition);
    color: var(--text);
}

.dropdown-item:hover {
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    transform: translateX(4px);
}

.call-btn {
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.call-btn:hover {
    background: var(--background);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #071425 0%, #0d2d56 48%, #175fd1 100%);
    padding: 90px 0 70px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.88) 0%, rgba(var(--primary-rgb), 0.78) 100%), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: floatShape 10s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -50px;
    animation: floatShape 8s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 20%;
    background: rgba(var(--accent-rgb), 0.12);
    animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0 20px;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-badge i {
    color: var(--accent);
}

.hero-content h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-content h1 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(var(--accent-rgb), 0.3);
    border-radius: 3px;
    z-index: -1;
}

.hero-content .lead {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.75;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    isolation: isolate;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(var(--accent-rgb), 0.5);
    background: var(--gradient-accent);
}

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

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

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

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    border-color: white;
}

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

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

.btn-secondary-bg {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary-bg:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 15px 38px;
    font-size: 1rem;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-visual-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px);
}

.hero-visual-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-visual-chip,
.hero-visual-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-visual-chip {
    background: rgba(11, 94, 215, 0.09);
    color: var(--primary);
}

.hero-visual-pill {
    background: rgba(34, 197, 94, 0.12);
    color: #16703d;
}

.hero-visual-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin-bottom: 16px;
}

.hero-visual-info {
    padding: 4px 2px 2px;
}

.hero-visual-info h3 {
    font-size: 1.08rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.hero-visual-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.hero-visual-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.hero-visual-info li i {
    color: var(--accent);
    font-size: 1rem;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    color: white;
    transition: var(--transition);
    cursor: default;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 6px;
}

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

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* How It Works Section - Custom Redesign */
.how-it-works-custom {
    background: #f8fafc;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-title-custom {
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.subtitle-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.subtitle-custom .line {
    height: 1.5px;
    width: 25px;
    background-color: #2563eb;
}

.subtitle-custom .text {
    color: #2563eb;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-title-custom h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title-custom h2 span {
    color: #2563eb;
    position: relative;
    display: inline-block;
}

.squiggly-line {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    z-index: -1;
}

.section-title-custom p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Cards */
.process-container {
    padding-top: 25px;
}

.process-connecting-line {
    position: absolute;
    top: 95px; /* Center of the icon (50px padding + 45px half icon) */
    left: 10%;
    right: 10%;
    height: 2px;
    background: #d1fae5;
    z-index: 0;
}

.process-card-custom {
    background: white;
    border-radius: 20px;
    padding: 50px 30px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.process-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.process-step-custom {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border: 5px solid white;
    z-index: 2;
}

.step-1 { background: #2563eb; }
.step-2 { background: #10b981; }
.step-3 { background: #f59e0b; }

.process-icon-custom {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.icon-1 { background: #eff6ff; color: #2563eb; }
.icon-2 { background: #ecfdf5; color: #10b981; }
.icon-3 { background: #fffbeb; color: #f59e0b; }

.process-card-custom:hover .process-icon-custom {
    transform: scale(1.08);
}

.process-card-custom h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.process-card-custom p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.about-section {
    background: var(--background);
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-image-wrapper:hover img {
    transform: scale(1.06);
}

.about-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-md);
}

.about-experience-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.about-experience-text h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1;
}

.about-experience-text p {
    color: var(--text-muted);
    margin: 4px 0 0 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-content {
    padding-left: 20px;
}

.about-content .subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content .description {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.feature-list li:hover .feature-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.feature-list li span {
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
}

.courses-section {
    background: var(--background);
}

.course-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.course-category-card {
    background: white;
    border-radius: 16px;
    padding: 35px 20px 28px;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(11, 94, 215, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.course-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(11, 94, 215, 0.04) 0%, transparent 100%);
    transition: height 0.4s ease;
}

.course-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(11, 94, 215, 0.15);
    border-color: rgba(11, 94, 215, 0.35);
}

.course-category-card:hover::before {
    height: 100%;
}

.course-category-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: var(--transition-slow);
}

.course-category-card:hover .course-category-icon {
    transform: scale(1.12) rotate(-5deg);
}

.course-category-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.course-category-card:hover .course-category-title {
    color: var(--primary);
}

.institutes-section {
    background: var(--background);
}

.institute-slider {
    padding: 20px 4px 60px;
}

.swiper-button-next,
.swiper-button-prev {
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    transition: var(--transition);
    top: 40%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 800;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 36px;
    border-radius: 6px;
}

.institute-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-slow);
    height: 100%;
}

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

.institute-image {
    position: relative;
    height: 170px;
    overflow: hidden;
}

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

.institute-card:hover .institute-image img {
    transform: scale(1.08);
}

.institute-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.institute-rating i {
    color: #F59E0B;
    font-size: 0.9rem;
}

.institute-body {
    padding: 20px;
}

.institute-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary);
}

.institute-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.institute-location i {
    color: var(--primary);
}

.know-more-btn {
    width: 100%;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

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

.view-all-wrapper {
    text-align: center;
    margin-top: 20px;
}

.testimonials-section {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04) 0%, rgba(var(--accent-rgb), 0.04) 100%);
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    margin: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-slow);
    position: relative;
}

.testimonial-card::before {
    content: '\F6B0';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3.5rem;
    color: rgba(var(--primary-rgb), 0.06);
}

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

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testimonial-stars i {
    color: #F59E0B;
    font-size: 1rem;
}

.testimonial-review {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(var(--primary-rgb), 0.15);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    font-size: 1.05rem;
    margin-bottom: 2px;
    color: var(--secondary);
}

.testimonial-author-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.cta-section {
    background: var(--gradient-primary);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-section::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.cta-section::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -40px;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-mixed);
}

.footer .logo-icon {
    background: var(--primary);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-icon {
    width: 42px;
    height: 42px;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary) !important;
    opacity: 1 !important;
    color: white;
    transform: translateY(-4px) rotate(-6deg);
}

.footer h6 {
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 12px;
}

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

.hover-link {
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    font-size: 0.93rem;
}

.hover-link:hover {
    color: var(--accent) !important;
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
}

.footer-contact a:hover {
    color: var(--accent) !important;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl) !important;
}

.floating-whatsapp,
.floating-call {
    position: fixed;
    z-index: 998;
    bottom: 90px;
}

.floating-whatsapp {
    right: 20px;
}

.floating-call {
    right: 80px;
}

.floating-whatsapp a,
.floating-call a {
    width: 52px;
    height: 52px;
    text-decoration: none;
    animation: pulseFloat 2.5s ease-in-out infinite;
}

.floating-call a {
    animation-delay: 0.5s;
}

@keyframes pulseFloat {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(var(--accent-rgb), 0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

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

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

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

.page-banner {
    position: relative;
    padding: 100px 0 80px;
    background: var(--gradient-primary);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.6) 0%, rgba(var(--primary-rgb), 0.8) 100%), url('https://images.unsplash.com/photo-1562774053-701939374585?w=1600&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-banner h1 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.breadcrumb {
    justify-content: center;
    margin: 0;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-size: 0.75rem;
    vertical-align: middle;
    padding: 0 10px;
}

.content-section {
    padding: 70px 0;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 18px;
    transition: var(--transition);
}

.info-card:hover .info-card-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p,
.info-card a {
    color: var(--text-muted);
    margin: 0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.form-control,
.form-select {
    padding: 12px 18px;
    border-radius: 12px;
    border: 1.5px solid #E2E8F0;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-family);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
    outline: none;
}

textarea.form-control {
    resize: vertical;
}

.list-styled {
    list-style: none;
    padding: 0;
}

.list-styled li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text);
    font-size: 0.98rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

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

.list-styled li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
}

.exam-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.exam-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(40px, -40px);
}

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

.exam-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.exam-card:hover .exam-icon {
    background: var(--primary);
    color: white;
}

.exam-card h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.exam-date {
    display: inline-block;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.exam-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.track-application-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.track-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.track-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: #E2E8F0;
    border-radius: 2px;
    z-index: 0;
}

.track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 25%;
}

.step-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    border: 3px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    margin-bottom: 12px;
}

.track-step.completed .step-circle {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.1);
}

.track-step.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0.15);
    animation: pulseStep 2s infinite;
}

@keyframes pulseStep {

    0%,
    100% {
        box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0.15);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(var(--primary-rgb), 0.05);
    }
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.track-step.completed .step-label,
.track-step.active .step-label {
    color: var(--secondary);
}

.application-status-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.status-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.status-badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.status-info-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.status-info-row:last-child {
    border-bottom: none;
}

.status-info-label {
    width: 140px;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.status-info-value {
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
}

.timeline-item {
    display: flex;
    gap: 20px;
    padding-bottom: 28px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 32px;
    bottom: 0;
    width: 2px;
    background: rgba(var(--primary-rgb), 0.15);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-dot {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.timeline-item.completed .timeline-dot {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.timeline-dot i {
    font-size: 0.75rem;
}

.timeline-content {
    flex: 1;
    padding-top: 2px;
}

.timeline-content h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

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

.timeline-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.error-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: var(--background);
}

.error-code {
    font-size: clamp(8rem, 20vw, 14rem);
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.error-page h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.error-page p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.course-detail-image {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.course-detail-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.course-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.course-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: white;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.course-highlight:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: transparent;
}

.course-highlight-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.course-highlight-text small {
    color: var(--text-muted);
    font-size: 0.78rem;
    display: block;
}

.course-highlight-text strong {
    color: var(--secondary);
    font-size: 0.95rem;
}

.content-block {
    background: white;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.content-block h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

.content-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.content-block p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 14px;
    font-size: 0.98rem;
}

.enquiry-sidebar {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.enquiry-sidebar h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.policy-content {
    background: white;
    border-radius: 20px;
    padding: 45px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.policy-content h3 {
    font-size: 1.4rem;
    margin-top: 32px;
    margin-bottom: 14px;
    color: var(--secondary);
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content p,
.policy-content li {
    color: var(--text-muted);
    line-height: 1.85;
    font-size: 0.98rem;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.policy-content li {
    margin-bottom: 8px;
}

.college-filter-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.filter-title h5 {
    font-size: 1.05rem;
    margin: 0;
}

.filter-title i {
    color: var(--primary);
    transition: var(--transition);
}

.filter-title.collapsed i {
    transform: rotate(-90deg);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-option:hover {
    background: rgba(var(--primary-rgb), 0.05);
}

.filter-option input {
    accent-color: var(--primary);
    cursor: pointer;
}

.filter-option label {
    cursor: pointer;
    font-size: 0.92rem;
    color: var(--text);
    margin: 0;
}

.search-box {
    position: relative;
}

.search-box input {
    padding-left: 48px;
    padding-right: 120px;
}

.search-box .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
}

.search-box .btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 22px;
}

:root {
    --orange-accent: #FF7A18;
    --orange-accent-hover: #F96800;
    --orange-rgb: 255, 122, 24;
    --hero-dark-blue: #0A1F44;
    --hero-blue: #1E3A8A;
    --hero-blue-mid: #1D4ED8;
    --hero-light-blue: #3B82F6;
    --navbar-height: 96px;
}

.new-navbar {
    height: var(--navbar-height);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    z-index: 1050;
}

.new-navbar.scrolled {
    height: 84px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
}

.navbar-spacer-new {
    height: var(--navbar-height);
}

.logo-icon-new {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #0B5ED7 0%, #1E40AF 100%);
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.2);
}

.brand-name-new {
    font-size: 0.95rem;
    color: #1E293B;
    display: block;
    line-height: 1.1;
}

.brand-accent-new {
    font-size: 1.25rem;
    color: var(--primary);
    display: block;
    line-height: 1.1;
    font-weight: 800 !important;
}

.new-navbar .navbar-nav .nav-link {
    padding: 10px 18px !important;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.new-navbar .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.new-navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.new-navbar .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #3B82F6);
    border-radius: 2px;
}

.apply-now-btn-new {
    background: linear-gradient(135deg, var(--orange-accent) 0%, var(--orange-accent-hover) 100%) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 10px 26px !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 20px rgba(var(--orange-rgb), 0.35);
    transition: all 0.3s ease !important;
    margin-left: 8px;
}

.apply-now-btn-new:hover {
    background: linear-gradient(135deg, var(--orange-accent-hover) 0%, #E05D00 100%) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--orange-rgb), 0.45);
}

.apply-now-btn-new::after {
    display: none !important;
}

.nav-more-item .dropdown-toggle::before {
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 0.65rem;
    margin-left: 4px;
    vertical-align: middle;
}

.nav-contact-wrapper {
    border-left: 1px solid #E2E8F0;
    padding-left: 20px;
}

.nav-phone-link {
    transition: all 0.3s ease;
}

.nav-phone-link:hover {
    transform: translateY(-1px);
}

.phone-icon-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B5ED7 0%, #1E40AF 100%);
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.25);
    animation: pulsePhone 2.5s ease-in-out infinite;
}

@keyframes pulsePhone {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(11, 94, 215, 0.25), 0 0 0 0 rgba(11, 94, 215, 0.3);
    }

    50% {
        box-shadow: 0 4px 12px rgba(11, 94, 215, 0.25), 0 0 0 10px rgba(11, 94, 215, 0);
    }
}

.phone-icon-circle i {
    font-size: 1rem;
}

.phone-numbers {
    gap: 2px;
}

.phone-number {
    font-size: 0.88rem;
    color: #0F172A;
    white-space: nowrap;
}

.phone-number:hover {
    color: var(--primary);
}

.navbar-toggler-icon-new {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary);
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon-new::before,
.navbar-toggler-icon-new::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.navbar-toggler-icon-new::before {
    top: -8px;
}

.navbar-toggler-icon-new::after {
    top: 8px;
}

.btn-apply-now-mobile {
    background: linear-gradient(135deg, var(--orange-accent) 0%, var(--orange-accent-hover) 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 20px rgba(var(--orange-rgb), 0.35);
}

.hero-section-new {
    position: relative;
    min-height: 500px;
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #081B3A 0%, #0A255C 35%, #133C8F 70%, #1E40AF 100%);
    padding: 20px 0 70px;
}

.hero-bg-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(30, 64, 175, 0.4) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 122, 24, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-pattern-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.8;
    pointer-events: none;
}

.hero-decoration-1,
.hero-decoration-2,
.hero-decoration-3 {
    position: absolute;
    font-size: 5rem;
    opacity: 0.06;
    color: white;
    pointer-events: none;
    z-index: 1;
}

.hero-decoration-1 {
    top: 40px;
    right: 8%;
    animation: floatDeco 8s ease-in-out infinite;
}

.hero-decoration-2 {
    bottom: 60px;
    left: 5%;
    font-size: 4rem;
    animation: floatDeco 10s ease-in-out infinite reverse;
}

.hero-decoration-3 {
    top: 50%;
    left: 40%;
    font-size: 6rem;
    opacity: 0.04;
    animation: floatDeco 12s ease-in-out infinite;
}

@keyframes floatDeco {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: white;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-btn-prev {
    left: 24px;
}

.hero-btn-next {
    right: 24px;
}

.hero-carousel-btn:hover {
    background: var(--orange-accent);
    border-color: var(--orange-accent);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel-btn i {
    font-size: 1.25rem;
    font-weight: 700;
}

.hero-main-row {
    position: relative;
    z-index: 5;
}

.hero-content-new {
    position: relative;
    z-index: 5;
    padding-right: 20px;
}

.hero-tag-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 122, 24, 0.15);
    backdrop-filter: blur(10px);
    color: var(--orange-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 122, 24, 0.25);
}

.hero-tag-new i {
    color: #FFD700;
}

.hero-heading-new {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 800;
    color: white;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-highlight-new {
    background: linear-gradient(135deg, #FFB347 0%, #FF7A18 50%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle-new {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.02rem;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.75;
}

.hero-actions-new {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-hero-explore {
    background: linear-gradient(135deg, var(--orange-accent) 0%, var(--orange-accent-hover) 100%) !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 10px 30px rgba(var(--orange-rgb), 0.4);
    transition: all 0.3s ease !important;
}

.btn-hero-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(var(--orange-rgb), 0.5);
    background: linear-gradient(135deg, var(--orange-accent-hover) 0%, #E05D00 100%) !important;
}

.btn-hero-apply {
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.45) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 50px !important;
    backdrop-filter: blur(10px);
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-hero-apply:hover {
    background: white !important;
    color: #0A255C !important;
    border-color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--orange-accent);
    font-size: 1.05rem;
}

.hero-courses-wrapper {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.courses-decorative-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}

.courses-decorative-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.courses-decorative-header h4 i {
    color: var(--orange-accent);
    font-size: 1.1rem;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--orange-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #FFB347;
    gap: 6px;
}

.view-all-link i {
    font-size: 1.1rem;
}

.hero-courses-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.hero-course-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.hero-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    transition: height 0.35s ease;
}

.hero-course-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-course-card:hover::before {
    height: 100%;
}

.hero-course-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.35s ease;
}

.hero-course-card:hover .hero-course-icon {
    transform: scale(1.12) rotate(-5deg);
}

.hero-course-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.hero-course-color-1 .hero-course-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.1) 100%);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.hero-course-color-1:hover .hero-course-icon {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

.hero-course-color-2 .hero-course-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0.1) 100%);
    color: #86EFAC;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.hero-course-color-2:hover .hero-course-icon {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.hero-course-color-3 .hero-course-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.1) 100%);
    color: #6EE7B7;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.hero-course-color-3:hover .hero-course-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.hero-course-color-4 .hero-course-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #93C5FD;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.hero-course-color-4:hover .hero-course-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.hero-course-color-5 .hero-course-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #C4B5FD;
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.hero-course-color-5:hover .hero-course-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.hero-course-color-6 .hero-course-icon {
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.25) 0%, rgba(255, 122, 24, 0.1) 100%);
    color: #FDBA74;
    border: 1px solid rgba(255, 122, 24, 0.25);
}

.hero-course-color-6:hover .hero-course-icon {
    background: linear-gradient(135deg, #FF7A18 0%, #F96800 100%);
    color: white;
    box-shadow: 0 6px 16px rgba(255, 122, 24, 0.4);
}