/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville&display=swap');

/* TABLE OF CONTENT
---------------------------------------------------------
    01. Root CSS
    02. Animation
    03. General CSS
    04. Navbar CSS
    05. Home page
    06. Footer CSS
    07. Responsive
    08. Modal CSS
    09. Enquiry form Css
--------------------------------------------------------*/

/* --------------------------------------------------------
    Root Variables
-------------------------------------------------------- */
:root {
    /* Colors */
    --primary-color: #b71a34;
    --primary-hover: #dfb43b;
    --text-color-light: #ffffff;
    --text-color-gray: #333333;
    --text-color-dark: #111111;
    --heading-color-dark: #111111;
    --heading-color-light: #ffffff;

    /* Background */
    --bg-white: #ffffff;
    --bg-dark: #111111;
    --bg-off-white: #b0b0b0;
    --bg-gray: #e9e9e9;
    --bg-primary: #b71a34;
    --bg-secondary:#dfb43b;
    --bg-transparent:rgba(255, 255, 255, 0.2);
    --gradient-bg-primary: linear-gradient(135deg, #b71a34 50%, #2c2c2c 0%);
    --gradient-bg-primary-webkit: -webkit-linear-gradient(135deg, #b71a34 50%, #2c2c2c 0%);

    /* Fonts */
    --font-body: 'Libre Franklin', sans-serif;
    --font-heading: 'Baskervville', serif;

    /* Sizes */
    --base-font-size: 15px;
    --base-line-height: 26px;
    --heading-line-height: 1.2;
    --radius-pill: 25px;
    --button-radius: 50px;

    /* Weight */
    --base-weight: 400;
    --heading-weight: 600;
}

/* --------------------------------------------------------
    animation
-------------------------------------------------------- */
@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}


@keyframes glow {
    0% {
        box-shadow: 0 0 8px rgba(183, 26, 52, 0.6);
    }

    50% {
        box-shadow: 0 0 18px rgba(183, 26, 52, 0.9);
    }

    100% {
        box-shadow: 0 0 8px rgba(183, 26, 52, 0.6);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right-to-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(183, 26, 52, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(183, 26, 52, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(183, 26, 52, 0);
    }
}

@keyframes pulsehover {
    0% {
        box-shadow: 0 0 0 0 rgba(223, 180, 59, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(223, 180, 59, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(223, 180, 59, 0);
    }
}

/* --------------------------------------------------------
    General CSS
-------------------------------------------------------- */
html,
body {
    margin: 0;
    font-size: var(--base-font-size);
    color: var(--text-color-gray);
    font-family: var(--font-body);
    vertical-align: baseline;
    line-height: var(--base-line-height);
    font-weight: var(--base-weight);
    overflow-x: hidden;
}

.page-content {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color-dark);
    line-height: var(--heading-line-height);
}

h1 {
    font-size: 36px;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    font-weight: 700;
}

h3 {
    font-size: 26px;
    font-weight: 700;
}

h4 {
    font-size: 24px;
    font-weight: 700;
}

h5 {
    font-size: 18px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 700;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.primary-color {
    color: var(--primary-color);
}

.main-section-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 48px;
    color: var(--heading-color-dark);
    text-align: center;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.main-section-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80%;
    height: 5px;
    background: var(--primary-color);
    border-radius: 3px;
}

.light-section-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 48px;
    color: var(--heading-color-light);
    text-align: center;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.light-section-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80%;
    height: 5px;
    background: var(--bg-white);
    border-radius: 3px;
}
.light-section-heading p {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 48px;
    color: var(--heading-color-light);
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 0;
}

button {
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    color: var(--text-color-dark);
    border-radius: 50px;
    display: inline-block;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.86, .01, .15, .99);
}

button::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

/*btn 1*/
.btn-clip {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: perspective(1px) translateZ(0);
    transition: 0.4s;
}

.btn-clip::before {
    background: var(--primary-color);
    clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
    opacity: 1;
    transition: 0.4s;
}

.btn-clip:hover::before {
    clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
    border: 2px solid var(--primary-color);
}

.btn-clip:hover {
    color: white;
    box-shadow: 0 0 0 5px rgba(250, 250, 250, 0.1)
}

.btn-clip i {
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.6s ease;
}

.btn-clip:hover i {
    transform: translateX(6px) rotate(450deg);
}

/*btn 2*/
.btn-clip1 {
    background: var(--primary-color);
    color: var(--text-color-light);
}

.btn-clip2 {
    display: inline-block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    overflow: hidden;
}

.btn-clip2:before {
    content: "";
    background: #8f1326;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.btn-clip2:hover,
.btn-clip2:active,
.btn-clip2:focus {
    color: var(--text-color-light);
}

.btn-clip2:active:before,
.btn-clip2:focus:before,
.btn-clip2:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/*btn 3*/
.apply-btn {
    background-color: #dfb43b;
    color: #000;
    border: 2px solid #dfb43b;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: glow 2s infinite;
}

.apply-btn i {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.6s ease;
}

.apply-btn:hover {
    background-color: #dfb43b;
    color: #000;
    border-color: #dfb43b;
    box-shadow: 0 0 20px rgba(223, 180, 59, 0.8);
}

.apply-btn:hover i {
    transform: translateX(6px) rotate(450deg);
}

.apply-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    transform: skewX(-25deg);
}

.apply-btn:hover::before {
    animation: shine 0.9s forwards;
}

/*btn 4*/
.placement-btn,
.join-btn {
    width: 100%;
    padding: 8px 14px;
    background-color: #b71a34;
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.placement-btn {
    font-size: 12px;
}

.join-btn {
    font-size: 20px;
}

.placement-btn:hover,
.join-btn:hover {
    background-color: #8f1326;
    color: #fff;
}

.whatsapp-btn {
    position: relative;
    background-color: #25D366;
    overflow: hidden;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.6s ease;
    text-decoration: none;
}

.whatsapp-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    transform: skewX(-25deg);
}

.whatsapp-btn i {
    font-size: 18px;
    transition: transform 0.6s ease;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}

.whatsapp-btn:hover i {
    transform: rotate(20deg);
}

.whatsapp-btn:hover::before {
    animation: shine 0.9s forwards;
}

/*video btn*/
.video-play-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 25px rgba(183, 26, 52, 0.4);
    animation: pulse 2s infinite;
}

.play-icon {
    position: relative;
    width: 0;
    height: 0;
    border-left: 18px solid var(--text-color-light);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.video-play-btn:hover {
    background: var(--primary-hover);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 35px rgba(223, 180, 59, 0.6);
    animation: pulsehover 2s infinite;
}

.video-play-btn:hover .play-icon {
    transform: scale(1.2);
}


/* Common styles for next & prev buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color-light);
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-hover);
    transform: translateY(-50%) scale(1.1);
}

/* Position adjustments */
.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

/* Optional: Custom arrow icons using pseudo-elements */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: var(--text-color-light);
}

.student_slider.swiper-button-next,
.student_slider.swiper-button-prev {
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 60%;
    transform: translateY(-50%);
    color: var(--text-color-light);
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

/* Hover effect — slightly brighter and less transparent */
.student_slider.swiper-button-next:hover,
.student_slider.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Position adjustments */
.student_slider.swiper-button-next {
    right: 15px;
}

.student_slider.swiper-button-prev {
    left: 15px;
}

.student_slider.swiper-button-next::after,
.student_slider.swiper-button-prev::after {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
}

/* Move navigation buttons to bottom center */
.btn_bottom__slider .swiper-button-next,
.btn_bottom__slider .swiper-button-prev {
    position: absolute;
    top: auto;
    bottom: 0;
    transform: none;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-light);
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Center buttons horizontally */
.btn_bottom__slider .swiper-button-prev {
    left: 50%;
    transform: translateX(-60px);
}

.btn_bottom__slider .swiper-button-next {
    left: 50%;
    transform: translateX(20px);
}

/* Hover animation */
.btn_bottom__slider .swiper-button-next:hover,
.btn_bottom__slider .swiper-button-prev:hover {
    background-color: var(--primary-hover);
}

#mainInfraImage {
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}

/* --------------------------------------------------------
    Navbar CSS
-------------------------------------------------------- */
.news-ticker {
    background: var(--bg-primary);
    color: var(--text-color-light);
    padding: 5px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.news-ticker span {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 18s linear infinite;
}

.news-ticker i {
    color: #ffb703;
    margin-right: 6px;
    margin-left: 6px;
}

.navbar-top {
    position: static;
    width: 100%;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    transition: all 0.3s ease;
}

.main-header.is-sticky {
    top: 0px;
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.navbar-logo img {
    height: 75px;
    width: 110px;
    object-fit: cover;
    overflow: hidden;
}


.main-header .nav-link {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-header .nav-link {
    position: relative;
    font-weight: 700;
    font-family: var(--font-heading);
}


.main-header.is-sticky .nav-link {
    color: #333333;
}


/* Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg-primary);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.overlay-menu.active {
    display: flex;
}

.overlay-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 0px;
    font-size: 3rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.overlay-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.overlay-menu ul li {
    margin: 20px 0;
}

.overlay-menu ul li a {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
}

@media (min-width: 768px) {

    .hamburger-btn,
    .overlay-menu {
        display: none !important;
    }
}

.overlay-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 20px;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    color: var(--text-color-light);
}

.overlay-cta-logo img {
    height: 125px;
    width: 180px;
    object-fit: cover;
    overflow: hidden;
}

.overlay-cta .cta-buttons button {
    min-width: 180px;
}

@media (max-width: 768px) {
    .overlay-cta {
        padding: 30px 15px;
    }

    .overlay-cta h2 {
        font-size: 28px;
    }

    .overlay-cta p {
        font-size: 16px;
    }

    .overlay-cta .cta-buttons button {
        width: 100%;
        min-width: unset;
    }
}


/* --------------------------------------------------------
    Home Page
-------------------------------------------------------- */
.home-page-banner {
    position: relative;
}

.home-page-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home-page-video video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.home-page-banner .enquiry-form {
    position: absolute;
    top: 55%;
    right: 5%;
    transform: translateY(-45%);
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.4);
    padding: 25px 30px;
    border-radius: 12px;
    width: 350px;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.enquiry-form {
    position: relative;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.4);
    padding: 25px 30px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #ccc;
    font-size: 14px;
    box-shadow: none;
}

.enquiry-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #333;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

.enquiry-form select:hover,
.enquiry-form select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.6);
    outline: none;
    box-shadow: none;
}

.enquiry-modal-form input,
.enquiry-modal-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #ccc;
    font-size: 14px;
    box-shadow: none;
}

