html,
body {
    height: 100%;
    scroll-behavior: smooth;
    background-color: #f6f9fc;
    font-family: 'lato', sans-serif;
}

.main-wrapper {
    min-height: 100vh;
    display: flex;
    padding-left: 100px;
    padding-right: 30px;
}




/* Highlight the "Enroll Now" link with a blinking dot */
.nav-link-custom[href="#Enroll"] {
    position: relative;
    font-weight: 600;
    /* make it stand out more */
    color: #d32f2f;

    /* optional: red to grab attention */
}

.nav-link-custom[href="#Enroll"]::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #d32f2f;
    border-radius: 50%;
    animation: blink 1s infinite;
    box-shadow: 0 0 6px rgba(211, 47, 47, 0.7);
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}


/* Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 20px;
    height: 95vh;
    background: #fff;
    padding: 15px 45px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-top: 31px;
}

.nav-link-custom {
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    transition: 0.3s;
    padding: 3px 12px;
    border-radius: 8px;
    font-size: 17px;
    text-decoration: none;
}

.nav-link-custom.active,
.nav-link-custom:hover {
    background: #1e88e5;
    color: white !important;
}

/* Content */
.section {
    padding: 40px 10px;
    border-bottom: 1px solid #eee;
}

.content-area {
    flex-grow: 1;
    padding: 0 40px;
}

/* Vertical Enquire Button */
.sticky-enquire-btn {
    position: fixed;
    top: 40%;
    right: 0;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: right;
    background: linear-gradient(90deg, #1e88e5, #1565c0);
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    border: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

/* Enquiry Modal */
.form-modal {
    border-radius: 16px;
    overflow: hidden;
}

.btn-enquire {
    background: linear-gradient(90deg, #1e88e5, #1565c0);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px;
}

.btn-enquire:hover {
    background: linear-gradient(90deg, #1565c0, #0d47a1);
}



.contenther {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: black
}





/* online mba Syllabus  */

.semester-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
}

.semester-header {
    background: #0d3b66;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 12px;
}

.semester-body {
    padding: 20px;
}

.semester-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.semester-body li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
}

.semester-body li:last-child {
    border-bottom: none;
}

.semester-body li i {
    color: #0d6efd;
    margin-right: 10px;
}

/* External CSS for mobile responsiveness */
@media (max-width: 767px) {
    .semester-header {
        font-size: 16px;
        padding: 10px;
    }

    .semester-body {
        padding: 15px;
    }

    .semester-body li {
        font-size: 14px;
        padding: 8px 0;
    }
}


/* Salary and scope */

.salary-scope-section h2 {
    font-size: 2rem;
    letter-spacing: 0.5px;
    justify-content: center;
    align-items: center;
}

.salary-scope-table th {
    background: #0d6efd !important;
    /* Bootstrap primary */
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.salary-scope-table td {
    font-size: 16px;
    text-align: center;
}

.salary-scope-table tbody tr:hover {
    background: #f1f7ff;
    transition: 0.3s ease;
}

@media (max-width: 767px) {
    .salary-scope-section h2 {
        font-size: 1.5rem;
    }

    .salary-scope-table td,
    .salary-scope-table th {
        font-size: 0.85rem;
        padding: 8px;
    }
}




/* Eligiblity creiter */

/* Section Wrapper (light background now) */
.eligibility-wrap {

    color: #0d2a55;
    padding: 5px 0;
}

.eligibility-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
    font-weight: 700;
    color: #0d2a55;
    position: relative;
    display: inline-block;
}

.eligibility-title::after {
    content: "";
    display: block;
    height: 4px;
    width: 60px;
    margin: 10px auto 0;
    background: #0d2a55;
    border-radius: 2px;
}

.eligibility-sub {
    color: #444;
    font-size: 1rem;
}

/* Dark Blue Card */
.eligibility-card {
    background: linear-gradient(135deg, #0d2a55, #133d80);
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    color: #fff;
    border: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.eligibility-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4),
        0 0 18px rgba(0, 191, 255, 0.4);
}

/* Shine Effect */
.eligibility-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    transform: rotate(25deg);
    transition: 0.7s;
    opacity: 0;
}

.eligibility-card:hover::before {
    top: -30%;
    left: -30%;
    opacity: 1;
}

/* Headings inside card */
.eligibility-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.eligibility-list {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding-left: 20px;
}

.eligibility-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.eligibility-link {
    color: #00bfff;
    text-decoration: none;
    font-weight: 600;
}

.eligibility-link:hover {
    text-decoration: underline;
    color: #66d9ff;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .eligibility-title {
        font-size: 1.8rem;
    }

    .eligibility-sub {
        font-size: 0.9rem;
    }

    .eligibility-card {
        padding: 1.5rem;
    }

    .eligibility-heading {
        font-size: 1.2rem;
    }
}



