﻿:root {
    --mc-orange: #f26522;
    --mc-orange-dark: #d9541a;
    --mc-dark: #2d2d2d;
    --mc-gray: #6b6b6b;
    --mc-light: #f7f7f7;
    --mc-border: #e5e5e5;
}

body {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    color: var(--mc-dark);
}

.mc-hero,
.mc-hero div,
.mc-contact-hero,
.mc-contact-hero div {
    height: auto !important;
}

@media only screen and (min-width: 1300px) {
    .banner-area.inc-form,
    .banner-area.inc-form div {
        height: auto !important;
        min-height: 520px;
    }
}

/* ===== HEADER ===== */
.top-bar-area.mc-top-bar {
    background: var(--mc-dark) !important;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-area.mc-top-bar ul li {
    margin-right: 20px;
}

.top-bar-area.mc-top-bar a {
    color: #fff;
    transition: color 0.2s;
}

.top-bar-area.mc-top-bar a:hover {
    color: var(--mc-orange);
}

nav.navbar.bootsnav {
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    background: #fff !important;
}

.navbar-brand img.logo {
    height: 58px !important;
    width: auto;
}

nav.navbar.bootsnav .navbar-nav > li > a {
    color: var(--mc-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 13px;
    padding: 28px 18px;
}

nav.navbar.bootsnav .navbar-nav > li > a:hover,
nav.navbar.bootsnav .navbar-nav > li.active > a {
    color: var(--mc-orange) !important;
}

.btn-theme, .btn-theme.effect {
    background-color: var(--mc-orange) !important;
    border-color: var(--mc-orange) !important;
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    padding: 12px 28px;
}

.btn-theme:hover, .btn-theme.effect:hover {
    background-color: var(--mc-orange-dark) !important;
    border-color: var(--mc-orange-dark) !important;
}

/* ===== HERO ===== */
.mc-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(45,45,45,0.92) 0%, rgba(45,45,45,0.78) 55%, rgba(242,101,34,0.35) 100%), url(../img/Banner/b1.jpg) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.mc-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mc-orange);
}

.mc-hero-content {
    padding: 90px 0 80px;
    position: relative;
    z-index: 2;
}

.mc-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: 500;
}

.mc-hero h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    max-width: 680px;
    color: #ffffff !important;
}

.mc-hero h1 span {
    color: var(--mc-orange) !important;
}

.mc-hero p.lead {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 580px;
    opacity: 0.92;
    font-weight: 300;
    color: #ffffff !important;
}

.mc-hero-actions .btn {
    margin-right: 12px;
    margin-bottom: 10px;
    padding: 13px 32px;
    font-weight: 600;
    border-radius: 4px;
    font-size: 14px;
}

.mc-hero .btn-outline-light {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.mc-hero .btn-outline-light:hover {
    background: #fff;
    color: var(--mc-dark);
}

.mc-hero-stats {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mc-hero-stat {
    border-left: 3px solid var(--mc-orange);
    padding-left: 16px;
}

.mc-hero-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.mc-hero-stat span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    opacity: 0.85;
}

/* ===== SECTION COMMON ===== */
.mc-section {
    padding: 85px 0;
}

.mc-section-light {
    background: var(--mc-light);
}

.mc-section-title {
    text-align: center;
    margin-bottom: 55px;
}

.mc-section-title .subtitle {
    color: var(--mc-orange);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    display: block;
}

.mc-section-title h2 {
    color: var(--mc-dark);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mc-section-title p {
    color: var(--mc-gray);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.mc-divider {
    width: 50px;
    height: 3px;
    background: var(--mc-orange);
    margin: 15px auto 0;
}

/* ===== FLEX GRID (fixes broken card layout) ===== */
.mc-flex-row {
    display: flex;
    flex-wrap: wrap;
}

.mc-flex-row::before,
.mc-flex-row::after {
    display: none !important;
}

.mc-flex-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
    float: none !important;
    margin-bottom: 25px;
}

.mc-flex-row .mc-program-card,
.mc-flex-row .mc-feature-box {
    flex: 1;
    width: 100%;
}

/* ===== ABOUT ===== */

.mc-about-text p {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 18px;
}

.mc-about-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.mc-about-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid var(--mc-border);
}

.mc-about-list li:last-child {
    border-bottom: none;
}

.mc-about-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--mc-orange);
    font-size: 12px;
}

.mc-about-image {
    position: relative;
}

.mc-about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.mc-about-image .mc-cred-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--mc-orange);
    color: #fff;
    padding: 18px 24px;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(242,101,34,0.35);
}

.mc-about-image .mc-cred-badge strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.mc-about-image .mc-cred-badge span {
    font-size: 12px;
    opacity: 0.9;
}

/* ===== PROGRAMS ===== */
.mc-program-card {
    background: #fff;
    border: 1px solid var(--mc-border);
    border-radius: 8px;
    padding: 32px 24px;
    min-height: 220px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.mc-program-card:hover {
    border-color: var(--mc-orange);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.mc-program-card .icon {
    width: 64px;
    height: 64px;
    background: rgba(242,101,34,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--mc-orange);
    font-size: 26px;
}

.mc-program-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--mc-dark);
    margin-bottom: 10px;
}

