/* ── Controls Overlay ── */
.custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 10px 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.video-wrapper:hover .custom-video-controls,
.zoom-modal-box:hover .custom-video-controls {
    opacity: 1;
}

/* ── Zoom IN button (top right) ── */
.zoom-in-btn,
.zoom-out-btn {
    position: absolute !important;
    top: -25px;
    right: 10px;
    width: 36px !important;
    height: 36px !important;
    background: #a51d30;
    border-color: transparent !important;
    color: #fff !important;
}

.zoom-in-btn:hover,
.zoom-out-btn:hover {
    background: #f5c400 !important;
    transform: scale(1.1);
}

.zoom-in-btn svg,
.zoom-out-btn svg {
    stroke: #fff !important;
}

/* ── Bottom Controls Bar ── */
.ctrl-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Control Buttons ── */
.ctrl-btn {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, transform 0.15s;
    padding: 0;
}

.ctrl-btn svg {
    width: 15px;
    height: 15px;
}

.ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ── Progress Bar ── */
.ctrl-progress-wrap {
    flex: 1;
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
}

.ctrl-progress {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    margin: 0;
}

.ctrl-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #f5c400;
    border-radius: 2px;
    width: 0%;
    pointer-events: none;
    transition: width 0.1s linear;
}

/* ── Time ── */
.ctrl-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    min-width: 32px;
    font-family: monospace;
}

/* ══ ZOOM MODAL ══ */
.zoom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(4px);
}

.zoom-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.zoom-modal-box {
    width: 80%;
    /* max-width: 860px; */
    background: #111;
    border-radius: 14px;
    border: 1px solid rgba(245, 196, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

.zoom-modal-overlay.active .zoom-modal-box {
    transform: scale(1);
}

/* Modal Header */
.zoom-modal-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #1a1a1a;
}

.zoom-modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #f5c400;
}

.zoom-close-btn {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    padding: 0;
}

.zoom-close-btn svg {
    width: 14px;
    height: 14px;
}

.zoom-close-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
}

/* Esc key hint */
.zoom-modal-overlay.active::after {
    content: 'Press ESC to close';
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}


@media screen and (max-width:476px) {
    .card-text {
        font-size: 12px;
    }

    .campus-list li {
        font-size: 12px;
    }
}


/* Section */
.mv-section {
    padding: 60px 20px;
    background: #fff;
    font-family: sans-serif;
}

/* Container */
.mv-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT */
.mv-left {
    flex: 1;
}

.mv-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #222;
}

/* Box */
.mv-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

/* Icon */
.mv-icon {
    min-width: 60px;
    height: 60px;
    background: #b21f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Content */
.mv-content h3 {
    margin: 0;
    font-size: 20px;
}

.mv-content p {
    margin-top: 8px;
    color: #555;
    line-height: 1.7;
}

/* Divider */
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

/* RIGHT */
.mv-right {
    flex: 1;
    position: relative;
}

.mv-right img {
    width: 100%;
    border-radius: 8px;
}

/* Quote overlay */
.mv-quote {
    position: absolute;
    bottom: 20px;
    right: -20px;
    right: 20px;
    /* background: rgba(0, 0, 0, 0.6); */
    background: #fff;
    color: #000;
    padding: 15px;
    font-size: 14px;
    border-radius: 6px;
    width: 400px;
    /* transform: translateX(100px); */
}

/* 📱 MOBILE */
@media (max-width: 768px) {

    .mv-container {
        flex-direction: column;
        gap: 30px;
    }

    .mv-left h2 {
        font-size: 24px;
    }

    .mv-box {
        gap: 15px;
    }

    .mv-icon {
        min-width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .mv-content h3 {
        font-size: 18px;
    }

    .mv-content p {
        font-size: 11px;
    }

    .mv-quote {
        transform: translateX(21px);
        width: 100%;
        font-size: 13px;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        bottom: 0;
    }
}

.autoPopupModal .modal-content {
    z-index: 10
}

.modal-header {
    background-color: #fff;
    text-align: center;
    flex-direction: column;
    border-bottom: none
}

.modal-header h5 {
    color: #b30000;
    font-weight: bold
}

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

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

.btn-danger {
    background-color: #b30000;
    border: none
}

.modal-header .btn-close {
    background-color: transparent !important
}

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

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

.w-50 {
    width: 50% !important
}

.owl-carousel .item {
    padding: 10px 0
}

.owl-carousel .item img {
    width: 90%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    background-blend-mode: color-burn;
    mix-blend-mode: multiply
}

.carousel-fade-wrapper {
    position: relative;
    overflow: hidden
}

.carousel-fade-wrapper::before,
.carousel-fade-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none
}

.carousel-fade-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent)
}

