body {
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #00a2b9;
    --primary-dark: #008ea3;
}

/* NAVBAR */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    background: #fff;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 45px;
}

.btn-primary-custom {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-primary-custom:hover {
    background: #008ea3;
}

/* HERO SECTION */
.hero {
    padding: 70px 0;
    background: #f8f9fa;
}

.hero h1 {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.3;
}

.badge-course {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    margin: 5px;
    display: inline-block;
    font-size: 14px;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
}

.hero-img img {
    width: 100%;
    border-radius: 12px;
}

.deadline {
    color: red;
    font-weight: 500;
    margin-top: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-img {
        margin-top: 30px;
    }
}

.recognition-section {
    background: #eef3f5;
    padding: 60px 0;
}

.title {
    font-weight: 700;
    font-size: 32px;
}

.subtitle {
    color: #555;
    margin-top: 10px;
}

/* LOGO CARD */
.logo-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.logo-card img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* HOVER EFFECT */
.logo-card:hover {
    transform: translateY(-6px);
    border: 1px solid #00a2b9;
    box-shadow: 0 10px 25px rgba(0, 162, 185, 0.15);
}

/* MOBILE */
@media (max-width: 768px) {
    .title {
        font-size: 24px;
    }

    .logo-card {
        height: 110px;
        padding: 15px;
    }
}


.reasons-section {
    background: #f4f6f8;
}

/* LEFT HIGHLIGHT BOX */
.reasons-highlight {
    background: var(--primary);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
}

.reasons-highlight ul {
    padding-left: 18px;
}

.reasons-highlight li {
    margin-bottom: 15px;
    font-size: 15px;
}

/* CARDS */
.reason-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 162, 185, 0.15);
    border: 1px solid var(--primary);
}

.reason-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 14px;
    color: #555;
}

/* ICON */
.icon {
    font-size: 22px;
    color: var(--primary);
}

/* .icon {
            font-size: 22px;
            color: #00a2b9;
        } */

/* BUTTON */
.btn-teal {
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    padding: 8px 18px;
    margin-top: 10px;
    width: 100%;
    border: none;
}

.btn-teal:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .reason-card {
        text-align: center;
    }

    .reasons-highlight {
        text-align: center;
    }
}

/* PROGRAM SECTION */
.program-section {
    background: var(--primary);
    color: #fff;
    overflow: hidden;
}

/* IMAGE */
.program-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* RIGHT CONTENT */
.program-content {
    padding-left: 30px;
}

.program-content h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.sub-text {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* LIST STYLE */
.program-list {
    border-left: 3px solid #fff;
    padding-left: 20px;
}

.program-item {
    margin-bottom: 20px;
}

.program-item h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.program-item p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.program-img img {
    max-height: 620px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* MOBILE */
@media (max-width: 768px) {
    .program-content {
        padding-left: 0;
        text-align: center;
    }

    .program-list {
        border-left: none;
        padding-left: 0;
    }
}

/* Tabs */
.course-tabs .tab-btn {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 6px;
    cursor: pointer;
}

.course-tabs .tab-btn.active {
    background: var(--primary);
    color: #fff;
}

/* Card */
.course-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.course-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.course-body {
    padding: 15px;
}

.apply-btn {
    display: block;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    text-decoration: none;
}

/* FIX for animation stability */
.course-item {
    transition: all 0.2s ease;
}

.course-item {
    transition: 0.3s ease;
}

.course-item.hide {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
}

/* Admission Section */
.admission-section {
    background: #f4f6f8;
}

.admission-box {
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* LINE */
.progress-line {
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: var(--primary);
    /* 🔥 THEME COLOR */
    z-index: 0;
}

/* STEP */
.step {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    transition: 0.3s;
}

.step h5 {
    margin-top: 20px;
    font-weight: 600;
}

.step p {
    font-size: 14px;
    color: #555;
}

/* CIRCLE */
.circle {
    width: 20px;
    height: 20px;
    border: 3px solid var(--primary);
    background: #fff;
    border-radius: 50%;
    margin: auto;
    position: relative;
}

/* INNER DOT (premium look) */
.circle::after {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* HOVER EFFECT */
.step:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media (max-width: 768px) {

    .progress-line {
        display: none;
    }

    .step {
        margin-bottom: 30px;
    }
}

/* PARTNERS SECTION */
.partners-section {
    background: #f4f6f8;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
}

.logo-item {
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.logo-item img {
    max-height: 50px;
    max-width: 100%;
}

/* hover effect */
.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* CTA SECTION */
.cta-section {
    background: #00a2b9;
    /* 🔥 YOUR COLOR */
    color: #fff;
    padding: 70px 0;
}

.cta-section .small-text {
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-btn {
    background: #fff;
    color: #00a2b9;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #f1f1f1;
}

/* MOBILE */
@media (max-width: 768px) {

    .logo-track {
        gap: 30px;
        animation-duration: 15s;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* MAIN FOOTER */
.main-footer {
    background: #0f172a;
    color: #fff;
}

/* TOP */
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #00a2b9;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00a2b9;
    padding-left: 5px;
}

/* SOCIAL */
.social-icons a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00a2b9;
}

/* DISCLAIMER */
.footer-disclaimer {
    background: #020617;
    padding: 20px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

.footer-policy a {
    color: #00a2b9;
    text-decoration: none;
}

.footer-policy a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-top {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* MODAL BACKGROUND */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* BOX */
.modal-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 5% auto;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
}

/* LOGO */
.modal-logo {
    height: 50px;
}

/* CLOSE */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.close-btn:hover {
    color: #000;
}

/* POINTS */
.modal-points span {
    color: #00a2b9;
    font-weight: 500;
    margin: 0 10px;
}

/* FORM */
.modal-box input,
.modal-box select {
    height: 45px;
    border-radius: 6px;
}

/* INFO BOX */
.info-box {
    background: #e6f7fa;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
}

/* TEXT */
.small-text {
    font-size: 13px;
    color: #555;
}

/* BUTTON */
.apply-btn {
    width: 100%;
    background: #00a2b9;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.apply-btn:hover {
    background: #008ea3;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .modal-box {
        margin: 10% 15px;
        padding: 20px;
    }

    .modal-points span {
        display: block;
        margin: 5px 0;
    }
}

.is-invalid {
    border-color: red !important;
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 40px;
    animation: scroll 20s linear infinite;
    align-items: center;
}

.logo-item {
    width: 150px;          /* fixed width */
    height: 80px;          /* fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;   /* IMPORTANT */
}

/* Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* MOBILE */
@media(max-width:768px){
    .logo-item {
        width: 120px;
        height: 70px;
    }
}

.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 9999;
    font-weight: 600;
}

/* BUTTONS */
.mobile-contact-bar a {
    width: 50%;
    text-align: center;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}

/* COLORS (YOUR THEME) */
.call-btn {
    background: #008ea3; /* darker shade */
}

.chat-btn {
    background: #00a2b9;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
    .mobile-contact-bar {
        display: flex;
    }
}

.mobile-contact-bar {
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.mobile-contact-bar a:active {
    transform: scale(0.95);
}

/* 🔥 ONLY ADD - modal mobile fix */
@media (max-width: 576px) {

    .modal-box {
        width: 92%;
        max-height: 90vh;
        overflow-y: auto;
        margin: auto;
        top: 50%;
        transform: translateY(-50%);
        position: relative;
    }

}