
    .modal-title-sub {
        font-size: 14px;
        margin-top: 5px;
        color: #555;
    }

    .modal-content {
        border-radius: 8px;
        padding: 20px;
    }

    .form-check-input:checked {
        background-color: #b30000;
        border-color: #b30000;
    }

    .form-check-label a {
        color: #b30000;
        text-decoration: none;
    }

    .custom-card {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: none;
        overflow: hidden;
        min-height: 13rem;
    }

    .custom-card img {
        width: 50%;
        height: 100%;
        object-fit: cover;
    }

    .custom-card .card-body {
        padding: 30px;
    }

    .custom-card .card-title {
        font-weight: bolder;
    }
    /* Fullscreen carousel */
    .carousel-item {
        height: max-content;
        max-height: 95vh;
        position: relative;
    }

    /* Make images cover the entire carousel */
    .carousel-item img {
        object-fit: fill;
        width: 100%;
        height: max-content;
        max-height: 100vh;
        height: 90vh;
        z-index: 1;
    }

    /* Make videos full-screen, autoplay, loop, and remove controls */
    .carousel-item video {
        width: 100%;
        height: max-content;
        max-height: 100vh;
        object-fit: fill;
        z-index: 1;
        position: relative;
    }

    .carousel-item video::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5)
    }


    .crausel-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        background: transparent;
        color: white;
        padding: 20px;
        border-radius: 10px;
        max-width: 70%;
        text-align: center;

        /* display: none; */
    }


    .red-line {
        position: relative;
    }

    .red-line::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 60%;
        height: 5px;
        background-color: var(--e-global-color-accent);
    }

    .crausel-content h2 {
        color: #fff !important;
        font-size: 40px !important;
        font-family: sans-serif;
    }

    .video-wrapper {
        position: relative;
        width: 100%;
        height: 17rem;
        max-height: 100vh;
        overflow: hidden;
    }

    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }



    .mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input,
    .mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control {
        border: none !important;
        padding: 0 !important;
    }

    .pgdm-section {
        background-color: #ffffff;
        /* golden background */
    }

    .section-title {
        font-weight: 600;
        color: #fff;
        letter-spacing: 1px;
    }

    .info-box {
        text-align: center;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        background: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px auto;
        font-size: 22px;
        color: #003366;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .label {
        background-color: var(--e-global-color-accent);
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        padding: 6px 10px;
        border-radius: 5px;
        display: inline-block;
        margin-bottom: 5px;
    }

    .small-text {
        font-size: 12px;
        color: #333;
        margin-top: 5px;
    }


    /* accordin styles */
    .program-architecture {
        background: #f5f5f5;
    }

    .section-heading {
        font-weight: 600;
        position: relative;
        display: inline-block;
    }

    .section-heading::before,
    .section-heading::after {
        content: "";
        position: absolute;
        height: 2px;
        width: 80px;
        background: #2d1c66;
        top: 50%;
    }

    .section-heading::before {
        left: -100px;
    }

    .section-heading::after {
        right: -100px;
    }

    .bottom-section {
        width: 75% !important;
    }



    /* Accordion Header Styling */
    .custom-header {
        background: transparent !important;
        color: #2d1c66 !important;
        font-weight: 600;
        border: none;
        box-shadow: none !important;
    }

    .custom-header:not(.collapsed) {
        color: var(--e-global-color-accent) !important;
    }


    /* Table Styling */
    .custom-table thead {
        background: #c79a00;
        color: #fff;
    }

    .custom-table tbody tr:nth-child(even) {
        background: #f2f2f2;
    }

    .custom-table th {
        background: #212121;
        color: #fff;
        font-weight: 600;
    }

    .custom-table td,
    .custom-table th {
        font-size: 14px;
        vertical-align: middle;
    }



    /* academic features section  */
    .academic-features {
        background: #f4f4f4;
    }

    .feature-card {
        background: #1f2f4a;
        /* deep navy */
        color: #fff;
        padding: 30px;
        height: 100%;
        position: relative;
        transition: all 0.4s ease;
        border-radius: 4px;
    }

    .feature-card h5 {
        font-weight: 600;
        margin-bottom: 15px;
    }

    .feature-card p {
        font-size: 14px;
        line-height: 1.7;
        opacity: 0.9;
    }

    /* Icon */
    .feature-icon {
        width: 38px;
        height: 38px;
        border: 2px solid #f4c430;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #f4c430;
        margin-bottom: 15px;
        font-size: 18px;
    }

    /* Hover Effect */
    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        background: #24395d;
    }


    .stats-section {
        background: #f4f4f4;
    }

    .stat-item {
        position: relative;
        padding: 20px 10px;
        /* display: flex;
        align-items: center; */
    }

    /* Vertical Divider */
    .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: #d6d6d6;
    }

    /* Large Numbers */
    .stat-number {
        font-size: 52px !important;
        font-weight: 300 !important;
        color: #2f3f66 !important;
        margin-bottom: 5px;
    }

    /* Small Text */
    .stat-text {
        font-size: 16px;
        color: #333;
        margin: 0;
    }

    .campus-section {
        position: relative;
        background-image: url('https://tebewebe.online/edupreme/wp-content/uploads/sites/63/2023/11/college-student-walking-to-class.jpg');
        background-size: cover;
        background-position: center;
        padding: 80px 0;
    }

    .campus-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 30, 60, 0.7);
    }

    .campus-section .container {
        position: relative;
        z-index: 2;
        color: #fff;
    }

    .campus-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .campus-title {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.3;
        color: #fff !important;
    }

    .campus-highlight {
        padding: 4px 0px;
        font-weight: bold;
        color: #fff;
    }

    .campus-list p {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .pgdm-section {
        margin-top: 80px;
    }

    /* Left Image */
    .image-side {
        background-image: url('../images/woman-taking-notes-cafeteria.jpg');
        background-size: cover;
        background-position: center;
        min-height: 420px;
        border-radius: 6px;
    }

    /* Right Content */
    .content-side {
        padding: 40px;
    }

    /* List Styling */
    .pgdm-list {
        padding-left: 18px;
    }

    .pgdm-list li {
        margin-bottom: 8px;
        font-size: 15px;
    }


    /* Section Background */
    .eligibility-section {
        background: #fff;
    }

    /* Heading */
    .section-title {
        font-size: 38px;
        font-weight: 700;
        color: #1f2d3d;
    }

    /* Info Box */
    .eligibility-section .info-box {
        align-items: flex-start;
    }

    /* Red Circle Icon */
    .eligibility-section .icon-circle {
        width: 75px;
        height: 75px;
        background: #b11f2a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .eligibility-section .icon-circle i {
        font-size: 30px;
        color: #fff;
    }

    /* Paragraph Styling */
    .eligibility-section .info-box p {
        font-size: 17px;
        color: #5a5a5a;
        line-height: 1.7;
    }
    .card-img-top{
        max-height: 12rem !important;
        min-height: 12rem !important;
    }
    .hero-section {
        position: relative;
        min-height: 600px;
        overflow: hidden;
        color: #fff;
        display: flex;
        align-items: center;
    }

    /* ✅ Background (NO extra height issue now) */
    .parallax-bg {
        position: absolute;
        inset: 0;
        background: url('https://tebewebe.online/edupreme/wp-content/uploads/sites/63/2023/11/students-near-a-campus-e1701364445533.jpg') no-repeat;
        background-size: cover;
        background-position: 25% 10%;
        z-index: 0;

        /* Smooth effect */
        transform: translateY(0);
    }

    /* ✅ Bluish overlay */
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(13, 42, 80, 0.6);
        z-index: 1;
    }

    /* Content */
    .hero-section .container {
        position: relative;
        z-index: 2;
    }

    /* Text */
    .hero-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
    }

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

    .hero-list {
        padding-left: 18px;
        margin-bottom: 25px;
    }

    .hero-list li {
        margin-bottom: 10px;
        font-size: 15px;
    }

    /* Button */
    .hero-btn {
        background: #e63946;
        color: #fff;
        padding: 12px 22px;
        border-radius: 4px;
        text-transform: uppercase;
    }

    /* 🔥 RESPONSIVE */
    @media (max-width: 992px) {
        .hero-title {
            font-size: 32px;
        }
    }

    @media (max-width: 576px) {
        .hero-section {
            min-height: 500px;
            padding: 40px 0;
        }

        .hero-title {
            font-size: 24px;
        }

        .hero-subtitle,
        .hero-list li {
            font-size: 14px;
        }

        .parallax-bg {
            background-position: 40% center;
        }
    }
    /* Section */
    .feature-section {
        background: transparent;
    }

    /* Card Base */
    .home-feature-card {
        padding: 40px 30px;
        height: 100%;
        position: relative;
        transition: 0.3s ease;
        background: #d6d6d6;
        opacity: 0;
        transform: translateX(60px); /* right se start */
        transition: all 0.6s ease;
    }

    /* Visible state */
    .home-feature-card.show {
        opacity: 1;
        transform: translateX(0);
    }

    /* Light Cards */
    .home-feature-card.light {
        background: #e9e9e9;
        color: #333;
    }

    /* Dark Card */
    .home-feature-card.dark {
        background: var(--e-global-color-primary);
        color: #fff !important;
    }

    /* Heading */
    .home-feature-card h4 {
        font-size: 20px;
        font-weight: 600 !important;
        margin-bottom: 15px;
        position: relative;
        padding-left: 15px;
    }


    /* Red Line */
    .home-feature-card h4::before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        width: 3px;
        height: 20px;
        background: #d32f2f;
    }

    /* Text */
    .home-feature-card p {
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
        opacity: 0.9;
    }

    /* Remove gaps */
    .row.g-0 > [class*='col-'] {
        padding: 0;
    }
    /* Responsive */