.enquiry-modal-form select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #333;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-modal-form input:focus,
.enquiry-modal-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

.enquiry-modal-form select:hover,
.enquiry-modal-form select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.6);
    outline: none;
    box-shadow: none;
}

.new_events {
    background: var(--bg-white);
    background: var(--bg-white);
}

.section_title {
    text-align: center;
}

.section_title h2 {
    display: inline-block;
    position: relative;
    color: var(--heading-color-dark);
}

.section_title h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-dark);
    border-radius: 5px;
}

.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
}

.event-card img {
    height: 350px;
    width: 100%;
    overflow: hidden;
    object-fit: cover;

}

.event-content {
    background-color: #2c2c2c;
}

.event-title {
    font-weight: var(--heading-weight);
    padding: 15px 10px 10px 10px;
}

.event-title p {
    color: var(--text-color-light);
    font-size: 18px;
    text-align: left;
    margin: 0px;
}

.event-source {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.event-source p {
    color: var(--text-color-light);
    margin: 0px;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: var(--text-color-light);
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.event-sourse-tag a {
    color: var(--text-color-light);
}

.our_student {
    background-color: var(--bg-primary);
}
.students_top_company_slider .swiper-wrapper {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
}

.students_top_company_slider .swiper-slide {
    height: 100%;
}
.students_top_company_card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.students_top_company_card img{
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}
.students_top_company_card .card-body .col-lg-4.col-6 {
    display: flex;
    justify-content: center;
    align-items: center; 
}

.leading_recruiters {
    text-align: center;
}

.logo-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.logo-ticker-right {
    display: flex;
    width: max-content;
    animation: scroll-right-to-left 20s linear infinite;
}

.logo-ticker-right:hover {
    animation-play-state: paused;
}

.logo-ticker-right img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    margin: 0 20px;
    flex-shrink: 0;
    cursor: grab;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 10px;
}

.logo-ticker-left {
    display: flex;
    width: max-content;
    animation: scroll-left-to-right 30s linear infinite;
}

.logo-ticker-left:hover {
    animation-play-state: paused;
}

.logo-ticker-left img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    margin: 0 20px;
    flex-shrink: 0;
    cursor: grab;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 10px;
}