/* Fees Structure */

.pricing-section {
    padding: 20px 0;

}

.pricing-card {
    position: relative;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.35s ease;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* First Dark EMI Card */
.pricing-card.dark {
    background: linear-gradient(145deg, #0d1b4c, #1a2d6f);
    color: #fff;
}

.pricing-card.dark .icon {
    color: #ffc107;
}

/* Card Icon */
.pricing-card .icon {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Card Heading */
.pricing-card h5 {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

/* Price Text */
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 2;
    color: #0d1b4c;
}

.pricing-card.dark .price {
    color: #fff;
}

/* Subtext */
.pricing-card .subtext {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Background Decorative Icons */
.pricing-card::after {
    content: "";
    font-family: "bootstrap-icons";
    font-size: 7rem;
    position: absolute;
    right: 20px;
    bottom: -10px;
    color: rgba(13, 27, 76, 0.07);
    z-index: 1;
    pointer-events: none;
}

.pricing-card.semester::after {
    content: "\f501";
    /* mortarboard */
}

.pricing-card.full::after {
    content: "\f156";
    /* rupee */
}

/* Responsive Design for Mobile */
@media (max-width: 767px) {
    .pricing-section {
        padding: 50px 15px;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 20px;
    }

    .pricing-card .icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .pricing-card h5 {
        font-size: 1.1rem;
    }

    .pricing-card .price {
        font-size: 1.8rem;
    }

    .pricing-card .subtext {
        font-size: 0.9rem;
    }
}






/* Faculty slider */

.faculty-section {
    padding: 14px 0px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #0d1b2a;
}

/* Card */
.faculty-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    margin: 10px;
    /* gap between cards */
}

.faculty-card img {
    width: 137px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007bff;
    margin: 5px auto 32px;
    display: block;
}

.faculty-card h5 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 6px;
    color: #0d1b2a;
}

.faculty-card p {
    font-size: 16px;
    color: #040404;
    margin-bottom: 15px;
}

.faculty-card a {
    font-weight: 600;
    font-size: 18px;
    color: #007bff;
    text-decoration: none;
    display: inline-block;
}

.faculty-card a:hover {
    text-decoration: underline;
}

/* Slick Dots */
.slick-dots li button:before {
    font-size: 12px;
    color: #007bff;
}

/* Modal Styling */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: none;
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    font-weight: 700;
    color: #0d1b2a;
}

.modal-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007bff;
    margin-bottom: 15px;
}

.modal-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Responsive */
@media (max-width: 767px) {
    .faculty-card {
        padding: 20px 15px;
    }

    .faculty-card h5 {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
    }
}






/* Specialistaion courses */

.specialization-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    margin: 10px;
    transition: transform 0.3s ease;
}

.specialization-card:hover {
    transform: translateY(-5px);
}

.specialization-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body h6 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.card-body h5 {
    font-weight: bold;
    margin-bottom: 8px;
}

.btn-know {
    background: #0066ff;
    color: #fff;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-know:hover {
    background: #004bcc;
    color: #fff;
}




/* Whatsapp icon */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background-color: #25d366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}




/* Enroll now */
/* CTA From */
/* Outer card */
.cf-wrap {
    width: 100%;
    max-width: 980px;

    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(20, 30, 60, 0.12);
    padding: 50px;
    transition: transform .18s ease, box-shadow .18s ease;
    overflow: hidden;
    background-color: #8193c23b;

}


/* Header */
.cf-head {
    display: flex;
    align-items: center;
    gap: 160px;
    margin-bottom: 36px;
}

