/* Custom CSS for AMTCR Navbar */
:root {
    --primary-teal: #116e63;
    /* Dark Teal for topbar right and text */
    --primary-orange: #F7941D;
    /* Golden Orange for topbar left and button */
    --text-dark: #1E293B;
    /* Dark slate for nav links */
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --font-family: 'Roboto', system-ui, -apple-system, sans-serif;
    --transition-speed: 0.3s;
}

.yantramanav-thin {
    font-family: "Yantramanav", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.yantramanav-light {
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.yantramanav-regular {
    font-family: "Yantramanav", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.yantramanav-medium {
    font-family: "Yantramanav", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.yantramanav-bold {
    font-family: "Yantramanav", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.yantramanav-black {
    font-family: "Yantramanav", sans-serif;
    font-weight: 900;
    font-style: normal;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Yantramanav", sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================
   Header & Topbar
========================================= */
.header {
    width: 100%;
    position: relative;
    z-index: 100;
}

.topbar {
    display: flex;
    font-size: 13.5px;
    font-weight: 500;
    height: auto;
    min-height: 42px;
}

/* Topbar Left (Orange Area) */
.topbar-left {
    background-color: var(--primary-orange);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 30px;
    flex: 0 0 35%;
    /* Fixed width proportion */
}

.follow-text {
    margin-right: 15px;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    color: var(--text-light);
    transition: all var(--transition-speed) ease;
    font-size: 13px;
}

.social-icons a:hover {
    background-color: #0b4e41;
    /* Darker teal on hover */
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Topbar Right (Teal Area) */
.topbar-right {
    background-color: var(--primary-teal);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 30px;
    flex: 1;
    /* Takes remaining space */
}

.topbar-info {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.topbar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.topbar-info i {
    color: var(--primary-orange);
    /* Orange icons in teal area */
    font-size: 14px;
}

/* =========================================
   Main Navbar
========================================= */
.navbar {
    background-color: var(--bg-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo CSS (Instead of image) */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform var(--transition-speed) ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 40px;
    color: #1e3a8a;
    /* Deep blue from crest */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Add an anchor inside the shield/crest */
.logo-icon::after {
    content: '\f13d';
    /* fa-anchor */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 18px;
    color: #eab308;
    /* Golden color for anchor */
    margin-top: -2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.5px;
}

.text-orange {
    color: var(--primary-orange);
}

.text-teal {
    color: var(--primary-teal);
}

.logo-text p {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-teal);
    margin: 3px 0 0 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-speed) ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-teal);
}

.dropdown-icon {
    font-size: 11px;
    transition: transform var(--transition-speed) ease;
}

.search-icon {
    font-size: 18px;
    color: var(--text-dark);
}

.search-icon:hover {
    color: var(--primary-orange);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-light);
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 6px 6px;
    border-top: 3px solid var(--primary-teal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-speed) ease;
    z-index: 10;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li {
    border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 14px 20px;
    display: block;
    font-weight: 500;
    color: #475569;
    transition: all var(--transition-speed) ease;
}

.dropdown-menu a:hover {
    background-color: #f8fafc;
    color: var(--primary-teal);
    padding-left: 28px;
    /* Slight indent on hover */
}

/* Apply Now Button */
.btn-apply {
    background-color: var(--primary-orange);
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.25);
    white-space: nowrap;
}

.btn-apply:hover {
    background-color: var(--primary-teal);
    /* Primary Color on hover */
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 110, 99, 0.35);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-teal);
    cursor: pointer;
    padding: 5px;
    transition: transform var(--transition-speed) ease;
}

.mobile-menu-btn:focus {
    outline: none;
}

/* =========================================
   Mobile Responsiveness
========================================= */
@media (max-width: 1024px) {

    /* Topbar Stack */
    .topbar {
        flex-direction: column;
    }

    .topbar-left {
        width: 100%;
        padding: 10px 20px;
        justify-content: center;
        flex: auto;
    }

    .topbar-right {
        width: 100%;
        padding: 10px 20px;
        justify-content: center;
        flex: auto;
    }

    .topbar-info {
        justify-content: center;
        gap: 15px 25px;
    }

    /* Navbar Mobile Layout */
    .navbar-container {
        padding: 15px 20px;
    }

    .logo-text h1 {
        font-size: 28px;
    }

    .logo-text p {
        font-size: 8px;
    }

    /* Enable Mobile Menu Toggle */
    .mobile-menu-btn {
        display: block;
    }

    /* Hide default menu, convert to mobile sidebar/dropdown */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
        /* Hidden state */
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transition: all 0.4s ease-in-out;
    }

    /* Active state for mobile menu */
    .nav-menu.active {
        max-height: 600px;
        /* Arbitrary large height to allow transition */
        visibility: visible;
        opacity: 1;
        padding: 20px;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        padding: 15px 10px;
        justify-content: space-between;
        /* Space out text and dropdown arrow */
    }

    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        border-left: 3px solid var(--primary-teal);
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: #f8fafc;
        /* Hidden state */
        display: none;
        padding-left: 0;
        min-width: 100%;
    }

    /* Active dropdown in mobile */
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .search-icon {
        display: none;
        /* Optional: hide search icon on mobile or move it */
    }

    /* Apply button mobile */
    .btn-apply {
        margin: 10px;
        justify-content: center;
        width: calc(100% - 20px);
    }
}

@media (max-width: 480px) {

    /* Smaller screens refinements */
    .topbar-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .logo-text h1 {
        font-size: 24px;
    }

    .logo-text p {
        font-size: 7px;
    }
}

/* =========================================
   Hero Section
========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    color: var(--text-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px 0 80px;
    /* Top and bottom padding for space */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    /* Black overlay */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-content {
    max-width: 850px;
    margin-left: -60px;
}

.hero-form-wrapper {
    /* flex-basis: 480px; */
    flex-shrink: 0;
    margin-right:-80px;
    background-color: rgba(255, 255, 255, 0.05);
    /* Transparent theme */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: formSlideUp 1s ease-out forwards;
}

@keyframes formSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-form h3 {
    color: var(--text-light);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: left;
    text-transform: uppercase;
}

.hero-form p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 25px;
    text-align: left;
    line-height: 1.5;
}

.hero-form .form-row {
    display: flex;
    gap: 8px;
    /* Minimized column gap */
}

.hero-form .form-group {
    margin-bottom: 18px;
    flex: 1;
}

.hero-form label {
    display: block;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: left;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 12px 17px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 14px;
    outline: none;
    color: var(--text-light);
    transition: all var(--transition-speed) ease;
}

.hero-form input::placeholder,
.hero-form select::placeholder {
    color: #94a3b8;
}

.hero-form select option {
    background-color: #1e293b;
    color: var(--text-light);
}

.hero-form input:focus,
.hero-form select:focus {
    border-color: var(--primary-orange);
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-form .btn-submit-enquiry {
    width: 100%;
    background-color: var(--primary-orange);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
    margin-top: 10px;
}

.hero-form .btn-submit-enquiry:hover {
    background-color: var(--primary-teal);
    transform: translateY(-2px);
}

/* Sticky Apply Button */
.sticky-apply-btn {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg) translateX(50%);
    transform-origin: center right;
    background-color: var(--primary-orange);
    color: var(--text-light);
    padding: 12px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px 5px 0 0;
    font-weight: 700;
    z-index: 100;
    transition: background-color var(--transition-speed) ease;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.sticky-apply-btn:hover {
    background-color: var(--primary-teal);
    color: var(--text-light);
}

.sticky-apply-btn i {
    transform: rotate(90deg);
}

.hero-subtitle {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.hero-subtitle i {
    font-size: 18px;
}

.hero-subtitle::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-orange);
}

.hero-title {
    font-size: 66px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-teal);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark circle background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 5;
    transition: all var(--transition-speed) ease;
}