.placement_statistics {
    background: var(--bg-secondary);
    position: relative;
}

.placement {
    color: var(--text-color-dark);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 12px;
    height: 131px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}

.placement_statistics_images {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    max-width: 600px;
    width: 600px;
    height: auto;
}
.placement_statistics_images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.placement.offer {
    background: rgba(255, 255, 255, 0.2);
}

.placement.companies {
    background: rgba(255, 255, 255, 0.2);
}

.placement.highestpackage {
    background: rgba(255, 255, 255, 0.2);
}

.placementNo__num {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.placementNo__num sub {
    font-size: 18px;
    bottom: 0;
}

.placementNo__title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}
.summary-details {
    font-size: 0.98rem;
    color: #422c1f;
    margin-top: 16px;
    margin-right:40px;
    letter-spacing: 0.2px;
}
.summary-details .summary-details-highlight{
    font-size: 1.3rem;
    color: #000;
    letter-spacing: 0.2px;
}
.bold-highlight {
    font-weight: bold;
    color: #2d2d2d;
}
.why_choose_rcmb_title {
    text-align: center;
}

.why_choose_rcmb_card {
    position: relative;
    height: 100%;
    border-radius: 12px;
    background: var(--bg-white);
    padding: 60px 30px 30px 30px;
    border: 0.5px solid rgba(248, 249, 250, 0.5);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.why_choose_rcmb_card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease;
    z-index: 1;
}
.rcmb_card_icon{
    position: relative;
    text-align: center;
    margin-bottom:15px;
    z-index: 2;
}
.icon-colored{
    font-size:30px;
    background-color: transparent;
    transition: all 0.5s ease;
    color:#f4bf00;
}
.card_title {
    text-align: center;
    font-size: 20px;
}