.cf-badge {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37, 117, 252, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.cf-title {
    font-size: 32px !important;
    font-weight: 700;
    color: #0b2546;
    margin: 0;
}

.cf-sub {
    margin: 0;
    color: #4b5b77;
    font-size: 0.92rem;
    opacity: 18px;
}

/* =========================
       Input groups & icons
       ========================= */
/* wrapper for each field (left icon + input/select + right validation icon + helper) */
.cf-group {
    position: relative;
    display: block;
    width: 100%;
}

/* left icon */
.cf-left-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7b8a9a;
    font-size: 1.05rem;
    pointer-events: none;
}

/* right validation icons (initially hidden) */
.cf-valid-icon,
.cf-invalid-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    display: none;
}

.cf-valid-icon {
    color: var(--accent);
}

.cf-invalid-icon {
    color: var(--danger);
}

/* inputs & selects — totally custom class names */
.cf-input,
.cf-select {
    width: 100%;
    display: block;
    padding: 12px 44px 12px 44px;
    /* space for left + right icons */
    border-radius: 10px;
    border: 1.7px solid rgba(20, 30, 60, 0.08);
    background: #fff;
    transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
    font-size: 0.95rem;
    color: #0b2546;

}

.cf-input::placeholder,
.cf-select option[disabled] {
    color: #aac0dd;
}

/* focus styling */
.cf-input:focus,
.cf-select:focus {
    outline: none;
    border-color: rgba(37, 117, 252, 0.65);
    box-shadow: 0 8px 24px rgba(37, 117, 252, 0.08);
    transform: translateY(-1px);
}

/* small helper text under field */
.cf-hint {
    font-size: 0.82rem;
    color: #7f8fa6;
    margin-top: 6px;
}

/* valid / invalid visual states */
.cf-valid {
    border-color: rgba(0, 184, 148, 0.85) !important;
    box-shadow: 0 6px 18px rgba(0, 184, 148, 0.06);
}

.cf-invalid {
    border-color: rgba(231, 76, 60, 0.9) !important;
    box-shadow: 0 6px 18px rgba(231, 76, 60, 0.05);
}

/* helper message for invalid */
.cf-error-msg {
    color: var(--danger);
    font-size: 0.82rem;
    margin-top: 6px;
    display: none;
}

/* =========================
       Submit button + spinner
       ========================= */
.cf-actions {
    margin-top: 6px;
}

.cf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    min-height: 48px;
    width: 100%;
    font-size: 1rem;
}

.cf-btn:active {
    transform: translateY(1px);
}

.cf-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

/* spinner (uses Bootstrap spinner for animation) */
.cf-spinner {
    display: none;
    width: 18px;
    height: 18px;
}

.cf-btn.loading .cf-spinner {
    display: inline-block;
}

.cf-btn.loading .cf-btn-text {
    display: none;
}

/* =========================
       Responsive tweaks
       ========================= */
@media (max-width: 575px) {
    .cf-left-icon {
        left: 10px;
    }

    .cf-input,
    .cf-select {
        padding-left: 38px;
        padding-right: 38px;
    }
}

/* small accessibility utility */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}





/* Placement Partners */

.partner-section {
    padding: 20px 0;
    text-align: center;

}



.partner-slider img {
    max-height: 90px;
    object-fit: contain;
    margin: auto;


}


/* Mobile responsiveness */
@media (max-width: 767px) {
    .partner-section h2 {
        font-size: 1.2rem;
    }

    .partner-slider img {
        max-height: 50px;
    }
}




/* Sample degree */


.amity-heading {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(11, 37, 70);

}

.amity-subtext {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #000;
}

.amity-subheading {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #007bff;
}

.benefits-row {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
}

.benefits-row span {
    padding: 0 15px;
}

.benefits-row .separator {
    border-left: 2px solid #ccc;
    height: 20px;
}

/* Certificate Image Styling */
.certificate-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
}

.certificate-wrapper::before,
.certificate-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 8px;
    z-index: 0;
}

.certificate-wrapper::before {
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: #007bff;
}

.certificate-wrapper::after {
    top: -30px;
    left: 15px;
    width: 100%;
    height: 100%;
    background: #ffc107;
    z-index: -1;
}

.certificate-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    max-width: 100%;
    height: 450px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Download Button */
.download-btn {
    position: relative;
    z-index: 2;
    margin-top: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    background: #007bff;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.download-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

}

/* Responsive tweaks */
@media (max-width: 767px) {
    .benefits-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefits-row .separator {
        display: none;
    }

    .certificate-wrapper {
        display: block;
        margin: 30px auto 0;
    }
}





