:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;
    --secondary: #0f172a;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --accent: #38bdf8;
    --success: #10b981;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    --hover-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg);
    overflow-x: hidden;
}

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

span {
    color: var(--primary);
}

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

.text-white {
    color: #ffffff !important;
}

/* Layout & Containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.bg-dark {
    background-color: var(--bg-dark);
    color: #f8fafc;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    gap: 0.5rem;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--primary-light) 0%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
    min-height: auto;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: -1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    bottom: -100px;
    right: -100px;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--primary);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.15);
    position: relative;
    z-index: 10;
    line-height: 1.2;
}

.hero h1 {
    font-size: 3.8rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 4px 12px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Stats Section */
.stats-banner {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.stats-grid {
    background: var(--bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.stat-item:hover .stat-icon-wrapper {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Common Section Styles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.decorative-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 2rem;
}

/* Overview Section */
.overview {
    padding: 8rem 0;
    position: relative;
    background: radial-gradient(circle at 10% 10%, var(--primary-light) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, var(--primary-light) 0%, transparent 20%);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-card {
    background: white;
    border-radius: 40px;
    padding: 5rem 4rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.overview-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.overview-card-content {
    position: relative;
    z-index: 2;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 2rem;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.highlight-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.highlight-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Utilities */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Outcomes */
.outcomes {
    padding: 5rem 0;
}

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

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.outcome-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.outcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.outcome-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

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

.outcome-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Career Prospects */
.career-prospects {
    padding: 5rem 2rem;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.career-list {
    list-style: none;
    margin-top: 2rem;
}

.career-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary);
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

.career-list li:hover {
    background: white;
    box-shadow: var(--card-shadow);
    transform: translateX(10px);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.career-graphics {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.career-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border-left: 6px solid var(--primary);
    transition: var(--transition);
}

.career-card.accent-card {
    border-left-color: var(--accent);
    margin-left: 3rem;
}

.career-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.career-card.accent-card i {
    color: var(--accent);
}

.career-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Bottom Sections (Distance & Accreditations) */
.bottom-sections {
    padding: 6rem 0;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.distance-list {
    list-style: none;
    margin-top: 2rem;
}

.distance-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.distance-list i {
    color: var(--primary);
}

/* Accreditations Section */
.accreditations-section {
    padding: 5rem 0;
    background: var(--bg-light);
    overflow: hidden;
}

.accreditations-section .section-title {
    color: var(--secondary);
}

.accreditations-section .section-subtitle {
    color: var(--text-muted);
}

/* Custom Scroll Navigation Styles */
.accreditations-track {
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 4rem;
    padding: 1rem 0;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.accreditations-track::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari/Edge */
}

.accreditations-track .marquee-item {
    width: 250px;
}

.scroll-arrow {
    width: 60px;
    height: 60px;
    transition: var(--transition);
    cursor: pointer;
}

.scroll-arrow:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

@media (max-width: 640px) {
    .accreditations-track {
        gap: 1.5rem;
    }

    .accreditations-track .marquee-item {
        width: calc(50% - 0.75rem);
    }

    .scroll-arrow {
        width: 45px;
        height: 45px;
    }
}

.marquee-img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    width: 240px;
}

.marquee-text {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    width: 100%;
}

.marquee-item:hover .marquee-text {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--hover-shadow);
}

.info-tag {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.marquee-text p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.4;
}

/* Distance Mode Section */
.distance-mode-section {
    padding: 5rem 0;
}

.distance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.distance-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.distance-image {
    height: 140px;
    width: 100%;
    background-size: cover;
    background-position: top center;
}

.distance-image.img-1 {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&q=80');
}

.distance-image.img-2 {
    background-image: url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&q=80');
}

.distance-image.img-3 {
    background-image: url('https://images.unsplash.com/photo-1588196749597-9ff075ee6b5b?auto=format&fit=crop&q=80');
}

.distance-image.img-4 {
    background-image: url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&q=80');
}

.distance-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.distance-icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.distance-card h3 {
    color: white;
    font-size: 1.1rem;
}

.distance-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .distance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .distance-grid {
        grid-template-columns: 1fr;
    }
}

.distance-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.distance-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.distance-card h3 {
    color: white;
    font-size: 1.5rem;
}

.distance-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Floating Actions (WhatsApp & Call) */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    text-decoration: none;
}

.float-whatsapp {
    background: #25d366;
}

.float-call {
    background: var(--primary);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-actions {
        bottom: 20px;
        left: 15px;
    }
}

/* Custom Modal Styling */
.enquire-modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: #003087;
    /* matching provided code blue */
    color: white;
}

.enquire-modal-content .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.btn-close-custom {
    background: #ffcc00;
    color: #000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -15px;
    top: -15px;
    transition: var(--transition);
    z-index: 1060;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.btn-close-custom:hover {
    background: #e6b800;
    transform: rotate(90deg);
}

.custom-input,
.enquire-modal-content .form-control,
.enquire-modal-content input.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    caret-color: #ffffff;
    font-size: 1rem;
}

.custom-input::placeholder,
.enquire-modal-content .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.6) !important;
}

.custom-input:focus,
.enquire-modal-content .form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffcc00;
    box-shadow: none !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Autofill overrides for webkit browsers */
.custom-input:-webkit-autofill,
.custom-input:-webkit-autofill:hover,
.custom-input:-webkit-autofill:focus,
.enquire-modal-content .form-control:-webkit-autofill,
.enquire-modal-content .form-control:-webkit-autofill:hover,
.enquire-modal-content .form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(0, 48, 135, 0.95) inset !important;
    box-shadow: 0 0 0 1000px rgba(0, 48, 135, 0.95) inset !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.modal-content .btn-primary {
    background: #ffcc00;
    border: none;
    color: #000;
    font-weight: 700;
}

.modal-content .btn-primary:hover {
    background: #e6b800;
}

.accredit-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.accredit-logo span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
}

.accredit-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    padding: 6rem 0 3rem 0;
    background: var(--bg);
}

.footer-title {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.footer-subtitle {
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.footer-contact-info {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.footer-contact-info i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.iso-badge {
    color: var(--primary-dark);
}

.footer-divider {
    margin: 4rem auto 2rem auto;
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    width: 80%;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Animations - Initial States */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animations - Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-up {
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
        gap: 2rem;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    .overview-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-card {
        padding: 3rem 2rem;
        border-radius: 24px;
    }

    .career-content,
    .bottom-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .career-graphics {
        display: none;
    }

    .hero {
        padding: 6rem 0 4rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

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

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .nav-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
        white-space: nowrap;
    }

    .nav-logo {
        height: 35px !important;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 8rem !important;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .lead-text {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .footer-title {
        font-size: 1.8rem;
    }

    .outcome-card h3 {
        font-size: 1.25rem;
    }

    .distance-card h3 {
        font-size: 1.25rem;
    }

    .career-card h4 {
        font-size: 1.25rem;
    }

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

    .btn-large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Reduced padding for all sections on mobile */
    .overview,
    .outcomes,
    .career-prospects,
    .accreditations-section,
    .distance-mode-section,
    .footer {
        padding: 3rem 1rem !important;
    }

    /* Restoring original badge size for mobile */
    .hero-badge {
        font-size: 0.875rem !important;
        padding: 0.5rem 1.25rem !important;
        margin-bottom: 1.5rem !important;
    }
}

.carousel-track {
    gap: 1rem;
}

.carousel-wrapper {
    padding: 0 1rem;
}

.marquee-img {
    height: 80px;
}

.accreditations-header {
    gap: 1rem;
}