.mc-program-card p {
    font-size: 13px;
    color: var(--mc-gray);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.mc-program-card h4 {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== FEATURES ===== */
.mc-feature-box {
    background: #fff;
    padding: 38px 28px;
    border-radius: 8px;
    border: 1px solid var(--mc-border);
    width: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.mc-feature-box:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.mc-feature-box .icon {
    width: 56px;
    height: 56px;
    background: var(--mc-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

.mc-feature-box h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--mc-dark);
    margin-bottom: 10px;
}

.mc-feature-box p {
    color: var(--mc-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.mc-section-title h2 {
    color: var(--mc-dark) !important;
}

/* ===== STATS BAR ===== */
.mc-stats-bar {
    background: var(--mc-dark);
    padding: 50px 0;
    color: #fff;
}

.mc-stat-item {
    text-align: center;
    padding: 15px;
}

.mc-stat-item .number {
    font-size: 36px;
    font-weight: 700;
    color: var(--mc-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.mc-stat-item .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.85;
}

/* ===== LOCATION ===== */
.mc-location-box {
    background: #fff;
    border: 1px solid var(--mc-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.mc-location-box iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.mc-location-info {
    padding: 30px 35px;
}

.mc-location-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--mc-dark);
}

.mc-location-info .detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.mc-location-info .detail i {
    color: var(--mc-orange);
    width: 22px;
    margin-top: 3px;
    flex-shrink: 0;
}

.mc-location-info a {
    color: #555;
}

.mc-location-info a:hover {
    color: var(--mc-orange);
}

/* ===== CTA ===== */
.mc-cta {
    background: linear-gradient(135deg, var(--mc-orange) 0%, var(--mc-orange-dark) 100%);
    padding: 75px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mc-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.mc-cta h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.mc-cta p {
    font-size: 16px;
    margin-bottom: 28px;
    opacity: 0.95;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.mc-cta .btn-white {
    background: #fff;
    color: var(--mc-orange);
    padding: 14px 42px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: inline-block;
    font-size: 13px;
    position: relative;
    transition: all 0.3s;
}

.mc-cta .btn-white:hover {
    background: var(--mc-dark);
    color: #fff;
}

/* ===== FOOTER ===== */
.mc-footer {
    background: #fff;
    border-top: 1px solid var(--mc-border);
    padding: 0;
}

.mc-footer-top-line {
    height: 3px;
    background: linear-gradient(90deg, var(--mc-orange), var(--mc-orange-dark));
}

.mc-footer-inner {
    padding: 40px 20px 35px;
    text-align: center;
}

.mc-footer-logo {
    margin-bottom: 22px;
}

.mc-footer-logo img {
    height: 50px;
    width: auto;
}

.mc-footer-line {
    font-size: 13px;
    color: #777;
    line-height: 1.9;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.mc-footer-line a {
    color: #777;
    text-decoration: none;
}

.mc-footer-line a:hover {
    color: var(--mc-orange);
}

.mc-footer-sep {
    color: #ccc;
    margin: 0 8px;
}

.mc-footer-copy {
    font-size: 12px;
    color: #999;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--mc-border);
}

/* ===== CONTACT PAGE ===== */
.mc-contact-hero {
    position: relative;
    background: linear-gradient(120deg, rgba(45,45,45,0.92) 0%, rgba(45,45,45,0.82) 100%), url(../img/Banner/b1.jpg) center/cover no-repeat;
    padding: 65px 0 55px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.mc-contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mc-orange);
}

.mc-contact-hero-inner {
    position: relative;
    z-index: 2;
}

.mc-contact-hero-logo {
    display: inline-block;
    background: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    margin-bottom: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mc-contact-hero-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.mc-contact-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff !important;
}

.mc-contact-hero p {
    font-size: 16px;
    opacity: 0.92;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
    color: #ffffff !important;
}

.mc-contact-section {
    padding: 70px 0 80px;
    background: var(--mc-light);
}

.mc-contact-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 35px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.07);
    border: 1px solid var(--mc-border);
    height: 100%;
}

.mc-contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--mc-dark);
}

.mc-contact-card .card-sub {
    color: var(--mc-gray);
    font-size: 14px;
    margin-bottom: 28px;
}

.mc-contact-card .form-control {
    border: 1px solid var(--mc-border);
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    margin-bottom: 16px;
    height: auto;
}

.mc-contact-card .form-control:focus {
    border-color: var(--mc-orange);
    box-shadow: 0 0 0 2px rgba(242,101,34,0.15);
}

.mc-contact-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-sub {
    border: none !important;
    background: var(--mc-orange) !important;
    padding: 13px 40px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #fff !important;
    letter-spacing: 0.6px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    transition: background 0.3s;
}

.btn-sub:hover {
    background: var(--mc-orange-dark) !important;
}

.mc-info-card {
    background: #fff;
    border-radius: 8px;
    padding: 35px 30px;
    border: 1px solid var(--mc-border);
    height: 100%;
}

.mc-info-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--mc-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--mc-orange);
    display: inline-block;
}

.mc-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.mc-info-item i {
    color: var(--mc-orange);
    width: 24px;
    margin-top: 3px;
    flex-shrink: 0;
}

.mc-info-item a {
    color: #555;
}

.mc-info-item a:hover {
    color: var(--mc-orange);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .mc-about-image {
        margin-bottom: 40px;
    }

    .mc-hero h1 {
        font-size: 32px;
    }

}

@media (max-width: 768px) {
    .mc-hero {
        min-height: 520px;
    }

    .mc-hero h1 {
        font-size: 28px;
    }

    .mc-section {
        padding: 60px 0;
    }

    .mc-hero-stats {
        gap: 20px;
    }

    .mc-footer-line {
        font-size: 12px;
    }

    .mc-footer-sep {
        display: block;
        height: 0;
        overflow: hidden;
        margin: 0;
    }
}