/* Accreditaion section */



.accreditation-section h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.accreditation-section p.lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.accreditation-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    height: 240px;
}

.accreditation-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.accreditation-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.accreditation-card h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

@media (max-width: 767px) {
    .accreditation-card {
        margin-bottom: 20px;
    }
}







/* Admission Process */
.admission-process {
    padding: 20px 0;
    text-align: center;
}

.admission-process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #0d2a5c;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 25px;
    margin-left: 27px;
}

.process-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.step-title {
    font-weight: 700;
    color: #0d2a5c;
    font-size: 20px;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 1rem;
    color: #000000;
}

/* Arrow between steps */
.process-step::after {
    content: "→";
    position: absolute;
    right: -40px;
    top: 45px;
    font-size: 28px;
    color: #000;
}

.process-step:last-child::after {
    content: none;
}

/* Colors for icons */
.bg-green {
    background: #4caf50;
}

.bg-blue {
    background: #2196f3;
}

.bg-yellow {
    background: #ffc107;
    color: #333;
}

.bg-pink {
    background: #e91e63;
}

.bg-lightgreen {
    background: #43a047;
}

/* Responsive */
@media (max-width: 767px) {
    .process-step {
        margin-bottom: 50px;
    }

    .process-step::after {
        content: none;
    }

    .process-icon {
        width: 100px;
        height: 100px;
        font-size: 32px;
    }
}





/* Benefits of Amity Online MBA */
.mba-section-title::after {
    content: "";
    display: block;
    width: 60%;
    margin: 8px auto 0;
    border-bottom: 3px solid #007bff;
    border-radius: 3px;
}

/* Accordion Container */
.mba-accordion .mba-item {
    border: none;
    border-radius: 14px;
    margin-bottom: 14px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.35s ease;
}



/* Active Item */
.mba-accordion .mba-item.active {
    border: 2px solid #007bff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.2);
}

/* Accordion Button */
.mba-accordion .mba-button {
    font-weight: 700;
    font-size: 19px;
    color: #003366;
    background: linear-gradient(90deg, #f8faff, #ffffff);
    border-radius: 0;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.mba-accordion .mba-button:hover {
    background: linear-gradient(90deg, #e6f0ff, #ffffff);
    color: #007bff;
}

/* Accordion Body */
.mba-accordion .mba-body {
    color: #555;
    line-height: 1.65;
    font-size: 16px;
    background: #fafbff;
    padding: 1rem 1.25rem;
}

/* Arrow Styling */
.mba-accordion .mba-button::after {
    transition: transform 0.4s ease, color 0.3s ease;
    font-size: 1rem;
    color: #007bff;
}

.mba-accordion .mba-button:not(.collapsed)::after {
    transform: rotate(90deg) scale(1.2);
    color: #003366;
}




/* Main Banner */
/* Hero Section */
.uni-hero {
    background: linear-gradient(rgba(10, 20, 60, 0.85), rgba(10, 20, 60, 0.85)),
        url('../Images/amity-university\ pop-up\ form.webp') no-repeat center/cover;
    color: #fff;
    padding: 30px 10px;
    padding-bottom: 45px !important;
}

.uni-logo-box {
    background: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 20px;
}

.uni-logo-box img {
    height: 40px;
}

.uni-title {
    font-size: 55px;
    font-weight: 700;
    margin-top: 50px;
}

.uni-highlight {
    color: #ffcc00;
}


.uni-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
}

.uni-courses span {
    margin: 0 6px;
    color: #ffcc00;
    font-weight: 600;
    font-size: 25px;
}

.uni-scholarship {
    background: #ffeb3b;
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    font-size: 18px;
}

.uni-btn {
    background: #0d47a1;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    transition: 0.3s;
}

.uni-btn:hover {
    background: #09357a;
}
@media (min-width: 1025px) {
  .uni-form-box {
    display: none !important;
  }
}
/* Form Box */
.uni-form-box {
    background: #fff;
    color: #000;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.uni-form-box h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.adpara {
    font-size: 18px;
}

.uni-consent {
    font-size: 14px;
}

/* ✅ Mobile Responsive */
@media (max-width: 767px) {
    .uni-hero {
        padding: 40px 15px;
        text-align: center;
    }

    .uni-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .uni-subtitle {
        font-size: 18px;
    }

    .uni-courses {
        font-size: 14px;
    }

    .uni-scholarship {
        font-size: 13px;
        padding: 8px 16px;
        margin-top: 15px;
    }

    .uni-form-box {
        margin-top: 30px;
        padding: 20px;
    }

    .uni-form-box h4 {
        font-size: 18px;
    }

    .uni-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}



.reasons-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin: 50px auto;
    max-width: 1000px;
}

.reasons-section h2 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: #1d3557;
}

