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;
    font-size: 14px;
}

.btn-primary-custom:hover {
    background: #008ea3;
    color: #fff;
}

/* HERO SECTION */
.hero {
    padding: 35px 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: 16px;
    margin: 10px 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: 15px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-img {
        margin-top: 30px;
    }
}

/* MOBILE VIEW FIX */
@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;   /* center horizontally */
        text-align: center;
    }
}

.recognition-section {
    background: #eef3f5;
    padding: 30px 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;
    text-align: left;
}

/* 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: 8px 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;
    }
}

.hero .my-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* LEFT ALIGN */
    gap: 2px;
}

/* IMPORTANT: Mobile override */
@media (max-width: 768px) {
    .hero .my-3 {
        justify-content: flex-start; /* force left */
        text-align: left;
    }
}

/* =========================================
ONLINE MBA CUSTOM FIX
ADD ONLY THIS AT LAST
========================================= */

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #f7fbfc, #eef8fa);
}

/* HERO TITLE */
.hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
}

/* BADGES */
.badge-course {
    background: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.badge-course:hover {
    background: #00a2b9;
    color: #fff;
}

/* HERO IMAGE */
.hero-img img {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* COURSE CARD */
.course-card {
    transition: 0.3s;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* COURSE IMAGE */
.course-card img {
    height: 240px;
    object-fit: cover;
}

/* BUTTON */
.apply-btn,
.btn-primary-custom,
.btn-teal {
    transition: 0.3s;
}

.apply-btn:hover,
.btn-primary-custom:hover,
.btn-teal:hover {
    transform: translateY(-2px);
}

/* REASON CARD */
.reason-card {
    border-radius: 16px;
}

/* LOGO CARD */
.logo-card {
    border-radius: 16px;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #00a2b9, #008ea3);
}

/* MODAL */
.modal-box {
    border-radius: 18px;
}

/* MOBILE FIX */
@media (max-width:768px){

    .hero {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.4;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .course-card img {
        height: 200px;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}

/* =========================================
MBA HIGHLIGHT SECTION
========================================= */

.mba-highlight-section {
    background: #f7fbfc;
}

.highlight-card {
    background: #fff;
    border-radius: 18px;
    padding: 15px 20px;
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border: 1px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: #00a2b9;
    box-shadow: 0 15px 35px rgba(0,162,185,0.15);
}

/* ICON */

.highlight-icon {
    width: 75px;
    height: 75px;
    background: rgba(0,162,185,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 10px;
}

.highlight-icon i {
    font-size: 34px;
    color: #00a2b9;
}

/* TITLE */

.highlight-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

/* TEXT */

.highlight-card p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}

/* MOBILE */

@media (max-width:768px) {

    .highlight-card {
        padding: 15px 15px;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
    }

    .highlight-icon i {
        font-size: 26px;
    }

    .highlight-card h4 {
        font-size: 18px;
    }

    .highlight-card p {
        font-size: 13px;
    }
}

.course-card {
    height: 100%;
    transition: 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.course-card img {
    height: 230px;
    object-fit: cover;
}

.course-body p {
    margin-bottom: 8px;
}

/* MOBILE */

@media(max-width:768px){

    .course-card img {
        height: 180px;
    }

    .course-body {
        padding: 15px;
    }

    .course-body h5 {
        font-size: 18px;
    }

    .course-body p {
        font-size: 14px;
    }
}

/* =========================
DESKTOP STICKY APPLY BUTTON
========================= */
.desktop-sticky-apply {
    position: fixed;
    right: -48px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 9999;
}

.desktop-sticky-apply a {
    background: #00a2b9;
    color: #fff;
    text-decoration: none;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.desktop-sticky-apply a:hover {
    background: #008ea3;
    color: #fff;
    right: 0;
}

.desktop-sticky-apply i {
    font-size: 18px;
}

/* HIDE IN MOBILE */
@media (max-width: 768px) {
    .desktop-sticky-apply {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-mobile-hide {
        display: none;
    }
}

/* SECTION */
.mca-course-section {
    background: #f5f5f5;
    overflow: hidden;
}

/* TITLE */
.mca-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 30px;
}

/* ROW */
.mca-course-section .row {
    align-items: stretch;
}

/* COLUMN FLEX */
.mca-course-section .col-lg-3,
.mca-course-section .col-md-6 {
    display: flex;
}

/* CARD */
.semester-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #ececec;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.semester-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* HEADING */
.semester-heading {
    font-size: 26px;
    font-weight: 800;
    color: #008c99;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1;
}

/* SUBJECT LIST */
.subject-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.subject-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #4c4c4c;
    line-height: 1.7;
    margin-bottom: 10px;
    font-weight: 500;
}

.subject-list li span {
    min-width: 22px;
    font-weight: 700;
    color: #111;
}

/* ELECTIVE */
.elective-title {
    font-size: 15px;
    font-weight: 700;
    color: #008c99;
    margin-top: 8px;
    margin-bottom: 8px;
}

.elective-list {
    list-style: none;
    padding-left: 15px;
    margin: 0;
}

.elective-list li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #555;
}

/* BUTTON WRAP */
.btn-wrap {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: flex-end;
}

/* BUTTON */
.apply-btn-course {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #008c99;
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
    white-space: nowrap;
}

.apply-btn-course:hover {
    background: #006c75;
    color: #fff;
}

/* LARGE LAPTOP */
@media (max-width: 1399px) {
    .semester-heading {
        font-size: 24px;
    }

    .subject-list li {
        font-size: 14px;
    }
}

/* TABLET */
@media (max-width: 991px) {

    .mca-title {
        font-size: 34px;
        margin-bottom: 35px;
    }

    .semester-heading {
        font-size: 24px;
    }

    .semester-card {
        padding: 24px 20px;
    }

    .subject-list li {
        font-size: 15px;
    }

    .elective-list li {
        font-size: 14px;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    .mca-course-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .mca-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .semester-card {
        border-radius: 14px;
        padding: 22px 18px;
    }

    .semester-heading {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .subject-list li {
        font-size: 15px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .btn-wrap {
        justify-content: center;
    }

    .apply-btn-course {
        width: 100%;
        padding: 12px 20px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .mca-title {
        font-size: 24px;
    }

    .semester-heading {
        font-size: 20px;
    }

    .subject-list li {
        font-size: 14px;
    }

    .elective-title,
    .elective-list li {
        font-size: 13px;
    }
}

.why-section {
    background: #f3f7f9;
    padding: 35px 0;
}

.why-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

.why-title span {
    color: #00a7b5;
}

.why-card {
    text-align: center;
    padding: 25px 20px;
    transition: 0.3s ease;
    border-radius: 12px;
    height: 100%;
}

.why-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.why-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.why-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* TABLET */
@media(max-width: 991px) {
    .why-title {
        font-size: 34px;
    }
}

/* MOBILE */
@media(max-width: 576px) {
    .why-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .why-card {
        padding: 20px 15px;
    }

    .why-card h5 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 13px;
    }
}

.icon-1 {
    filter: invert(79%) sepia(14%) saturate(1396%) hue-rotate(147deg) brightness(92%) contrast(91%);
}

.my-icon {
    filter: invert(90%) sepia(20%) saturate(595%) hue-rotate(12deg) brightness(91%) contrast(91%);
}

.icon-3 {
    filter: invert(89%) sepia(22%) saturate(698%) hue-rotate(321deg) brightness(92%) contrast(89%);
}

.icon-4 {
    filter: invert(88%) sepia(25%) saturate(417%) hue-rotate(104deg) brightness(92%) contrast(92%);
}

.text-danger,
.invalid-feedback {
    margin-top: 2px !important;
    font-size: 14px;
    display: block;
    line-height: 1.2;
}

.error-name,
.error-email,
.error-contactno,
.error-city {
    margin-top: 2px !important;
}