.card_des {
    text-align: center;
}

.why_choose_rcmb_card .card_title,
.why_choose_rcmb_card .card_des {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.why_choose_rcmb_card:hover::before {
    transform: scaleY(1);
}

.why_choose_rcmb_card:hover .card_title,
.why_choose_rcmb_card:hover .card_des {
    color: var(--text-color-light);
}

.why_choose_rcmb_card.active {
    background: var(--primary-color);
    border: 0.5px solid rgba(248, 249, 250, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why_choose_rcmb_card.active .card_title,
.why_choose_rcmb_card.active .card_des {
    color: var(--text-color-light);
}

.ranking_accreditation_title {
    text-align: center;
}

.experience_rcmb {
    position: relative;
    background: var(--bg-primary);
}

.experience_rcmb_title {
    text-align: center;
}

.experience_rcmb_des p {
    font-size: 25px;
    color: var(--text-color-light);
}

.experience_rcmb_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gradient-bg-primary);
    background: var(--gradient-bg-primary-webkit);
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
/* Make 2x2 grid of images */
.experience_rcmb_card_img_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 6px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.experience_rcmb_card_img_grid .img_box {
    overflow: hidden;
    border-radius: 8px;
}

.experience_rcmb_card_img_grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience_rcmb_card_img_grid img:hover {
    transform: scale(1.1);
}

.experience_rcmb_card_img {
    height: 300px;
    overflow: hidden;
}

.experience_rcmb_card_content {
    flex: 1;
    color: var(--text-color-light);
}

.experience_rcmb_card_title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color-light);
}