.carousel-arrow:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.right-arrow {
    right: 20px;
}

/* =========================================
   Features Section
========================================= */
.features-section {
    padding: 90px 5% 60px;
    background-color: #f8fafc;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-teal);
    color: var(--text-light);
    border-radius: 50% 50% 50% 5px;
    /* Leaf shape */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.feature-number {
    font-size: 40px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary-teal);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================
   Stats Section
========================================= */
.stats-section {
    position: relative;
    padding: 80px 5%;
    background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&q=80&w=1600&h=600');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 106, 89, 0.85);
    z-index: 1;
}

.stats-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    color: var(--text-light);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--primary-orange);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Blob shape */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin-bottom: 20px;
    border: 3px solid var(--text-light);
}

.stat-number {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 16px;
    font-weight: 600;
}

/* =========================================
   Courses Section
========================================= */
.courses-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
text-transform: uppercase;
}

@media (max-width: 786px) {
    .section-title{
        font-size: 27px !important;
    }
    .course-title-feature{
        font-size: 24px !important;
    } 
}

.section-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.courses-section {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.courses-container {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.course-feature-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.course-feature-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.course-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.course-feature-layout:hover .course-feature-image img {
    transform: scale(1.05);
}

@media (max-width: 867px) {
    .course-feature-layout {
        display: block;

    }

    .course-feature-image {
        margin-bottom: 36px;
    }
}

.course-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b00);
    color: var(--text-light);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.4);
    z-index: 2;
    letter-spacing: 1px;
}