.carousel-fade-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent)
}

.video-container {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.video-container video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 3
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-content: center;
    color: #fff;
    padding-bottom: 100px
}

.video-container h2 {
    color: #fff !important
}

@media screen and (max-width:500px) {
    .video-container {
        height: max-content
    }

    .video-overlay {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

    .video-overlay p {
        font-size: 14px !important
    }

    .video-overlay h2 {
        color: #fff !important;
        font-size: 16px !important
    }

    .elementor-304 .elementor-element.elementor-element-5a80b44 {
        padding-right: 30px
    }
}

.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
}

.tabs-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 85px;
    position: relative
}

.tab-buttons {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    border-radius: 10px
}

.tab-button {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    transition: background .3s ease;
    border-radius: 10px;
    position: relative
}

.tab-button.active {
    color: #000;
    border-bottom: 2px solid red;
    border-radius: 0
}

.tab-content {
    display: none;
    padding: 50px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    background-size: cover
}

.tab-content.active {
    display: block
}

.tab-content-card {
    background: #fff;
    border-radius: 10px;
    padding: 50px 30px;
    width: 800px
}

.tab-content h2 {
    font-size: 40px;
    margin: 0
}

.tab-content span {
    color: red
}

.tab-content p {
    font-size: 18px;
    color: #000;
    opacity: .9;
    margin: 20px 0 0
}

.top-recruiters-title span {
    margin-left: -160px
}

.faq-section {
    background: #f0f0f0;
    padding: 60px 0 96px;
    margin-bottom: 60px
}

.break-faq {
    display: flex;
    gap: 10px;
    width: 1280px;
    margin: auto
}

.blog-grid {
    background-color: #333;
    margin-top: 20px
}

.blog-items {
    box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #000
}

.blog-items .blog-img img {
    border-radius: 10px 10px 0 0
}

.blog-items .blog-cont {
    background-color: #fff
}

.blog-items a:hover {
    color: #000
}

@media screen and (max-width:900px) {
    .tabs-container {
        max-width: 750px
    }

    .blog-grid {
        grid-template-columns: auto auto
    }
}

@media screen and (max-width:750px) {
    .tabs-container {
        max-width: 650px
    }

    .blog-grid {
        grid-template-columns: auto auto
    }
}

@media screen and (max-width:500px) {
    .tabs-container {
        width: 90%;
        margin: auto
    }

    .tab-content {
        padding: 33px 20px 37px;
        margin: 10px 0
    }

    .tab-content-card {
        width: auto;
        padding: 27px 19px
    }

    .tab-content p {
        font-size: 14px;
        color: #000;
        opacity: .9;
        margin: 20px 0 0
    }

    .tab-buttons {
        overflow: auto
    }

    .tab-button {
        font-size: 13px;
        white-space: nowrap
    }

    .tab-content h2 {
        font-size: 26px
    }

    .blog-grid {
        display: block
    }

    .e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,
    .e-con>.elementor-widget>.elementor-widget-container {
        height: auto
    }

    .blog-lm {
        padding-bottom: 10px
    }

    .blog-grid .blog-items .blog-cont {
        padding: 18px 18px 0
    }

    .carousel-item {
        height: 65vh !important;
        position: relative
    }

    .carousel-item img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        z-index: 1
    }

    .carousel-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1
    }

    .carousel-indicators {
        bottom: 10px
    }

    .crausel-btn {
        background-color: transparent !important
    }

    .crausel-btn span {
        columns: #000 !important
    }

    .carousel-caption {
        bottom: 0;
        top: 5rem !important
    }
}

.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)
}

.elementor-element-6aec9e8 .elementor-widget-container h2 {
    font-size: 2rem
}

.elementor-element-6aec9e8 .elementor-widget-container i {
    font-size: 1.5rem
}

.ekit-wid-con .elementskit-accordion .elementskit-card-header>.elementskit-btn-link {
    background: none !important
}

.ekit-wid-con .elementskit-accordion .elementskit-card-body {
    padding: 20px 30px !important
}

.news-section,
.faq-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px
}

.news-section {
    background: transparent
}

.accordion-button {
    background: #ddd !important;
    color: #000 !important
}

.accordion-button:hover {
    color: #000 !important;
    font-weight: bold
}

.accordion-button {
    outline: none;
    border: none
}

.accordion {
    width: 100%;
    max-width: 600px;
    margin: 20px auto
}

.accordion-item {
    border-bottom: 1px solid #ccc
}

.accordion-header {
    background: #f4f4f4;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    transition: background .3s;
    user-select: none
}

.accordion-header:hover {
    background: #ddd
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    background: #fff;
    transition: max-height .3s ease-out, padding .3s ease-out
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 15px
}

.card-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}