/* MBA Landing Page Custom Styles */

:root {
    --amet-navy: #091d3e;
    --amet-blue: #104cba;
    --amet-gold: #c2a43b;
    --amet-red: #b03033;
    --amet-light-gray: #f9f9f9;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --transition: all 0.3s ease-in-out;
}

/* Hero Section */
.mba-hero {
    position: relative;
    padding: 100px 0 50px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.mba-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(9, 29, 62, 0.95) 0%, rgba(16, 76, 186, 0.4) 100%);
    z-index: 1;
}

h3 {
    font-size: 25px;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    color: #eee !important;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-stats {
    display: none;
    /* Replaced by new layout below */
}

/* New Hero Metrics Grid (2x2) */
.hero-metrics-grid {
    margin-top: 40px;
}

.hero-metric-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-metric-icon {
    width: 55px;
    /* Adjust based on screenshot */
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    /* Large icons as seen in screenshot */
    color: #fff;
    flex-shrink: 0;
}

.hero-metric-content {
    line-height: 1.3;
}

.hero-metric-title {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2px;
}

.hero-metric-detail {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.validnavs a:focus,
.validnavs a:hover,
.validnavs a.active {
    /* background-color: #fff !important; */
}

a.navbar-brand:hover {
    background: #fff !important;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stat-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: gold !important;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.9rem;
    margin: 0;
    color: #fff !important;
}

/* Integrated Form Card */
.hero-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: #333;
}

.hero-form-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--amet-navy) !important;
    text-align: center;
}

.hero-form-card .form-control {
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    height: 45px;
}

.hero-form-card .btn-submit {
    background: var(--amet-red);
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.hero-form-card .btn-submit:hover {
    background: #d9534f;
    transform: translateY(-2px);
}

/* sticky nav */
.mba-sticky-nav {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.mba-sticky-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
}

.mba-sticky-nav a {
    color: var(--amet-navy);
    font-weight: 600;
    font-size: 0.95rem;
}

.mba-sticky-nav a:hover {
    color: var(--amet-red);
}

/* Section Headings */
.section-headline {
    text-align: center;
    margin-bottom: 50px;
}

.section-headline h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--amet-navy) !important;
    position: relative;
    padding-bottom: 15px;
}

.section-headline h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--amet-gold);
    border-radius: 2px;
}

/* Features/USPs */
.usp-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid #eee;
}

.usp-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: linear-gradient(180deg, #fff 0%, var(--amet-light-gray) 100%);
    transform: translateY(-5px);
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--amet-gold);
    margin-bottom: 20px;
}

/* Curriculum Accordion */
.curriculum-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.curriculum-accordion .accordion-button {
    background: var(--amet-light-gray);
    color: var(--amet-navy);
    font-weight: 700;
    padding: 20px;
}

.curriculum-accordion .accordion-button:not(.collapsed) {
    background: var(--amet-navy);
    color: #fff;
}

/* Fee Cards */
.fee-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    border: 2px solid #eee;
    text-align: center;
    transition: var(--transition);
}

.fee-card.featured {
    border-color: var(--amet-blue);
    background: linear-gradient(180deg, #fff 0%, #f0f7ff 100%);
    transform: scale(1.05);
    position: relative;
}

.fee-card.featured::before {
    content: 'Recommended';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amet-blue);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.fee-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--amet-navy) !important;
    margin: 20px 0;
}

.fee-amount span {
    font-size: 1rem;
    font-weight: 400;
}

/* Process steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--amet-navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 5px solid #fff;
    box-shadow: 0 0 0 2px var(--amet-navy);
}

/* Accreditations Bar (Hero) */
.accreditations-bar {
    background: #6b1514;
    /* Matching green from original design for recognition? Or AMET blue? User image shows green... */
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.accreditations-bar span {
    display: inline-flex;
    align-items: center;
    margin: 0 15px;
}

.accreditations-bar i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .mba-hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .mba-sticky-nav ul {
        gap: 15px;
    }

    .mba-sticky-nav a {
        font-size: 0.8rem;
    }

    .fee-card.featured {
        transform: none;
        margin-bottom: 30px;
    }
}

/* Custom Buttons */
.btn-navy {
    background-color: var(--amet-navy) !important;
    color: #fff !important;
    border: none;
    transition: var(--transition);
}

.btn-navy:hover {
    background-color: var(--amet-blue) !important;
    color: #fff !important;
}

.btn-outline-navy {
    border: 2px solid var(--amet-navy) !important;
    color: var(--amet-navy) !important;
    background: transparent !important;
    font-weight: 700 !important;
    transition: var(--transition);
}

.btn-outline-navy:hover {
    background-color: var(--amet-navy) !important;
    color: #fff !important;
}