.course-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.lessons {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 700;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: var(--primary-orange);
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    color: #64748b;
}

.course-title-feature {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.course-desc-feature {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

.course-footer-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 15px;
}

.course-info {
    display: flex;
    gap: 20px;
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.course-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.course-info i {
    color: var(--primary-orange);
}

.course-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-orange);
    white-space: nowrap;
}

.course-action-feature {
    text-align: left;
}

.course-action-feature .btn {
    display: inline-flex;
    padding: 16px 35px;
    border-radius: 40px;
    font-size: 16px;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b00);
}

.course-action-feature .btn:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .course-card-featured {
        flex-direction: column;
        max-width: 600px;
    }

    .course-image-featured {
        width: 100%;
        height: 300px;
    }

    .course-content-featured {
        width: 100%;
        padding: 30px;
    }

    .course-footer-featured {
        flex-direction: column ;
        gap: 20px;
        align-items: flex-start;
    }

    .course-action-featured {
        text-align: left;
    }
}

/* =========================================
   Latest Video Section
========================================= */
.video-section {
    padding: 80px 5%;
    background-color: #f8fafc;
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.video-text-content {
    flex: 1;
}

.video-subtitle {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.video-subtitle::after {
    content: '';
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: var(--primary-orange);
}

.video-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.video-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.video-image-wrapper {
    flex: 1;
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Blob shape for image */
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 8px solid #fff;
}

.video-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(247, 148, 29, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(247, 148, 29, 0);
    }
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(247, 148, 29, 0.4);
    transition: all var(--transition-speed) ease;
    animation: pulsePlay 2s infinite;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    animation: none;
}

/* =========================================
   Additional Mobile Responsiveness
========================================= */
@media (max-width: 1200px) {

    .features-container,
    .stats-container,
    .courses-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .video-container {
        flex-direction: column;
    }

    .video-image-wrapper {
        width: 100%;
        border-radius: 20px;
    }

    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    .features-container,
    .courses-container {
        grid-template-columns: 1fr;
    }

    .features-section {
        margin-top: 0;
        padding-top: 40px;
    }

    .hero-section {
        height: auto;
        padding: 80px 5%;
    }

    .hero-title {
        font-size: 27px;
    }

    .hero-buttons {
        flex-direction: column;
        /*width: 185px;*/
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .carousel-arrow {
        display: none;
        /* Hide arrows on small screens */
    }
}


/* =========================================
   Gallery Section
========================================= */
.gallery-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
    height: 100%;
    width: 100%;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-card:hover::after {
    opacity: 1;
}



/* Bento Grid Assignments */
.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-square {
    grid-column: span 1;
    grid-row: span 1;
}

@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .bento-tall,
    .bento-wide,
    .bento-square {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Why Choose Us Section
========================================= */
.why-choose-section {
    padding: 80px 5%;
    background-color: #0A2A4A;
    /* Dark blue background */
    color: var(--text-light);
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-choose-content {
    flex: 1;
}

.why-choose-subtitle {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-light);
}

.why-choose-desc {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-box {
    background-color: var(--bg-light);
    border-radius: 30px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-dark);
}

.why-choose-section .feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    color: var(--text-light);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.why-choose-image {
    flex: 1;
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    padding: 15px;
    border: 3px solid var(--primary-orange);
}

.why-choose-image .image-wrapper {
    width: 100%;
    height: 500px;
    border-radius: inherit;
    overflow: hidden;
    border: 5px solid var(--text-light);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .why-choose-image {
        display: none;
    }
}

/* =========================================
   Partners Section
========================================= */
.partners-section {
    padding: 40px 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 80px;
    padding-right: 80px;
    /* To account for the final gap */
    animation: scrollPartners 20s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partners-track img {
    height: 60px;
    opacity: 0.6;
    transition: opacity var(--transition-speed) ease;
    mix-blend-mode: multiply;
    flex-shrink: 0;
}

.partners-track img:hover {
    opacity: 1;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* =========================================
   Footer Section
========================================= */
.footer {
    background-color: #0c2b47;
    color: #cbd5e1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    font-size: 36px;
    color: #1e3a8a;
    position: relative;
}

.footer-logo .logo-icon::after {
    content: '\f13d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    font-size: 16px;
    color: #eab308;
    margin-top: -2px;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -8px;
}

.footer-logo .logo-text h1 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.text-white {
    color: var(--text-light);
}

.footer-logo .logo-text p {
    font-size: 8px;
    font-weight: 700;
    margin-top: 2px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item .icon-box {
    width: 35px;
    height: 35px;
    background-color: var(--primary-orange);
    color: var(--text-light);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-orange);
}

.links-col ul li {
    margin-bottom: 15px;
}

.links-col ul a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition-speed) ease;
}

.links-col ul a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.newsletter-col p {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-family: var(--font-family);
    font-size: 14px;
}

.btn-subscribe {
    background-color: var(--primary-orange);
    color: var(--text-light);
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color var(--transition-speed) ease;
}

.btn-subscribe:hover {
    background-color: #e08212;
}

.footer-bottom {
    background-color: #0c2b47;
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.copyright {
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background-color: var(--bg-light);
    color: var(--primary-orange);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

.footer-social a:hover {
    background-color: var(--primary-orange);
    color: var(--text-light);
}


/* =========================================
   Admission Process Section
========================================= */
.admission-process-section {
    padding: 80px 5%;
    background-color: #f8fafc;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
}

.admission-process-section .section-title {
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    gap: 0;
    flex-wrap: nowrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    position: relative;
    margin-bottom: 30px;
    border: 2px solid;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-icon-wrapper.step-1 {
    border-color: #1e3a8a;
    color: #1e3a8a;
}

.step-icon-wrapper.step-2 {
    border-color: #22c55e;
    color: #22c55e;
}

.step-icon-wrapper.step-3 {
    border-color: #eab308;
    color: #eab308;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
    color: white;
}

.step-1 .step-number {
    background-color: #1e3a8a;
}

.step-2 .step-number {
    background-color: #22c55e;
}

.step-3 .step-number {
    background-color: #eab308;
}

.process-card {
    background-color: #ffffff;
    padding: 30px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
    width: 100%;
}

.step-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-1-text {
    color: #1e3a8a;
}

.step-2-text {
    color: #22c55e;
}

.step-3-text {
    color: #eab308;
}

.process-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.process-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.dots-wrapper {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e2e8f0;
}

.dot.blue.active {
    background-color: #1e3a8a;
}

.dot.green.active {
    background-color: #22c55e;
}

.dot.yellow.active {
    background-color: #eab308;
}

.process-connector {
    flex: 0 1 50px;
    position: relative;
    top: 40px;
    /* Aligns with middle of icon (80px / 2) */
}

.process-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    right: 15px;
    border-top: 1px dashed #94a3b8;
}

.process-connector::after {
    content: '\f0da';
    /* caret-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: -9px;
    color: #94a3b8;
    font-size: 18px;
}

/* =========================================
   Additional Responsive Updates
========================================= */
@media (max-width: 1200px) {

    .instructors-container,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-connector {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        /*padding-top: 60px;*/
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content {
        margin-bottom: 30px;
        margin-left: 0px!important;
    }

    .why-choose-container {
        flex-direction: column;
    }

    .why-choose-image {
        width: 100%;
    }

    .why-choose-title {
        font-size: 36px;
    }
}
@media (max-width: 1024px) {
    .hero-form-wrapper {
        margin-right:0px !important;
    }
}
@media (max-width: 768px) {
    .hero-form-wrapper {
        flex-basis: auto;
        margin-right:0px !important;
        width: 100%;
        padding: 25px 20px;
    }

    .instructors-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-container {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .process-connector {
        display: none;
    }

    .process-card {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-bottom: 40px;
        /* Make room for scroll top */
    }

    .scroll-top {
        right: 50%;
        transform: translateX(50%);
        top: -25px;
    }

    .scroll-top:hover {
        transform: translate(50%, -5px);
    }
}

/* =========================================
   Scroll Fade Animations
========================================= */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Video Modal Styles
========================================= */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-video:hover {
    color: var(--primary-orange);
}

.video-container-iframe {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.video-container-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.yantramanav-thin {
    font-family: "Yantramanav", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.yantramanav-light {
    font-family: "Yantramanav", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.yantramanav-regular {
    font-family: "Yantramanav", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.yantramanav-medium {
    font-family: "Yantramanav", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.yantramanav-bold {
    font-family: "Yantramanav", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.yantramanav-black {
    font-family: "Yantramanav", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.scrolling-strip {
    background-color: var(--primary-teal);
    color: var(--text-light);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 2px solid var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
}
.scrolling-strip-content {
    display: inline-block;
    animation: scrollText 25s linear infinite;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.scrolling-strip-content span {
    margin: 0;
}
.scrolling-strip-content .marquee-sep {
    color: var(--primary-orange);
    margin: 0 40px;
}
@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.career-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}
.career-table th, .career-table td {
    padding: 15px;
    border: 1px solid #e2e8f0;
    text-align: left;
}
.career-table th {
    background-color: var(--primary-teal);
    color: white;
}
.career-table tr:nth-child(even) {
    background-color: #f8fafc;
}
@media (max-width: 768px) {
    .career-table, .career-table tbody, .career-table tr, .career-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .career-table thead {
        display: none;
    }
    .career-table tr {
        margin-bottom: 20px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        background: #fff !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    .career-table td {
        border: none;
        padding: 12px 15px 12px 45%;
        border-bottom: 1px solid #f1f5f9;
        position: relative;
        text-align: right;
        font-size: 14px;
    }
    .career-table td:last-child {
        border-bottom: none;
    }
    .career-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 12px;
        font-weight: 700;
        color: var(--primary-teal);
        text-align: left;
        width: 40%;
    }
}
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--primary-teal);
}
.faq-item summary {
    padding: 20px;
    padding-right: 50px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
    transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    content: '\f068';
    color: var(--primary-orange);
    transform: translateY(-50%) rotate(180deg);
}
.faq-item[open] summary {
    border-bottom: 1px solid #e2e8f0;
    color: var(--primary-teal);
}
.faq-content {
    padding: 20px;
    color: #64748b;
    line-height: 1.6;
}
.closing-banner {
    background-color: var(--primary-orange);
    color: white;
    text-align: center;
    padding: 60px 5%;
}
.closing-banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.closing-banner p {
    font-size: 18px;
    margin-bottom: 30px;
}
.eligibility-list {
    list-style: none;
    padding: 0;
}
.eligibility-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #475569;
}
.eligibility-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-orange);
}
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.topic-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--primary-teal);
}
.topic-icon {
    width: 50px;
    height: 50px;
    background-color: #f1f5f9;
    color: var(--primary-teal);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.topic-card:hover .topic-icon {
    background-color: var(--primary-teal);
    color: #ffffff;
}
.topic-content h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}
.topic-content p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 768px) {
    .topics-grid { grid-template-columns: 1fr; }
}
.eligibility-infographic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.eligibility-block {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    overflow: hidden;
}
.eligibility-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}
.block-academic::before { background-color: var(--primary-teal); }
.block-age::before { background-color: var(--primary-orange); }
.eligibility-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.05;
    position: absolute;
    right: 20px;
    top: 20px;
}
.block-academic .eligibility-icon-large { color: var(--primary-teal); }
.block-age .eligibility-icon-large { color: var(--primary-orange); }
.eligibility-block h3 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.eligibility-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.eligibility-item:last-child { margin-bottom: 0; }
.item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}
.block-academic .item-icon { background-color: var(--primary-teal); }
.block-age .item-icon { background-color: var(--primary-orange); }
.item-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}
.item-content p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}
@media (max-width: 768px) {
    .eligibility-infographic { grid-template-columns: 1fr; }
}



.application-fee-box{
    background:#116e63;
    color:#fff;
    padding:7px 15px;
    border-radius:8px;
    margin:15px 0;
    text-align:center;
}

.application-fee-box span{
    display:block;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.application-fee-box strong{
    display:block;
    font-size:24px;
    font-weight:700;
}