.experience_rcmb_card_text {
    font-size: 18px;
    color: var(--text-color-light);
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: var(--text-color-light);
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.experience_rcmb_card_text i {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.5s ease;
}

.experience_rcmb_card_text:hover {
    color: var(--bg-gray);
    text-decoration-color: var(--bg-gray);
}

.experience_rcmb_card_text:hover i {
    transform: rotate(45deg);
}
.infra_image {
    height: 350px;
    width: 100%;
    overflow: hidden;
    padding: 5px;
}
.infra_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}
.infra_image_small{
    height: 250px;
    width: 100%;
    overflow: hidden;
}
.infra_image_small img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}
.intra_at_collage {
    height: 250px;
    width: 100%;
    overflow: hidden;
    padding: 5px;
}
.intra_at_collage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}
.programs_offered {
    position: relative;
    z-index: 1;
    background: url(../images/ppc.jpeg) center center / cover no-repeat;
}

.programs_offered::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 22, 23, 0.8);
    z-index: -1;
}

.programs_offered_title {
    text-align: center;
}

.programs_offered_des p {
    font-size: 25px;
    color: var(--text-color-light);
}

.programs_offered_card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.programs_offered_card {
    background: #fff;
    display: flex;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.programs_offered_card:hover {
    transform: translateY(-5px);
}

.programs_offered_card .title {
    color: #222;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.programs_offered_card .desc {
    font-size: 14px;
    margin-bottom: 10px;
    color: #B71A34;
}

.programs_offered_card p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.custom-outline-badge {
    color: #000000;
    background-color: #e9ecef;
    padding: 0.4em 0.75em;
    font-size: 0.75rem;
    font-weight: 300;
    border-radius: 50rem;
    transition: all 0.3s ease-in-out;
}

.custom-outline-badge:hover {
    background-color: #801634;
    color: #ffffff;
}

.our_faculty_title {
    text-align: center;
}

.our_faculty_des p {
    font-size: 25px;
}

.domestic_faculty_title {
    text-align: center;
}
.swiper-wrapper.faculty-swiper-wrapper{
    display: flex;
    align-items: stretch;
}

.swiper-slide.faculty__slider {
    display: flex;
}

.faculty_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faculty_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faculty_img_wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
}

.faculty_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.9s ease;
}

.faculty_card:hover .faculty_img {
    transform: scale(1.1);
}

.faculty_name {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 8px;
}

.faculty_designation {
    color: #b71a34;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    margin-bottom: 10px;
}