.reasons-list {
    list-style: none;
    padding: 0;
}

.reasons-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.reasons-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.1rem;
}

.reasons-list strong {
    color: #000;
}

.highlight-text {
    margin-top: 30px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #eaf3ff, #f6f9ff);
    border-left: 5px solid #007bff;
    border-radius: 8px;
    font-size: 1rem;
    font-style: italic;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .reasons-section {
        padding: 25px 20px;
        margin: 20px;
    }

    .reasons-section h2 {
        font-size: 1.5rem;
    }

    .reasons-list li {
        font-size: 0.95rem;
        padding-left: 28px;
    }
}


.who-section {
    padding: 0px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.who-section h2 {
    font-weight: 700;
    font-size: 1.9rem;
    margin-bottom: 25px;
    color: #1d3557;
    text-align: left;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.who-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.2rem;
}

.who-list strong {
    color: #000;
}

@media (max-width: 767px) {
    .who-section {
        padding: 30px 15px;
    }

    .who-section h2 {
        font-size: 1.5rem;
    }

    .who-list li {
        font-size: 1rem;
    }
}


.advantage-section {
    padding: -1px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.advantage-section h2 {
    font-weight: 700;
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #1d3557;
}

.advantage-section h2 span {
    color: #e63946;
    /* highlight CampusWalkin */
}

.advantage-section p.intro {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #444;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.advantage-list li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.advantage-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.2rem;
}

.advantage-list strong {
    color: #000;
}

.closing-note {
    margin-top: 25px;
    padding: 15px 20px;
    background: #f8faff;
    border-left: 4px solid #007bff;
    border-radius: 6px;
    font-size: 1rem;
    font-style: italic;
    color: #333;
}

@media (max-width: 767px) {
    .advantage-section {
        padding: 40px 15px;
    }

    .advantage-section h2 {
        font-size: 1.6rem;
    }

    .advantage-list li {
        font-size: 0.95rem;
        padding-left: 30px;
    }
}


.mba-heading {
    font-weight: 700;
    font-size: 2rem;
    color: #1e293b;
}

.mba-box {
    border: none;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: #fff;
    padding: 24px;
    height: 100%;
}

.mba-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.mba-box h5 {
    font-weight: 600;
    color: #0f172a;
}

.mba-box ul li {
    margin-bottom: 10px;
}

.mba-icon {
    color: #2563eb;
    margin-right: 8px;
    font-size: 1.1rem;
}

.mba-tip {
    background: linear-gradient(135deg, #eaf3ff, #f6f9ff);
    border-left: 5px solid #007bff;
    margin-top: 30px;
    border-radius: 10px;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 500;
}

.mba-cta {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.mba-cta:hover {
    background: linear-gradient(45deg, #1d4ed8, #2563eb);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
    color: #fff;
}


.placement-wrapper {

    padding: 10px 0;
}

.placement-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
}

.placement-subtext {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 40px;
}

.placement-feature {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

.placement-feature:last-child {
    border-bottom: none;
}

.placement-icon {
    font-size: 1.5rem;
    color: #2563eb;
    margin-right: 15px;
    flex-shrink: 0;
}

.placement-feature p {
    margin: 0;
    font-size: 1rem;
    color: #1f2937;
}

.placement-note {
    background: linear-gradient(135deg, #eaf3ff, #f6f9ff);
    border-left: 5px solid #007bff;
    padding: 15px 20px;
    border-radius: 6px;
    margin-top: 35px;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
}

.placement-brand {
    color: #e11d48;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .placement-title {
        font-size: 1.6rem;
    }
}






.req-wrapper {
    padding: 80px 0;
}

.req-title {
    font-weight: 600;
    color: #0d1b2a;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.req-intro {
    max-width: 850px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #444;
}

.req-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.req-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80px;
    width: 120%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #20c997);
}

.req-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.req-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #0d6efd;
}

.req-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.req-list li i {
    margin-right: 8px;
    color: #20c997;
}

.strength-card ul li i {
    color: #ffb400;
}

.req-tip {
    background: linear-gradient(135deg, #eaf3ff, #f6f9ff);
    border-left: 6px solid #007bff;
    padding: 22px;
    border-radius: 14px;
    margin-top: 40px;
    font-weight: 500;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .req-title {
        font-size: 1.6rem;
    }

    .req-card {
        padding: 22px;
    }
}















.study-title {
    font-weight: 600;
    color: #0d1b2a;
    margin-bottom: 30px;
    text-align: center;
}

.study-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
}

.study-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.study-card h5 {
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 15px;
}

.study-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.study-list li i {
    margin-right: 8px;
    color: #20c997;
}

.study-highlight {
    background: linear-gradient(135deg, #eaf3ff, #f6f9ff);
    border-left: 6px solid #007bff;
    padding: 20px;

    border-radius: 12px;
    margin-top: 35px;
    font-size: 1rem;
    font-weight: 500;
}

.study-brand {
    color: black;
    font-weight: 600;
}

@media (max-width: 767px) {
    .study-title {
        font-size: 1.6rem;
    }
}














/* Titles */
.cw-title {
    font-weight: 700;
    color: #0d47a1;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-size: 2rem;
}



/* Timeline */
.cw-timeline {
    position: relative;
    margin: 40px auto;
    padding: 0;
    list-style: none;
    max-width: 800px;
}

.cw-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #0d47a1;
}

.cw-timeline-step {
    position: relative;
    margin: 40px 0;
    width: 50%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}



.cw-step-left {
    left: -15px;
}

.cw-step-right {
    left: 52%;
}

.cw-timeline-step::before {
    content: attr(data-step);
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0d47a1;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 15px rgba(13, 71, 161, 0.4);
}

.cw-step-left::before {
    right: -82px;
}

.cw-step-right::before {
    left: -73px;
}

/* Stories */
.cw-story-slide {
    padding: 40px;
}

.cw-story-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.1rem;
}

.cw-story-card strong {
    color: #0d47a1;
}

.cw-final-note {
    margin-top: 30px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
}

.cw-final-note strong {
    color: #ff5722;
}

/* Mobile */
@media (max-width: 767px) {
    .cw-timeline::before {
        left: 20px;
    }

    .cw-timeline-step {
        width: 100%;
        margin-left: 40px;
    }

    .cw-step-left,
    .cw-step-right {
        left: 0 !important;
    }

    .cw-timeline-step::before {
        left: -50px !important;
    }
}



.outcome-block {
    padding: 10px 10px;

}

.outcome-heading {
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    color: black;
    margin-bottom: 50px;
    position: relative;
}


/* Cards */
.outcome-item {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.outcome-item:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
}

.outcome-symbol {
    font-size: 2rem;
    color: #ff5722;
    margin-bottom: 15px;
}

.outcome-item strong {
    color: #0d47a1;
}

.outcome-note {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.outcome-note strong {
    color: #0d47a1;
}






/* Accredited Online MBA Programs in India */

.lead-slider-section {

    border-radius: 12px;
    padding: 20px 20px;
    max-width: 100%;
    margin: 0px auto;
    margin-top: 10px;
}

.lead-slider-title {
    color: #fff;
    font-size: 2rem !important;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: black;
}

.lead-slider-subtext {
    color: black;
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.6;
    text-align: center;
    padding: 0 40px;
}

.slick-prev:before{
    color: #000;
}

.university-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    min-height: 290px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 15px;
    width: 100%;
    max-width: 340px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.university-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.university-image {
    height: 150px;
    object-fit: cover;
    width: 100%;
}

.university-card-body {
    padding: 20px;
    background-color: #fff;
}

.university-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.university-accreditation {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
    font-weight: 700;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .lead-slider-section {
        padding: 30px 20px;
    }

    .lead-slider-title {
        font-size: 28px;
        margin-top: 15px;
    }

    .lead-slider-subtext {
        font-size: 15px;
        padding: 0 15px;
    }

    .university-card {
        max-width: 90%;
        margin: 20px auto;
        /* ensures gap between cards */
        height: 100px;
    }

    .university-image {
        height: 130px;
    }

    .university-card-body {
        margin: 21px;
    }
}