.faculty_experience {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.specialization .badge {
    background: #f9f9f9;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 12px;
    margin: 3px;
}

.specialization_title {
    color: var(--primary-color);
    font-size: 14px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}


.achievements ul {
    list-style: none;
    padding-left: 0;
    font-size: 13px;
    color: #555;
}

.achievements li {
    margin-bottom: 4px;
    
}

.leader-sec {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.leader-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.stu-info__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    text-align: left;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.stu-info__name b {
    font-size: 16px;
    color: #fff;
    display: block;
}

.stu-info__name small {
    color: #ddd;
    font-size: 13px;
    display: block;
}

.international_faculty {
    background: var(--bg-primary);
}

.international_faculty_title {
    text-align: center;
}
.swiper-wrapper.international_faculty-swiper-wrapper{
    display: flex;
    align-items: stretch;
}
.international_faculty__slider.swiper-slide{
    display: flex;
}
.international_faculty_card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(135deg, #b71a34 30%, #2c2c2c 0%);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.international_faculty_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.international_faculty_wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
}

.international_faculty_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.9s ease;
}

.international_faculty_card:hover .international_faculty_img {
    transform: scale(1.1);
}
.corporate_faculty_card {
    transition: all 0.3s ease-in-out;
    background: linear-gradient(225deg, #2c2c2c 70%, #b84f00 0%);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.corporate_faculty_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.international_faculty_card h4.international_faculty_name,
.corporate_faculty_card h4.international_faculty_name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.international_faculty_card p.international_faculty_designation,
.corporate_faculty_card p.international_faculty_designation {
    font-size: 1rem;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 4px;
}

.international_faculty_card p.international_faculty_experience,
.corporate_faculty_card p.international_faculty_experience {
    font-size: 0.95rem;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 12px;
}

.international_faculty_card .achievements h6,
.corporate_faculty_card .achievements h6 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #f2c94c;
}

.international_faculty_card .achievements ul li,
.corporate_faculty_card .achievements ul li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ffffff;
}

.international_faculty_card .specialization .badge,
.international_faculty_card .achievements .badge,
.corporate_faculty_card .specialization .badge,
.corporate_faculty_card .achievements .badge {
    display: inline-block;
    padding: 4px 10px;
    margin: 3px 4px 3px 0;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.international_faculty_card .specialization .badge:hover,
.international_faculty_card .achievements .badge:hover,
.corporate_faculty_card .specialization .badge:hover,
.corporate_faculty_card .achievements .badge:hover {
    background: #f2c94c;
    color: #2c2c2c;
    border-color: #f2c94c;
}

.student_testimonial {
    background: #ccccc6;
}

.student_testimonial_title {
    text-align: center;
}

.student_testimonial_card {
    height: 350px;
    width: 550px;
    overflow: hidden;
    border-radius: 12px;
}

.signature_events_title {
    text-align: center;
}

.student_testimonial_card img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    overflow: hidden;
}

.btn_bottom__slider {
    position: relative;
    text-align: center;
    padding-bottom: 60px;
}

/* Each slide card */
.signature_events_card {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.signature_events_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

/* Image inside slides */
.signature_events_card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.signature_events_des p {
    text-align: justify;
}
/* Footer design */
.signature_events_card .card-footer {
    background: linear-gradient(135deg, #f8f9fb, #ffffff);
    padding: 20px 18px;
    border-top: 1px solid #eee;
    border-radius: 0 0 15px 15px;
}

/* Event title */
.signature_events_card .card-footer p {
    font-size: 18px;
    font-weight: 700;
    color: #b71a34; /* You can replace with your theme color */
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Event list */
.signature_events_card .card-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.signature_events_card .card-footer li {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.signature_events_card .card-footer li::before {
    content: "–";
    position: absolute;
    left: 6px;
    top: 0;
    color: #b71a34; 
    font-weight: 700;
}
.signature_events_card .card-footer li.active {
    font-size: 12px;
    color: #555;
    font-weight: 600;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.signature_events_card .card-footer li.active::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 7px;
    width: 6px;
    height: 6px;
    background-color: #b71a34; 
    border-radius: 50%;
}
.signature_events_card .card-footer li:hover {
    color: #b71a34;
    transform: translateX(4px);
    transition: all 0.3s ease;
}
.international_trip_title {
    text-align: center;
}

.intravisit_image {
    height: 350px;
    width: 100%;
    overflow: hidden;
    padding: 3px;
}

.intravisit_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}
.cta_banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.cta_banner img{
    height:100%;
    object-fit: cover;
    overflow: hidden;
}
.cta_banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.4s ease;
}

.cta_banner:hover::after {
    background: rgba(0, 0, 0, 0.45);
}
/* --------------------------------------------------------
    Footer CSS
-------------------------------------------------------- */
.rcmb-footer {
    background-color: var(--bg-dark);
    color: var(--text-color-light);
    border-top: 4px solid var(--primary-color);
    font-family: var(--font-body);
}

.rcmb-footer a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.rcmb-footer a:hover {
    color: var(--primary-hover);
}

.footer_logo img {
    height: 150px;
    width: 180px;
    object-fit: contain;
    overflow: hidden;
}

.footer-heading {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--text-color-light);
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
    color: var(--text-color-dark);
}

.footer-copy {
    font-size: 14px;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 20.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 10px;
}

/* --------------------------------------------------------
    Responsive
-------------------------------------------------------- */
/* ===== Tablet (769px – 1024px) ===== */
@media (max-width: 1024px) and (min-width: 769px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ===== Mobile (up to 768px) ===== */
@media (max-width: 768px) {
    .main-header {
        background-color: rgb(255, 255, 255);
    }

    .main-section-heading {
        font-size: 30px;
    }

    .light-section-heading {
        font-size: 30px;
    }
    .light-section-heading p {
        font-size: 30px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .student_slider.swiper-button-next,
    .student_slider.swiper-button-prev {
        top: 65%;
    }

    .home-page-banner {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .home-page-banner .enquiry-form {
        position: static;
        transform: none;
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        backdrop-filter: blur(30px);
        background: rgba(255, 255, 255, 0.4);
        padding: 25px 30px;
        border-radius: 12px;
        width: 350px;
        z-index: 2;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .home-page-video {
        height: 40vh;
        margin-top: 90px;
    }
    .event-card img {
        height: 300px;
    }
    .logo-ticker-right img {
        width: 150px;
        height: 120px;
    }

    .logo-ticker-left img {
        width: 100px;
        height: 80px;
    }

    .placement_statistics_title {
        text-align: center;
    }

    .placement_statistics_title h1 {
        font-size: 28px;
    }
    .placement_statistics_images{
        width:100%;
    }
    .placement_statistics_images img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: none;
    }
    .placement.offer {
        background: rgba(255, 255, 255, 0.2);
        padding-left: 17px;
    }

    .placement.companies {
        background: rgba(255, 255, 255, 0.2);
        padding-left: 17px;
    }

    .placement.highestpackage {
        background: rgba(255, 255, 255, 0.2);
        padding-left: 17px;
    }
    .summary-details {
        margin-top: 20px;
        margin-right:0;
        display:flex;
        justify-content:center;
        align-items:center;
        flex-direction: column;
    }
    .btngroup {
        display: flex;
        justify-content: center;
        gap: 10px;
        align-items: center;
    }
    .experience_rcmb_des p {
        font-size: 18px;
    }

    .experience_rcmb_card_img {
        height: 250px;
    }

    .experience_rcmb_card_title {
        font-size: 20px;
    }

    .experience_rcmb_card_text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .infra_image {
        height: 200px;
        width: 100%;
        overflow: hidden;
        padding: 5px;
    }
    .infra_image_small{
        height: 100px;
        width: 100%;
        overflow: hidden;
    }
    .intra_at_collage {
        height: 150px;
        width: 100%;
        overflow: hidden;
        padding: 5px;
    }
    .programs_offered_des p {
        font-size: 18px;
    }

    .our_faculty_des p {
        font-size: 18px;
    }

    .signature_events_card img {
        height: 250px;
    }

    .intravisit_image {
        height: 200px;
        padding: 10px 10px 0px 10px;
    }

    .footer_logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-heading,
    .footer-links,
    .footer-des {
        text-align: center;
    }

    .map-responsive {
        overflow: hidden;
        padding-bottom: 40.25%;
        position: relative;
        height: 0;
    }
}

/* --------------------------------------------------------
    Modal CSS
-------------------------------------------------------- */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal.fade.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* --------------------------------------------------------
    Enquiry form Css
-------------------------------------------------------- */
.npf_wgts iframe{
    height: 450px !important;
}
.widget_container .widget_heading img{
    display: none !important;
}