@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/************ TABLE OF CONTENTS ***************

1. Reset
2. Global
3. Nav
4. Header
5. Section Title
6. Fact
7. About & Features
8. Sevices
9. Projects
10. Appointment
11. Testimonial Section
12. Footer

Applied
**********************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: "roboto", sans-serif;
    background-color: #F8F8FA;
    color: white;
    width: 100vw !important;
}

:root {
    --primary: #d31e26;
    --secondary: #e6353e;
    --light: #f8f8f8;
    --dark: #252525;
}

h1 {
    font-size: 45px;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
}

h3 {
    font-size: 30px !important;
    line-height: 1.3;
}

h4 {
    font-size: 26px !important;
    line-height: 1.3;
}

h5 {
    font-size: 22px !important;
    line-height: 1.3;
}

h6 {
    font-size: 16px !important;
    line-height: 1.3;
}

.desc {
    font-size: 16px !important;
    line-height: 1.5;
}

p {
    font-size: 16px !important;
    line-height: 1.5;
}

span {
    font-size: 16px !important;
    line-height: 1.5;
}

strong {
    font-weight: bold !important;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

a {
    text-decoration: none;
}

a:hover {
    color: #14B255;
}

.text-dark {
    color: #363636 !important;
}

.global-padding {
    padding: 100px;
}

.form-control:focus {
    outline: none;
    border: 2px solid #00508E;
    box-shadow: none;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.txt-primary {
    color: var(--primary);
}

.text-light-gray {
    color: #F8F8FA;
}

.text-blue {
    color: #00508E;
}


/*** Spinner ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/

.btn {
    font-weight: 500;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-body:hover {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
}

.btn-inline-body {
    color: #ffffff;
    background: var(--primary);
}

.btn-inline-body:hover {
    color: var(--light);
    background-color: var(--secondary);
}


/*** Navbar ***/

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown-item {
    padding: 6px 10px;
    color: #045992;
    border: 1px solid #045992;
    border-bottom-width: 0px;
    border-radius: 10px;
    background: white;
}

.dropdown-item:last-child {
    border-bottom-width: 1px;
}

.dropdown-item:hover {
    /* background: rgba(0, 176, 76, 25%); */
    color: #00B04C;
    border: 1px solid #00B04C;
    border-bottom-width: 0px;
}

.dropdown-item:last-child:hover {
    border-bottom-width: 1px;
}

.dropdown-item.active {
    background-color: var(--primary);
}

.nav-link {
    color: var(--dark)
}

.nav-link:hover {
    color: var(--primary)
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--light);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #00B04C;
}

.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
}

.nav-item {
    font-size: 21px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 5px 0;
    }
    /* .navbar .navbar-nav {
        border-top: 1px solid #eeeeee;
    } */
    .dropdown-menu {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: 0.5s;
        opacity: 0;
    }
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

@media (min-width: 1050px) and (max-width: 1250px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 15px !important;
    }
}

@media (min-width: 1300px) {
    .header-padding {
        padding-right: 5rem !important;
        padding-left: 6rem !important;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {
    .header-padding {
        padding-right: 3.9rem !important;
        padding-left: 4.8rem !important;
    }
}

@media (min-width: 992px) {
    .ps-first-sec {
        padding-left: 0 !important;
    }
}

@media (max-width: 992px) {
    .testi-container {
        max-width: 75% !important;
    }
}

.dropdown-menu {
    background: #690f0f00;
    border: none;
    top: 50px !important;
}

.dropdown-menu li {
    font-size: 12px;
    width: 110%;
}


/*** Header ***/

.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: 0.5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: 0.5s;
    opacity: 0.3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/

.section-title h6 {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 40px;
}


/*** Facts ***/

.fact-item {
    cursor: pointer;
    border-radius: 10px;
}

.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 120px;
    transition: 0.5s;
}

.fact-item:hover .fact-icon {
    background: var(--primary);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: 0.5;
}

.fact-item:hover .fact-icon i {
    color: #ffffff;
}


/*** About & Feature ***/

.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
    border-radius: 15px;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    z-index: -1;
}


/*** Service ***/

.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 15px;
}

.service-item .service-text {
    background: var(--light);
    transition: 0.5s;
    border-radius: 15px;
}

.service-item .service-text i {
    color: var(--primary);
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, 0.7);
}

.service-item * {
    transition: 0.5;
}

.service-item:hover * {
    color: #ffffff;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    transition: 0.5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/

.project .nav .nav-link {
    background: var(--light);
    color: var(--primary);
    transition: 0.5s;
    font-size: 24px;
}

.project .nav .nav-link.active {
    background: var(--primary);
    color: var(--light)
}

.project .nav .nav-link.active h3 {
    color: #ffffff !important;
}


/*** Team ***/

.team-items {
    margin: -0.75rem;
}

.team-item {
    padding: 0.75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #ffffff;
    transition: 0.5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #ffffff;
    background: var(--primary);
}


/*** Appointment ***/

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/

.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #ffffff;
    border-radius: 40px;
    transition: 0.5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: 0.4;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/* ========================== footer start =============================== */

.footer-title {
    font-size: 16px !important;
}

.list-unstyled li a {
    font-size: 12px !important;
}

.footer-content a {
    text-decoration: none;
}

.footer-head {
    font-size: 14px !important;
}

.footer .btn-outline-body {
    padding: 18px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.footer-main {
    /* width: 250px; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-main img {
    width: 80px;
}

.main-reverse-bg-gradient {
    background: linear-gradient(to right, #00375B, #00508E) !important;
}

.footer-accordion-body {
    background: linear-gradient(to right, #5283a9, #a0bdd3) !important;
}

.accordion-border {
    --bs-accordion-border-width: none !important;
}

.accordion-button::after {
    background-image: none !important;
}

.footer-accordion {
    display: none !important;
}

@media (max-width: 567px) {
    .footer-accordion {
        display: block !important;
    }
    .footer-normal {
        display: none !important;
    }
}

.aicte-img img {
    width: 40px !important;
}

.aicte-img {
    width: 55px;
    height: 55px;
    background-color: rgb(248 248 248 / 25%);
    padding: 10px;
    border-radius: 50%;
}

.hr {
    width: 180px;
    margin-top: 10px;
    margin: 10px 0;
}

.footer-padding {
    padding-left: 100px;
}


/* ========================== footer end =============================== */


/*  =============== main background color start ================= */

.main-bg-gradient {
    background: linear-gradient(to right, #00508E, #00375B);
}

.gradient-text {
    background: linear-gradient(to right, #00508E, #00375B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*  =============== main background color end================= */


/*  =============== button start ================= */

.btn-perent {
    margin-top: 70px;
}

.btn-gradient {
    background: linear-gradient(to right, #00508E, #00375B);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 600;
}

.btn-border-gradient {
    position: relative;
    color: #00508E;
    border: 2px solid transparent;
    background: none;
    overflow: hidden;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 600;
}

.btn-border-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 3px;
    background: linear-gradient(to right, #00508E, #00375B);
    -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-border-gradient:hover {
    color: white;
    background: linear-gradient(to right, #00508E, #00375B);
    border: 2px solid transparent;
}


/*  =============== button end================= */


/*  =============== image border start================= */

.image-border {
    border-right: 10px solid #00508E;
    box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.1);
}


/*  =============== image border end================= */


/*  =============== first section start================= */

.first-left-section {
    padding-right: 13rem;
    margin-top: 100px;
}


/*  =============== first section end================= */


/*  =================second section start================= */

.card-bg {
    background: rgba(4, 89, 146, 0.15);
}

.section-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.menu-card img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #045992;
    border-radius: 15px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}

.menu-card-content {
    min-height: 400px;
    background: rgba(4, 89, 146, 0.25);
    border: 3px solid #045992;
    border-left: none;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

.reverse-card {
    min-height: 400px;
    border: 3px solid #045992;
    border-right: none;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background: rgba(4, 89, 146, 0.25);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}


/*  =================second section end================= */


/*  =================Our Key Recruiters section start================= */

.container {
    margin-top: 50px;
}

.table> :not(caption)>*>* {
    padding: 15px !important;
}

.table {
    width: 100%;
    margin: auto;
}

.table td {
    border: 1px solid #045992;
    width: 150px;
}

.table img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.btn-primary {
    background-color: #003366;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}

.border-top-0 {
    border-top: none !important;
}

.border-bottom-0 {
    border-bottom: none !important;
}

.border-left-0 {
    border-left: none !important;
}

.border-right-0 {
    border-right: none !important;
}


/*  =================Our Key Recruiters section end================= */

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 400px;
    margin: auto;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    flex: 0 0 100%;
    padding: 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: 100%;
    height: auto;
}


/*  =================explore campus start================= */

.explore-campus {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 1000px;
    background-image: url(../img/assets/explore-campus.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.explore-campus::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Black overlay with 50% opacity */
}


/*  =================explore campus end================= */


/*  =================status start================= */

.card-circle {
    width: 350px;
    height: 350px;
}

.testimonial-container {
    background: #a3c3e7;
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
    text-align: center;
    position: relative;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.quote-icon {
    font-size: 30px;
    color: #003366;
}

.testimonial-text {
    color: #000;
    margin: 10px 0;
    padding: 10px 100px;
}

.author {
    color: #333;
    margin-top: 10px;
    margin-left: 100px;
}

.profile-container {
    display: flex;
    justify-content: center;
    position: absolute;
    top: -25px;
    left: 48%;
    transform: translateX(-50%);
}

.profile-container img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #00508E;
    margin: 0 5px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #003366;
    cursor: pointer;
}

.arrow-left {
    left: -40px;
}

.arrow-right {
    right: -40px;
}

.comma-left-icon {
    position: absolute;
    left: 35px;
    width: 45px;
    top: 35px;
}

.comma-right-icon {
    position: absolute;
    right: 35px;
    width: 45px;
    bottom: 35px;
}

.gallery-img-4 {
    width: 70px !important;
    height: 70px !important;
    position: absolute !important;
    top: -13px !important;
    right: -79px !important;
}


/*  =================status end================= */


/*  =================article & events start================= */

.article-card {
    width: 100%;
}

.article-card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.article-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.article-card-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    /* Black overlay with 50% opacity */
}

.article-card-content {
    position: relative;
    z-index: 100;
    color: white;
    padding: 20px;
}

.event-card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.event-card-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    /* Black overlay with 50% opacity */
}

.event-card-content {
    position: relative;
    z-index: 100;
    color: white;
    padding: 20px;
}

.news-card {
    margin-top: 25px;
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.news-image {
    max-width: 210px;
    max-height: 210px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    background: rgba(0, 80, 142, 15%);
    padding: 15px;
    flex: 1;
}

.news-title {
    color: #045992 !important;
    font-weight: bold;
    margin-bottom: 5px;
}

.news-author {
    color: #555;
    margin-bottom: 10px;
}

.news-author span {
    color: #008000;
    font-weight: bold;
}

.news-title,
.news-description {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Adjust the number to the desired number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000;
}

@media (max-width: 600px) {
    .news-title,
    .news-description {
        -webkit-line-clamp: 1;
        /* For small screens, limit to 1 line */
    }
}

.card {
    margin-top: 25px;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #ddd;
}

.image-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #ddd;
    border-radius: 50%;
}

.dot.active {
    background: #4a90e2;
}

.content {
    background: rgba(0, 80, 142, 15%);
    padding: 14px;
}

.date {
    font-weight: bold;
    color: #045992;
}

.title {
    font-weight: bold;
    color: #045992;
    margin-top: 5px;
}

.info {
    display: flex;
    align-items: center;
    color: #045992;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info i {
    margin-right: 5px;
    color: #0073e6;
}


/*  =================article & events end================= */


/*  =================about heading start================= */

.page-heading {
    /*background-image: url('../img/assets/about.jpg');*/
    /* Change to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 400px;
    /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.page-heading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.page-heading-content {
    position: relative;
    z-index: 10;
    text-align: left;
    margin-top: 250px;
}

.page-heading-title {
    font-weight: bold;
}


/*  =================about heading end================= */


/*  =================about us sidebar start================= */

.nav-pills .nav-link.active {
    background-color: rgba(0, 176, 76, 25%);
    color: #00B04C;
}

.nav-pills .nav-link {
    color: #6D6D6D;
}

.nav-header {
    padding: 12px 20px;
}

.nav-item .nav-link {
    padding: 12px 20px;
}


/*.nav-item {*/


/*    background: rgba(0, 80, 142, 15%);*/


/*}*/

.nav-item .about-sidebar:hover {
    background-color: rgba(0, 176, 76, 25%);
    color: #00B04C;
}

.custom-margin {
    margin-top: 0.25rem;
}


/*  =================about us sidebar end================= */


/*  =================latest news start================= */

.card-border {
    border-radius: 17px;
    border-top: 3px solid #00508E;
    border-bottom: 3px solid #00508E;
}

.btn-read-more {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: #00508E;
    color: white;
    border-top-left-radius: 0px;
    border-top-right-radius: 17px;
    border-bottom-left-radius: 17px;
    border-bottom-right-radius: 0px;
}


/*  =================latest news end================= */


/*  =================institute card start================= */

.institute-card {
    border-radius: 10px;
    background: rgba(0, 80, 142, 15%);
    padding: 15px;
}

.institute-text {
    color: #363636;
    list-style: 1.4;
    font-size: 20px;
    margin-bottom: 0;
}


/*  =================institute card end================= */


/*  =================message text start================= */

.message-text {
    font-size: 21px;
}


/*  =================message text end================= */


/*  ================= committees table start================= */

.custom-table {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.b-left-top-radius {
    border-top-left-radius: 8px;
}

.b-right-top-radius {
    border-top-right-radius: 8px;
}

.b-left-bottom-radius {
    border-bottom-left-radius: 8px;
}

.b-right-bottom-radius {
    border-bottom-right-radius: 8px;
}

.table-item {
    background-color: #e5eef5;
    padding: 10px 15px;
    text-align: center;
    font-weight: 500;
    color: #6D6D6D;
    min-width: 180px;
    flex: 1;
}

.active {
    color: #00B04C !important;
}

.custom-table-1 {
    width: 100%;
    border-collapse: collapse;
}

.custom-table-1 thead tr {
    background-color: #003366;
    color: white;
}

.custom-table-1 th,
.custom-table-1 td {
    padding: 12px 30px !important;
    text-align: left;
    border: 1px solid #dee2e600;
}

.custom-table-1 tbody tr:nth-child(even) {
    background-color: rgba(4, 89, 146, 15%);
}

.custom-table-1 tbody tr:nth-child(odd) {
    background-color: rgba(54, 54, 54, 0.06);
}

.custom-table-1 th {
    font-weight: bold;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.custom-table-1 {
    white-space: nowrap;
}


/*  ================= committees table end================= */


/*  =================undergraduate start================= */

.undergraduate-heading {
    background-image: url('../img/assets/undergraduate.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.undergraduate-heading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.undergraduate-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.undergraduate-heading-content {
    position: relative;
    z-index: 10;
    text-align: left;
    margin-top: 250px;
}

.undergraduate-heading-title {
    font-weight: bold;
}

.undergraduate-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.undergraduate-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 51, 102, 0.8);
    color: white;
    padding: 22px;
    text-align: left;
}

.recent-events-title {
    color: #00B04C;
}

.recent-events-border {
    border-radius: 17px;
    border-top: 3px solid #00B04C;
    border-bottom: 3px solid #00B04C;
}

.recent-events-content {
    padding: 21px;
    background: rgba(0, 176, 76, 15%);
}

.recent-events-gradient {
    background: linear-gradient(to right, #00B04C, #0D813D);
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.recent-events-image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 21px;
}

.undergraduate-card {
    perspective: 1000px;
    width: 100%;
    height: 300px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.undergraduate-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}


/* background: rgba(0, 0, 0, 0.5); 
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4); */

.card-front {
    z-index: 2;
}

.border-bottom-card {
    display: inline-block;
    opacity: 1 !important;
    width: 50%;
    text-align: center;
}

.card-back {
    background: rgba(0, 80, 142, 15%);
    color: #00508E;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    border-radius: 10px;
}

.undergraduate-card:hover .card-back {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

.card-content {
    max-height: 305px;
    padding: 20px;
    overflow-y: auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    width: 100%;
}

.card-content::-webkit-scrollbar {
    width: 10px;
}

.card-content::-webkit-scrollbar-thumb {
    background: #414141;
    border-radius: 10px;
}

.card-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-left: 1px solid #414141;
    border-radius: 10px;
}


/*  =================undergraduate end================= */


/*  =================campus sidebar start================= */

.nav-pills .nav-link.active {
    background-color: rgba(0, 176, 76, 25%);
    color: #00B04C;
}

.nav-pills .nav-link {
    color: #6D6D6D;
}

.nav-header {
    padding: 12px 20px;
}

.nav-item .nav-link {
    padding: 12px 20px;
}

.nav-item {
    background: rgba(0, 80, 142, 15%);
}

.nav-item .campus-sidebar:hover {
    background-color: rgba(0, 176, 76, 25%);
    color: #00B04C;
}

.campus-sidebar-active {
    background: linear-gradient(to right, rgba(0, 176, 76, 100%), rgba(13, 129, 61, 100%)) !important;
    color: #BAE6CE !important;
}

.custom-margin {
    margin-top: 0.25rem;
}

.campus-sidebar-arrow {
    transition: transform 0.3s ease-in-out;
    display: inline-block;
    /* Required for transform */
}


/* Default state - arrow points right */

.campus-sidebar[aria-expanded="false"] .campus-sidebar-arrow {
    transform: rotate(270deg);
}


/* Expanded state - arrow points downward */

.campus-sidebar[aria-expanded="true"] .campus-sidebar-arrow {
    transform: rotate(90deg);
}


/*  =================campus sidebar end================= */


/*  =================facilities (heading) start================= */

.facilities-heading {
    background-image: url('../img/assets/facilities.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.facilities-heading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.facilities-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.facilities-heading-content {
    position: relative;
    z-index: 10;
    text-align: left;
    margin-top: 250px;
}

.facilities-heading-title {
    font-weight: bold;
}


/*  =================facilities (heading) end================= */


/*  =================facilities (campus) start================= */

.nav-link-padding {
    padding: 12px 20px !important;
}

.submenu {
    width: 90%;
}

.custom-tab-content .tab-pane.active {
    background-color: transparent !important;
    color: #363636 !important;
    font-weight: 500;
}


/* Optional: Add transition effect for smooth switching */

.custom-tab-content .tab-pane {
    transition: opacity 0.3s ease-in-out;
}

.library-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.shashtra-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 3px 4px 4px 0px rgba(0, 0, 0, 0.1);
    max-width: 460px;
    border-radius: 15px;
}


/*  =================facilities (campus) end================= */


/*  ================= events-activities start ================= */

.event-tab-padding {
    padding: 12px 80px !important;
}

.photo-card {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 80, 120, 15%);
    padding: 20px;
    text-align: center;
    width: 100%;
    height: auto;
}

.photo-card img {
    width: 100%;
    border-radius: 10px;
}

.photo-card .badge {
    position: absolute;
    top: 1px;
    right: 0;
    background: linear-gradient(to right, rgba(0, 80, 142, 100%), rgba(0, 55, 91, 100%));
    padding: 10px 25px;
    font-size: 18px;
    color: #fff;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.event-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}


/*  ================= events-activities end ================= */


/*  ================= upcoming events start ================= */

.workshop-card {
    display: flex;
    background: rgba(4, 89, 146, 15%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border: 2px solid #00508E;
}

.workshop-card img {
    width: 268px;
    object-fit: cover;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    max-height: 176px;
    max-width: 230px;
}

.workshop-content {
    flex-grow: 1;
}

.event-date {
    font-size: 25px;
    font-weight: bold;
    color: #00508E;
}

.title {
    font-size: 18px;
    font-weight: bold;
}

.details {
    font-size: 16px;
    color: #045992;
}

.more-btn {
    position: absolute;
    right: 0;
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.more-btn:hover {
    background-color: #0056b3;
}

.radius-badge {
    background: rgba(4, 89, 146, 15%);
    padding: 15px;
    height: auto;
    min-height: 176px;
    min-width: 180px;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

@media (max-width: 768px) {
    .workshop-card {
        flex-direction: column;
    }
    .workshop-card img {
        width: 100%;
        height: 150px;
    }
}


/*  ================= upcoming events end ================= */


/*  ================= subpage upcoming events start ================= */

.sub-event-title p {
    color: #00508E;
    margin: 0;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Number of lines before ellipsis */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sub-event-subtitle {
    color: #00B04C;
    font-weight: bold;
}

.subpage-event-card {
    background-color: rgba(0, 80, 143, 15%);
    padding: 15px;
    border-radius: 10px;
}

.event-container {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.event-img {
    width: 100%;
    border-radius: 10px;
}


/*  ================= subpage upcoming events end ================= */


/* ===================== campus tour start ====================== */

.video-container {
    position: relative;
    max-width: 100%;
    border-radius: 20px;
    border: 3px solid #414141;
    height: 716px;
}

.video-title {
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 12px;
    border-radius: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-size: 26px;
    font-weight: medium;
    transition: opacity 0.3s ease-in-out;
}

iframe {
    width: 100%;
    height: auto;
    min-height: 710px;
    border-radius: 16px;
}


/* ===================== campus tour end ====================== */


/* ===================== campus news start ====================== */

.campus-news-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    max-height: 230px;
    min-height: 230px;
}

.campus-news-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:1350px) {
    .campus-news-container {
        max-height: 190px;
        min-height: 190px;
    }
}

@media(max-width:992px) {
    .campus-news-container {
        max-height: 250px;
        min-height: 250px;
    }
}


/* ===================== campus news end ====================== */


/* ===================== subpage campus news start ====================== */

.recent-new-title {
    margin-top: 57px;
}

.subpage-news-card {
    display: flex;
    align-items: center;
    border-left: 3px solid #00508E;
    border-right: 3px solid #00508E;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(0, 80, 142, 15%);
}

.subpage-news-card img {
    width: 180px;
    height: 105px;
    object-fit: cover;
    border-radius: 10px;
}

.subpage-news-content {
    padding: 10px 15px;
    flex: 1;
}

.subpage-news-content h5 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines before ellipsis */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.subpage-news-content .subpage-date {
    font-size: 14px;
    color: #00508E;
    margin-top: 5px;
}

.subpage-news-content .subpage-date i {
    margin-right: 5px;
}

.newsletter-box {
    background: rgba(0, 80, 142, 15%);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid #00508E;
    border-right: 3px solid #00508E;
}

.newsletter-box h2 {
    color: #004080;
    font-weight: bold;
}

.newsletter-box p {
    font-size: 16px;
    color: #000000;
}

.newsletter-box input {
    border: 1px solid #004080;
    border-radius: 5px;
    padding: 10px;
}

.subscribe-btn {
    background: linear-gradient(to right, #004080, #002b5e);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

.subscribe-btn:hover {
    background: linear-gradient(to right, #002b5e, #001a3a);
}


/* ===================== subpage campus news end ====================== */


/* ===================== study abroad exchange start ====================== */

.study-abroad {
    background-image: url('../img/assets/international.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.study-abroad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.overview-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.study-abroad-content {
    position: relative;
    z-index: 10;
    text-align: left;
    margin-top: 250px;
}

.study-abroad-title {
    font-weight: bold;
}

.study-abroad-exchange-des {
    font-size: 21px;
}


/* ===================== study abroad exchange end ====================== */


/*  ============================== more (alumni) start ============================= */

.alumni-heading {
    background-image: url('../img/assets/Alumni.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.alumni-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.alumni-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.alumni-content {
    position: relative;
    z-index: 10;
    text-align: left;
    margin-top: 250px;
}

.alumni-title {
    font-weight: bold;
}

.alumni-slider-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    background-color: rgba(0, 80, 142, 15%);
    border: none;
    width: 100%;
    height: 142px;
    border-right: 3px solid #00508E;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.alumni-image-container {
    position: relative;
    width: 325px;
    height: auto;
}

.alumni-image-container img {
    width: 325px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.alumni-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #004080;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.alumni-prev {
    left: -12px;
}

.alumni-next {
    right: -12px;
}

.alumni-card-body {
    flex: 1;
    height: 142px;
    overflow-y: auto;
    padding: 15px 18px 15px 25px;
}

.alumni-card-title {
    font-size: 18px;
    font-weight: bold;
    color: #004080;
    margin-bottom: 6px;
}

.alumni-card-text {
    font-size: 17px;
    color: #000000;
    line-height: 1.5;
}

.custom-form-container {
    margin: auto;
    background: #d1dce9;
    padding: 20px;
    border-radius: 10px;
}

.custom-input {
    background: white;
    color: #6D6D6D;
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 15px;
}

.custom-select-container {
    position: relative;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: white;
    color: #6D6D6D;
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 15px;
    width: 100%;
}

.custom-select-container::after {
    content: '\25BC';
    font-size: 14px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #00508E;
}

.custom-btn {
    background: linear-gradient(90deg, #003366, #0056b3);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
}

.custom-btn:hover {
    background: #002244;
}


/*  ============================== more (alumni) end ============================= */


/*  ============================== more (careers) start ============================= */

.career-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.career-card img {
    width: 100%;
    height: auto;
    display: block;
}

.career-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.career-card {
    perspective: 1000px;
    width: 100%;
    min-height: 170px;
}

.career-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.career-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.career-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 51, 102, 0.8);
    color: white;
    padding: 10px;
    text-align: left;
    z-index: 2;
}


/*  ============================== more (careers) end ============================= */


/*  ============================== more ( subpage careers) end ============================= */

.accordion-button {
    background: linear-gradient(to right, #00508E, #00375B);
    color: white;
    font-weight: bold;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(to right, #00508E, #00375B);
    color: white;
}

.accordion-body {
    background-color: rgba(0, 80, 142, 15%);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    content: "\f4fe" !important;
    font-family: "Bootstrap-icons" !important;
    position: absolute !important;
    right: 20px !important;
    font-size: 24px;
    margin-bottom: 18px;
    transform: none !important;
    transition: none !important;
    top: 10px
}

.accordion-button:not(.collapsed)::after {
    background-image: none !important;
    content: "−" !important;
    font-size: 24px !important;
    margin-top: -17px !important;
    margin-right: -4px;
    transform: none !important;
    transition: none !important;
    top: 22px
}

.accordion-item {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}


/*  ============================== more (subpage careers) end ============================= */


/* ================================== contact-us start =================================== */

.contact-heading {
    background-image: url('../img/assets/contact-us.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-content {
    position: relative;
    z-index: 10;
    text-align: left;
    margin-top: 250px;
}

.contact-title {
    font-weight: bold;
}

.info-box {
    border-radius: 12px;
    text-align: center;
    padding: 50px;
    transition: 0.3s;
    height: auto;
    min-height: 300px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
}

.bg-icon {
    background-color: rgba(0, 80, 142, 15%);
    padding: 31px 15px 25px;
    border-radius: 10px;
}

.blue-box {
    background-color: #004F9E;
    color: white;
}

.blue-box .icon-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.light-box {
    background-color: rgba(0, 80, 142, 0.15);
    color: #004F9E;
}

.light-box .icon-wrapper {
    background-color: #00508E;
    color: #c3d7e6
}

.info-box:hover {
    background-color: #004F9E;
    /* Dark Blue */
    color: white;
    transition: 0.3s;
}

.info-box:hover .icon-wrapper {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.info-box:hover .bg-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.a-tag a {
    color: #00508E;
    /* Default color */
    transition: color 0.3s ease-in-out;
}

.info-box:hover .a-tag a {
    color: white;
    /* Hover color */
}

.map-bg {
    background-color: rgba(0, 80, 142, 15%);
    padding: 15px;
    border-radius: 15px;
    width: 100%;
    max-width: 740px;
}

.map-bg img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


/* ================================== contact-us end =================================== */


/* ================================== faq start =================================== */

.faq-heading {
    background-image: url('../img/assets/faq.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.faq-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.faq-content {
    position: relative;
    z-index: 10;
    text-align: left;
    margin-top: 250px;
}

.faq-title {
    font-weight: bold;
}


/* ================================== faq end =================================== */


/* ================================== placement (overview) start =================================== */

.job-fair img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.job-fair-des {
    font-size: 21px;
    line-height: 1.2;
}


/* ================================== placement (overview) end =================================== */


/* ================================== placement (TOPs) start =================================== */

.tpos-heading {
    font-size: 26px;
    color: #363636;
}

.tpos-des {
    color: #363636;
    font-size: 16px;
}


/* ================================== placement (TOPs) end =================================== */


/* ================================ our placed students start ================================== */

.text-dull-dark {
    color: #363636;
}


/* ================================ our placed students end ================================== */


/* ================================ marquee start =============================== */

.marquee-container {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #00375B, #00508E);
    color: #fff;
    font-size: 18px;
    overflow: hidden;
}

.announcement-text {
    background: linear-gradient(to right, rgb(20, 178, 85), rgb(13, 129, 61));
    white-space: nowrap;
    margin-right: 10px;
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 21px;
}

.marquee {
    display: flex;
    overflow: hidden;
    flex: 1;
    position: relative;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 80px;
    padding: 0;
    margin: 0;
    min-width: 100%;
    animation: marquee 12s linear infinite;
}

.marquee-content li {
    white-space: nowrap;
    padding: 0 20px;
    font-size: 18px;
    animation: rotateText 12s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .marquee-container {
        font-size: 14px;
    }
    .announcement-text {
        font-size: 14px;
        padding: 8px 15px;
        margin-bottom: 5px;
    }
    .marquee-content {
        gap: 40px;
        animation-duration: 12s;
        margin-right: 50px;
        min-width: 500%;
    }
    .marquee-content li {
        white-space: nowrap;
        font-size: 14px;
        padding: 0 10px;
    }
    .footer-li {
        line-height: 2.3;
        font-size: 12px;
        border-bottom: 1px solid white;
    }
}


/* ================================ marquee end =============================== */


/* ================================ placement prodedure end =============================== */


/* ====================large screen css ================== */

@media(min-width: 1400px) {
    .timeline-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
    }
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        justify-content: flex-start;
    }
    .timeline-item:nth-child(odd) .icon {
        left: 42%;
    }
    .timeline-item:nth-child(even) .icon {
        left: 58%;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        text-align: end;
    }
    .timeline-item:nth-child(even) .timeline-content {
        text-align: start;
    }
    .timeline-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 5px;
        height: 100%;
        background-color: #00508E;
        transform: translateX(-50%);
    }
    .icon img {
        width: 105px;
        height: auto;
    }
    .timeline-heading {
        font-size: 26px;
    }
    .timeline-item::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 35px;
        height: 5px;
        background-color: #00508E;
    }
    .timeline-item:nth-child(odd)::after {
        left: calc(50% - 37px);
    }
    .timeline-item:nth-child(even)::after {
        left: calc(50% + 1px);
        ;
    }
    .timeline-item {
        display: flex;
        align-items: center;
        position: relative;
    }
    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    .timeline-item .timeline-content {
        width: 32%;
        padding: 20px;
        border-radius: 8px;
        color: black;
        position: relative;
    }
    .timeline-item .content img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    .timeline-item .content h3 {
        color: #007bff;
        margin-bottom: 10px;
    }
    .timeline-item .icon {
        width: 150px;
        height: 150px;
        background: #D4E0EB;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border: 1px dashed #00508E;
        position: absolute;
        left: 41%;
        transform: translateX(-50%);
        z-index: 2;
    }
}


/* ====================large screen css ================== */


/* ====================medium screen css ================== */

@media (min-width:992px) and (max-width: 1399px) {
    .margin-timeline {
        margin-top: 3rem;
    }
    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        text-align: center;
    }
    .icon {
        width: 150px;
        height: 150px;
        background: #D4E0EB;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border: 1px dashed #00508E;
        position: relative;
        z-index: 2;
    }
    .icon img {
        width: 105px;
        height: auto;
    }
    .timeline-line {
        width: 100%;
        height: 5px;
        background-color: #00508E;
        margin-top: 23px;
        position: relative;
    }
    .timeline-line::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 35px;
        background-color: #00508E;
        transform: translate(-50%, -100%);
    }
    .timeline-content {
        width: 250px;
        padding: 10px;
        border-radius: 8px;
    }
    .timeline-heading {
        font-size: 22px;
        font-weight: bold;
        color: #00508E;
        margin-bottom: 5px;
    }
    .job-fair-des {
        font-size: 16px;
        color: #333;
    }
    .timelime-height {
        height: 610px;
        padding-left: 310px;
    }
    .timeline-item:nth-child(even) {
        flex-direction: column-reverse;
        margin-top: 150px;
    }
    .timeline-item:nth-child(odd) .timeline-content {
        position: absolute;
        top: -100px;
    }
    .timeline-item:nth-child(even) .timeline-content {
        position: absolute;
        top: 275px;
    }
    .timeline-item:nth-child(even) .timeline-line::before {
        transform: translate(-50%, 0%);
    }
    .timeline-item:nth-child(even) .timeline-line {
        top: 75px;
    }
    .timeline-item:nth-child(even) .icon {
        top: 99px;
    }
    .timeline-item:nth-child(odd) .timeline-line::before {
        transform: translate(-50%, -100%);
    }
    .timeline-item:nth-child(odd) .timeline-line {
        top: 0;
    }
    .timeline-item:nth-child(odd) .icon {
        top: 0;
    }
}


/* ====================medium screen css ================== */


/* ====================small screen css ================== */

@media(max-width: 992px) {
    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        text-align: center;
    }
    .icon {
        width: 150px;
        height: 150px;
        background: #D4E0EB;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border: 1px dashed #00508E;
        position: relative;
        z-index: 2;
    }
    .icon img {
        width: 105px;
        height: auto;
    }
    .timeline-line {
        width: 50%;
        height: 5px;
        background-color: #00508E;
        margin-top: 23px;
        position: relative;
    }
    .timeline-line::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 35px;
        background-color: #00508E;
        transform: translate(-50%, -100%);
    }
    .timeline-content {
        max-width: 350px;
        padding: 10px;
        border-radius: 8px;
    }
    .timeline-heading {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 5px;
    }
    .job-fair-des {
        font-size: 16px;
        color: #333;
    }
    .timeline-item:nth-child(even) .timeline-line::before {
        transform: translate(-50%, 0%);
    }
    .timeline-item:nth-child(even) .timeline-line {
        top: -180px;
    }
    .timeline-item:nth-child(even) .icon {
        top: 25px;
    }
    .timeline-item:nth-child(odd) .timeline-line::before {
        transform: translate(-50%, -100%);
    }
    .timeline-item:nth-child(odd) .timeline-line {
        top: 0;
    }
    .timeline-item:nth-child(odd) .icon {
        top: 0;
    }
    .timeline-carousel {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    .timeline-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .timeline-item {
        min-width: 100%;
        box-sizing: border-box;
        text-align: center;
        margin-top: 10px;
    }
    .prev-btn,
    .next-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: #00508e;
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
    .dots-container {
        text-align: center;
        margin-top: 10px;
    }
    .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 5px;
        background-color: gray;
        border-radius: 50%;
        cursor: pointer;
    }
    .dot.timeline-active {
        background-color: #00508e;
    }
    .timeline-wrapper:nth-child(even) .timeline-item {
        display: flex !important;
        flex-direction: column-reverse !important;
    }
}


/* ====================small screen css ================== */


/* ================================ placement prodedure end =============================== */


/* ******************  left sidebar fixed button start ******************* */
.fixed-sidebar-buttons {
        position: fixed;
        left: -27px;
        top: 50%;
        z-index: 100000;
        display: flex;
        flex-direction: column;
    }
    
    .sidebar-btn {
        color: white;
        padding: 9px 8px;
        margin: 10px 5px 10px -13px;
        border: none;
        border-radius: 15px 15px 0 0;
        text-align: center;
        text-decoration: none;
        font-size: 18px;
        /* writing-mode: vertical-rl; */
        transform: rotate(90deg);
        transition: background 0.3s ease-in-out;
        position: relative;
    }
    
    .sidebar-overlay {
        position: fixed;
        top: 50%;
        left: 10px;
        width: 40px;
        height: 40px;
        background: #003b64;
        border-radius: 50%;
        transform: translateY(-50%) scale(1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease-in-out;
        z-index: 10001;
    }
    
    .sidebar-overlay.active-slide {
        width: 50%;
        height: 200vh;
        left: 0;
        border-radius: 0 50% 50% 0;
        transform: translateY(-50%) scale(1);
        opacity: 1;
        visibility: visible;
    }
    
    .modal-content {
        width: 100%;
        top: 65vh;
        transform: scale(0.9);
        opacity: 0;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    }
    /* Smoothly show modal */
    
    .sidebar-overlay.active-slide .modal-content {
        transform: scale(1);
        opacity: 1;
    }
    
    .active-slide .close-btn-sidebar {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .btn-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #000;
        position: absolute;
        right: 15px;
        top: 100vh;
        cursor: pointer;
    }
    
    .btn-close:hover {
        color: red;
    }
    /* Smooth button animation */
    
    .sidebar-btn {
        transition: all 0.3s ease-in-out;
    }
    
    .sidebar-btn::after {
        content: '\f054';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 17px;
        position: absolute;
        top: -62%;
        left: 45%;
        transform: rotate(270deg);
        /* right: -18px; */
        background: #003b64;
        color: #ffffff;
        padding: 7px 5px 9px 0;
        clip-path: polygon(100% 50%, 0 0, 0 100%);
    }
    
    .sidebar-btn.green {
        background: linear-gradient(to right, #00B04C, #0D813D);
    }
    
    .sidebar-btn.green::after {
        content: '\f054';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 17px;
        position: absolute;
        top: -62%;
        transform: rotate(270deg);
        /* right: -18px; */
        color: #ffffff;
        background: #0a8c41;
        padding: 7px 5px 9px 0;
        clip-path: polygon(100% 50%, 0 0, 0 100%);
    }
    
    .text-14 {
        font-size: 14px;
    }
    
    .modal.fade .modal-dialog {
        transform: translateY(-50px);
        opacity: 0;
        transition: all 0.3s ease-in-out;
        color: #000;
    }
    
    .modal.show .modal-dialog {
        transform: translateY(0);
        opacity: 1;
    }
    /* Background transition */
    
    .sidebar-btn.close-btn-sidebar {
        padding: 10px 10px 20px 10px;
        font-size: 16px;
        transition: background 0.5s ease-in-out;
        position: absolute;
        left: 20px;
        top: -3vh;
    }
    /* Initially hide the close button */
    
    .sidebar-btn.close-btn-sidebar::after {
        transform: rotate(90deg) !important;
        background: #003b64 !important;
        padding: 8px 5px 9px 0 !important;
        /* right: -42px; */
        left: 22px !important;
        transition: opacity 0.2s ease-in-out !important;
        top: -21px !important;
    }
    /* Jab transition complete ho tab close button aur icon dikhe */
    
    .sidebar-btn.close-btn-sidebar.background-done::after {
        opacity: 1;
    }
    
    @media(max-width: 768px) {}
    
    @media(max-width: 1050px) {
        .sidebar-btn.close-btn-sidebar::after {
            transform: rotate(90deg) !important;
            background: #003b64 !important;
            padding: 8px 5px 9px 0 !important;
            /* right: -42px; */
            left: 20px !important;
            transition: opacity 0.2s ease-in-out !important;
            top: -21px !important;
        }
        .sidebar-btn {
            color: white;
            padding-bottom: 20px !important;
        }
        .sidebar-btn::after {
            content: '\f054';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 17px;
            position: absolute;
            top: -57%;
            left: 59px;
            transform: rotate(270deg);
            /* right: -18px; */
            background: #003b64;
            color: #ffffff;
            padding: 7px 5px 9px 0;
            clip-path: polygon(100% 50%, 0 0, 0 100%);
        }
        .sidebar-btn.green::after {
            content: '\f054';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 17px;
            position: absolute;
            top: -57%;
            left: 43%;
            transform: rotate(270deg);
            /* right: -18px; */
            color: #ffffff;
            background: #0a8c41;
            padding: 7px 5px 9px 0;
            clip-path: polygon(100% 50%, 0 0, 0 100%);
        }
        .sidebar-btn.green {
            margin-top: -20px;
        }
    }
    /* Jab transition complete ho tab close button aur icon dikhe */
    
    .sidebar-btn.close-btn-sidebar.background-done::after {
        opacity: 1;
    }
    
    .close-btn-sidebar {
        padding: 12px 10px 12px 5px;
    }
    
    .form-select:focus {
        border: 2px solid #00508E !important;
        outline: 0 !important;
        box-shadow: none !important;
    }
    
    .notification-card {
        position: relative;
        border: 1px solid #d5d5d5;
        padding: 7px 10px;
        background: #f3f3f3;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
    }
    
    .noti-close-btn {
        position: absolute;
        top: 5px;
        right: 8px;
        cursor: pointer;
    }
    
    .notify-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
    }
    
    .small-text {
        font-size: 14px;
    }
    
    .bg-info {
        background-color: #17a2b8;
    }
    
    .bg-warning {
        background-color: #ffc107;
    }
    
    .btn-close:focus {
        box-shadow: none !important;
    }
    
    @media(max-width: 1440px) {
        .sidebar-btn {
            font-size: 16px;
        }
    }
    
    @media(max-width: 1050px) {
        .sidebar-btn {
            font-size: 14px;
        }
        .sidebar-btn.close-btn {
            font-size: 14px;
        }
    }

/* *************************** quick notificaiton start***************************** */


/* Colors */

:root {
    --clr-white-1: #ecf0f1;
    --clr-white-2: #d0d4d6;
    /* Darkened 5% */
    --clr-t300: #444;
    --clr-t500: #95a5a6;
    --clr-p300: #111;
    --clr-a300: #e74c3c;
    /* #FF6A6A; salmon */
    --gray: rgba(255, 255, 255, 0.2);
    --teal: cornflowerblue;
    --menu: #444753;
    --link-color: var(--teal);
    --primary-button: var(--teal);
    --secondary-button: #B2B9C5;
    --v-gutter: 0.75rem;
    --h-gutter: 2rem;
    --toggle-gutter: 2px;
    --toggle-width: 90px;
    --toggle-height: 26px;
    --container-shadow: 0.5rem 0.5rem 2rem 0 rgba(0, 0, 0, 0.2);
    --trans: cubic-bezier(0.3, 0, 0.7, 1);
}

.notification-container {
    cursor: default;
    position: absolute;
    z-index: 999;
    top: 0;
    right: calc(var(--h-gutter) * 5);
    width: 400px;
    font-weight: 300;
    background: white;
    border-radius: 0.5rem;
    box-sizing: border-box;
    box-shadow: var(--container-shadow);
    animation-name: dropPanel;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: 0.75s;
}

.notification-container::before {
    content: "";
    position: absolute;
    top: 1px;
    right: 0;
    width: 0;
    height: 0;
    transform: translate(-1rem, -100%);
    border-left: 0.75rem solid transparent;
    border-right: 0.75rem solid transparent;
    border-bottom: 0.75rem solid white;
}

.notification-container h3 {
    text-transform: uppercase;
    font-size: 75%;
    font-weight: 700;
    color: #84929f;
    padding: calc(var(--v-gutter) * 2) var(--h-gutter);
}

.notification-container i {
    color: #b5c4d2;
    font-size: 140%;
    position: absolute;
}

.notification-container i.right {
    right: var(--h-gutter);
}

.notification-container i.right:hover {
    opacity: 0.8;
    cursor: pointer;
}

.notification-container em {
    margin-right: var(--v-gutter);
    font-weight: 700;
    font-size: 115%;
    color: #b5c4d2;
    vertical-align: bottom;
    display: inline-block;
}

@keyframes dropPanel {
    0% {
        opacity: 0;
        transform: translateY(-100px) scaleY(0.5);
    }
}

.notification {
    box-sizing: border-box;
}

.notification.new {
    background: #f3f9fd;
}

input.checkbox[type='checkbox'] {
    display: none;
}

input.checkbox[type='checkbox']+label {
    display: block;
}

input.checkbox[type='checkbox']:not(:checked)+label {
    transition: height 0.25s;
    height: 0;
    padding: 0;
    font-size: 0;
    border: none;
    display: none;
}

input.checkbox[type='checkbox']:checked+label {
    height: calc(var(--v-gutter) * 3 + 1rem);
    padding: calc(var(--v-gutter) * 1.5) calc(var(--h-gutter) * 2) var(--v-gutter) var(--h-gutter);
    font-size: 75%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.border-light-gray {
    border: 1px solid #506f85;
    border-radius: 10px;
}

.modal-body {
    overflow-y: auto;
    scrollbar-width: none !important;
}

.modal-body::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    display: none;
}


/* *************************** quick notificaiton end***************************** */

@media (max-width: 1550px) {
    .modal-content {
        position: relative;
        top: 58vh !important;
    }
    .modal-header {
        padding-left: 60px !important;
    }
    .modal-body {
        width: 100%;
        padding: 0 60px !important;
        max-height: 70vh;
        scrollbar-width: none;
    }
}

@media (max-width: 1350px) {
    .modal-content {
        top: 55vh !important;
    }
    .modal-title {
        font-size: 26px !important;
    }
    .modal-body {
        width: 100%;
        padding: 0 60px !important;
        max-height: 70vh;
        scrollbar-width: none;
    }
}

@media (max-width: 1250px) {
    .modal-content {
        top: 60vh !important;
        overflow-y: auto;
    }
    .modal-title {
        font-size: 20px !important;
    }
    .modal-body {
        width: 100%;
        padding: 0 60px !important;
        max-height: 70vh;
        scrollbar-width: none !important;
    }
}

@media (max-width: 1050px) {
    .modal-content {
        top: 60vh !important;
    }
    .modal-title {
        font-size: 25px !important;
    }
    .modal-body {
        width: 100%;
        padding: 0 60px !important;
        max-height: 70vh;
        scrollbar-width: none !important;
    }
}

@media (max-width: 992px) {
    .navbar.sticky-top {
        z-index: 999999 !important;
    }
    .modal-content {
        top: 60vh !important;
    }
    .modal-title {
        font-size: 20px !important;
        margin-left: -50px;
    }
    .modal-header {
        padding-left: 115px !important;
    }
    .modal-body {
        width: 100%;
        padding: 0 120px 0 90px !important;
        margin-left: -50px;
        max-height: 70vh;
    }
    .sidebar-overlay.active-slide {
        width: 110%;
        z-index: 999999;
    }
    /* .rc-anchor-normal .rc-anchor-content{
        width: 200px;
    } */
}

@media (max-width: 768px) {
    .modal-content {
        top: 60vh !important;
    }
    .modal-title {
        font-size: 20px !important;
        margin-left: -40px;
    }
    .modal-header {
        padding-left: 90px !important;
    }
    .modal-body {
        width: 100%;
        padding: 0 105px 0 50px !important;
        max-height: 70vh;
        margin-left: 00px;
    }
    .sidebar-overlay.active-slide {
        width: 110%;
    }
}

@media (max-width: 567px) {
    .modal-content {
        top: 60vh !important;
    }
    .modal-title {
        font-size: 20px !important;
        margin-left: -40px;
    }
    .modal-body {
        width: 100%;
        padding: 0 71px 0 50px !important;
        max-height: 70vh;
        margin-left: 00px;
    }
    .sidebar-overlay.active-slide {
        width: 110%;
    }
}


/* ******************  left sidebar fixed button end ******************* */


/*  =================responsive start================= */


/* timeline responsive start*/


/* @media (max-width: 1660px) {
    .timeline-item:nth-child(odd) .icon {
        left: 41%;
    }
    .timeline-item:nth-child(even) .icon{
        left: 59%;
    }
}
@media (max-width: 1660px) {
    .timeline-item:nth-child(odd) .icon {
        left: 39%;
    }
    .timeline-item:nth-child(even) .icon{
        left: 61%;
    }
} */


/* timeline responsive end*/

@media (min-width:1400px) and (max-width: 1600px) {
    .timeline-content .timeline-heading {
        font-size: 21px;
    }
    .timeline-item .icon {
        width: 130px;
        height: 130px;
    }
    .timeline-item:nth-child(odd) .icon {
        left: 40%;
    }
    .timeline-item:nth-child(even) .icon {
        left: 60%;
    }
    .timeline-content .job-fair-des {
        font-size: 17px;
    }
    .icon img {
        width: 80px;
    }
}

@media(max-width: 1600px) {
    .card-circle {
        width: 250px;
        height: 250px;
    }
    .counter-section-des {
        font-size: 19px;
    }
}

@media(max-width: 1300px) {
    .news-image {
        max-width: 150px;
        max-height: 127px;
    }
    .card-circle {
        width: 200px;
        height: 200px;
    }
    .card-circle img {
        width: 35px;
        height: auto;
    }
    .card-circle h1 {
        font-size: 35px;
    }
    .counter-section-des {
        font-size: 14px !important;
    }
}


/* footer resposive */

@media (max-width: 1600px) {
    /* .footer-main {
        width: 100%;
        flex-direction: row;
        margin-bottom: 50px;
    } */
    /* .footer-hr {
        transform: rotate(90deg);
    }
    .footer-padding {
        padding-left: 50px;
    } */
}


/* footer responsive */

@media (max-width: 860px) {
    .footer-main {
        width: 100%;
        flex-direction: row;
        margin-bottom: 50px;
    }
    .footer-hr {
        transform: rotate(90deg);
    }
    .footer-padding {
        padding-left: 50px;
    }
}


/* max 768px */

@media (max-width: 768px) {
    .career-card-overlay {
        padding: 15px;
    }
    .career-card {
        height: 316px;
    }
    .study-abroad-exchange-des {
        font-size: 16px;
    }
    .workshop-card img {
        height: auto !important;
        max-width: 100%;
    }
    .radius-badge {
        width: 100%;
        min-height: 120px;
        border-top-right-radius: 0%;
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 50%;
    }
    .more-btn {
        top: 0;
        right: 0;
        width: 150px !important;
    }
}


/* min 768px */

@media (min-width: 768px) {
    .custom-margin {
        margin-top: -20px !important;
    }
}


/* max 992px */

@media (max-width: 992px) {
    .alumni-main-card {
        flex-direction: column;
    }
    .alumni-image-container {
        width: 100%;
    }
    .alumni-image-container img {
        width: 100%;
    }
    .alumni-slider-card {
        width: 95%;
        border-top-right-radius: 0;
        border-bottom-left-radius: 12px;
        border-bottom: 3px solid #00508E;
        border-right: none;
        height: auto;
    }
    .alumni-card-body {
        height: auto;
    }
    .recent-new-title {
        margin-top: 0px !important;
    }
}


/*  max 1050px */

@media (max-width: 1050px) {
    .study-abroad-exchange-des {
        font-size: 18px;
    }
    .event-card {
        height: 390px;
    }
    .article-card {
        height: 390px;
    }
    .author {
        margin-left: 0;
    }
    .testimonial-text {
        padding: 0 10px;
    }
    .comma-left-icon {
        width: 30px;
    }
    .comma-right-icon {
        width: 30px;
    }
    .menu-card {
        flex-direction: column !important;
        text-align: center;
    }
    .menu-card img {
        width: 100%;
        max-width: 600px;
        height: auto;
        z-index: 1;
    }
    .menu-card-content {
        margin-top: -30px;
        border-radius: 15px;
        border: 3px solid #045992;
        padding: 44px 20px 20px 20px !important;
    }
    .reverse-card {
        flex-direction: column !important;
        text-align: center;
        margin-top: -30px;
        border: 3px solid #045992;
        padding: 44px 20px 20px 20px !important;
        border-radius: 15px;
    }
}


/*  max 800px */

@media (max-width: 800px) {
    .menu-card img {
        width: 100%;
        max-width: 400px;
        height: auto;
        z-index: 1;
    }
    .footer-padding {
        padding-left: 10px;
    }
    .menu-card-content {
        margin-top: -30px;
        border-radius: 15px;
        border: 3px solid #045992;
        padding: 44px 20px 20px 20px !important;
    }
}


/*  max 567px */

@media (max-width: 567px) {
    .info-box {
        padding: 40px;
        min-height: 170px !important;
    }
    .message-text {
        font-size: 17px;
    }
    .menu-card {
        padding-top: 40px;
        padding-bottom: 10px;
    }
    .menu-card img {
        width: 100%;
        max-width: 300px;
        height: auto;
        z-index: 1;
    }
    .menu-card img {
        border-radius: 10px;
    }
    .reverse-card {
        border-radius: 10px;
    }
    .menu-card-content {
        margin-top: -30px;
        border-radius: 10px;
        border: 3px solid #045992;
        padding: 44px 20px 20px 20px !important;
    }
}

@media (min-width: 1400px) and (max-width: 1470px) {
    .menu-card img {
        width: 500px;
    }
}

@media (min-width: 1310px) and (max-width: 1669px) {
    .subpage-news-card img {
        width: 150px;
        height: 120px;
    }
    .subpage-news-content h5 {
        font-size: 16px;
    }
    .testi-container {
        max-width: 81% !important;
    }
}


/*   1400px to 1920 */

@media (min-width: 1400px) and (max-width: 1920px) {
    .global-padding {
        padding: 100px;
    }
    .first-left-section {
        padding-right: 50px;
    }
    .btn-gradient {
        padding: 11px 30px;
        font-size: 18px;
    }
    .btn-border-gradient {
        padding: 11px 30px;
        font-size: 18px;
    }
}

@media (min-width:1200px) {
    .timelime-height {
        padding-left: 200px;
    }
}

@media(max-width: 1050px) {
    .menu-card-content {
        min-height: 280px;
    }
    .reverse-card {
        min-height: 280px;
    }
}

@media(max-width: 992px) {
    .counter-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .counter-buttons button {
        width: 50%;
    }
    .dropdown-menu li {
        font-size: 12px;
        width: 100%;
    }
    .min-vh-100 {
        min-height: 80vh !important;
    }
}


/*  1050px to 1400px */

@media (min-width: 1050px) and (max-width: 1400px) {
    .testi-container {
        max-width: 81% !important;
    }
    .dropdown-menu li {
        font-size: 12px;
        width: 110%;
    }
    .list-unstyled {
        font-size: 12px;
    }
    .timeline-heading {
        font-size: 21px;
    }
    .recent-new-title {
        margin-top: 43px;
    }
    .subpage-news-card img {
        width: 136px;
    }
    .subpage-news-content h5 {
        margin: 0;
        font-size: 15px;
        font-weight: bold;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        /* Number of lines before ellipsis */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .subpage-news-content h5 {
        font-size: 15px;
    }
    .video-container {
        height: 468px;
    }
    iframe {
        min-height: 462px;
    }
    .reverse-card {
        min-height: 300px;
        padding: 20px !important;
    }
    .menu-card img {
        width: 400px;
        height: 400px;
    }
    .menu-card-content {
        min-height: 300px;
        padding: 20px !important;
    }
    .global-padding {
        padding: 80px;
    }
    .section-title h1 {
        font-size: 38px;
    }
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 24px;
    }
    .desc {
        font-size: 16px !important;
    }
    .nav-link {
        font-size: 14px;
    }
    .first-left-section {
        padding-right: 0;
        margin-top: 30px;
    }
    .btn-gradient {
        padding: 8px 20px;
        font-size: 15px;
    }
    .btn-border-gradient {
        padding: 8px 20px;
        font-size: 15px;
    }
}


/*  992px to 1050px */

@media (min-width: 992px) and (max-width: 1050px) {
    .news-image img {
        width: 170px;
    }
    .subpage-news-card img {
        width: 166px;
        height: 124px;
    }
    .subpage-news-content h5 {
        font-size: 18px;
    }
    .video-container {
        height: 359px;
    }
    iframe {
        min-height: 353px;
    }
    .btn-read-more {
        width: 50% !important;
    }
    .global-padding {
        padding: 70px;
    }
    .section-title h1 {
        font-size: 40px;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 36px;
    }
    .desc {
        font-size: 16px;
    }
    .first-left-section {
        padding-right: 0;
        margin-top: 30px;
    }
    .btn-gradient {
        padding: 8px 20px;
        font-size: 18px;
    }
    .btn-border-gradient {
        padding: 8px 20px;
        font-size: 18px;
    }
}


/*  768px to 991px */

@media (min-width: 768px) and (max-width: 991px) {
    .career-card-overlay {
        padding: 15px;
    }
    .career-card {
        height: 280px;
    }
    .video-title {
        font-size: 18px;
    }
    .video-container {
        height: 183px;
    }
    iframe {
        min-height: 177px;
    }
    .btn-read-more {
        width: 50% !important;
        max-width: 150px !important;
    }
    .global-padding {
        padding: 60px;
    }
    .section-title h1 {
        font-size: 34px;
    }
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 30px;
    }
    .desc {
        font-size: 16px !important;
    }
    .first-left-section {
        padding-right: 0;
        margin-top: 30px;
    }
    .btn-gradient {
        padding: 8px 20px;
        font-size: 18px;
    }
    .btn-border-gradient {
        padding: 8px 20px;
        font-size: 18px;
    }
    .btn-perent {
        margin-top: 25px;
    }
}


/*  576px to 767px */

@media (min-width: 576px) and (max-width: 767px) {
    .mar-bottom {
        margin-bottom: 20px
    }
    .menu-card-content {
        min-height: 250px;
    }
    .reverse-card {
        min-height: 250px;
    }
    .video-container {
        height: 373px;
    }
    iframe {
        min-height: 367px;
    }
    .btn-read-more {
        width: 50% !important;
        max-width: 150px !important;
    }
    .profile-container {
        left: 42%;
    }
    .global-padding {
        padding: 40px;
    }
    .section-title h1 {
        font-size: 34px;
    }
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 30px;
    }
    .desc {
        font-size: 16px !important;
    }
    .first-left-section {
        padding-right: 0;
        margin-top: 50px;
    }
    .btn-gradient {
        padding: 8px 20px;
        font-size: 18px;
    }
    .btn-border-gradient {
        padding: 8px 20px;
        font-size: 18px;
    }
    .btn-perent {
        margin-top: 25px;
    }
}


/*  480px to 575px */

@media (min-width: 480px) and (max-width: 575px) {
    .menu-card-content {
        min-height: 100px;
    }
    .job-fair-des {
        font-size: 17px;
    }
    .event-card {
        height: 275px;
    }
    .article-card {
        height: 275px;
    }
    .news-image img {
        width: 150px;
    }
    .news-content {
        padding: 10px;
    }
    .subpage-news-card img {
        width: 150px;
        height: 120px;
    }
    .subpage-news-content h5 {
        font-size: 16px;
    }
    .video-title {
        font-size: 20px;
    }
    .video-container {
        height: 242px;
    }
    iframe {
        min-height: 236px;
    }
    .btn-read-more {
        width: 50% !important;
        max-width: 150px !important;
    }
    .profile-container {
        left: 40%;
    }
    .global-padding {
        padding: 30px;
    }
    .section-title h1 {
        font-size: 30px;
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 23px;
    }
    .desc {
        font-size: 16px !important;
    }
    .first-left-section {
        padding-right: 0;
        margin-top: 50px;
        margin-bottom: 30px;
    }
    .btn-gradient {
        padding: 8px 20px;
        font-size: 16px;
    }
    .mt-small {
        margin-top: 60px;
    }
    .btn-border-gradient {
        padding: 8px 20px;
        font-size: 16px;
    }
    .btn-perent {
        margin-top: 20px;
    }
}


/*  320px to 479px */

@media (min-width: 320px) and (max-width: 479px) {
    .menu-card-content {
        min-height: 250px;
    }
    .reverse-card {
        min-height: 250px;
    }
    .logo-small-mt {
        margin-top: 40px;
    }
    .upcoming-events-text {
        font-size: 25px;
    }
    .menu-card-content .desc {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        /* Show max 4 lines */
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5;
        /* Adjust based on your font size */
        max-height: calc(1.5em * 4);
        /* Ensure it matches 4 lines */
    }
    .reverse-card .desc {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5;
        max-height: calc(1.5em * 4);
    }
    .footer-head {
        font-size: 13px !important;
    }
    .hr {
        display: none;
    }
    .footer-main {
        margin-bottom: 25px;
    }
    .job-fair-des {
        font-size: 17px;
    }
    .event-card {
        height: 275px;
    }
    .article-card {
        height: 275px;
    }
    .subpage-news-card img {
        width: 150px;
        height: 120px;
    }
    .subpage-news-content h5 {
        font-size: 16px;
    }
    .video-title {
        font-size: 18px;
    }
    .video-container {
        height: 207px;
    }
    iframe {
        min-height: 202px;
    }
    .latest-news-title {
        font-size: 29px !important;
    }
    .btn-read-more {
        width: 50% !important;
        max-width: 120px !important;
    }
    .news-image img {
        width: 130px;
    }
    .profile-container {
        left: 38%;
    }
    .card-circle {
        width: 150px;
        height: 150px;
    }
    .mt-small {
        padding: 10px;
    }
    .global-padding {
        padding: 20px;
        margin-bottom: 20px;
    }
    .section-title h1 {
        font-size: 30px;
    }
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 23px;
    }
    .desc {
        font-size: 16px !important;
    }
    .mt-small {
        margin-top: 60px;
    }
    .first-left-section {
        padding-right: 24px;
        margin-top: 50px;
        margin-bottom: 40px;
    }
    .btn-gradient {
        padding: 8px 20px;
        font-size: 15px;
    }
    .sm-paddding-0 {
        padding-bottom: 0 !important;
    }
    .btn-border-gradient {
        padding: 8px 20px;
        font-size: 15px;
    }
    .btn-perent {
        margin-top: 20px;
    }
}

.pointer {
    cursor: pointer;
}

.one-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*  =================responsive end================= */

.rich-content {
    font-family: 'roboto', sans-serif !important;
    color: #333 !important;
    line-height: 1.5 !important;
    word-wrap: break-word !important;
    background-color: transparent !important;
}


/* Headings */

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
}

.rich-content h1 {
    font-size: 45px !important;
}

.rich-content h2 {
    font-size: 32px !important;
}

.rich-content h3 {
    font-size: 30px !important;
}

.rich-content h4 {
    font-size: 26px !important;
}

.rich-content h5 {
    font-size: 22px !important;
}

.rich-content h6 {
    font-size: 16px !important;
}

.rich-content h1 span {
    font-size: 45px !important;
}

.rich-content h2 span {
    font-size: 32px !important;
}

.rich-content h3 span {
    font-size: 30px !important;
}

.rich-content h4 span {
    font-size: 26px !important;
}

.rich-content h5 span {
    font-size: 22px !important;
}

.rich-content h6 span {
    font-size: 16px !important;
}


/* Paragraph */

.rich-content p {
    font-size: 14px !important;
    text-align: justify !important;
}

.rich-content p span {
    font-size: 14px !important;
}

.rich-content h3 span strong {
    font-size: 30px !important;
}


/* Lists */

.rich-content ul,
.rich-content ol {
    padding-left: 1.5rem !important;
    margin: 0.5rem 0 !important;
}

.rich-content ul li,
.rich-content ol li {
    margin-bottom: 0.3rem !important;
    font-size: 14px !important;
}

.rich-content ul li span,
.rich-content ol li span {
    font-size: 14px !important;
}


/* Bold & Italic */

.rich-content strong {
    font-weight: bold !important;
}


/* Links */

.rich-content a {
    color: #007bff !important;
    text-decoration: underline !important;
}

.rich-content a:hover {
    text-decoration: none !important;
}


/* Images */

.gov-body img {
    max-height: 100% !important;
}

.rich-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 4px !important;
}


/* Blockquotes */

.rich-content blockquote {
    border-left: 4px solid #ccc !important;
    padding-left: 1rem !important;
    margin: 1rem 0 !important;
    color: #555 !important;
    font-style: italic !important;
    background: transparent !important;
}


/* Code block */

.rich-content pre,
.rich-content code {
    font-family: 'roboto', sans-serif !important;
    background-color: transparent !important;
    padding: 0.5rem !important;
    border-radius: 4px !important;
    overflow-x: auto !important;
}

.member-name {
    font-size: 20px !important;
}

@media (max-width: 1650px) {
    .rich-content img {
        max-height: 500px !important;
    }
    .gov-body img {
        max-height: 100% !important;
    }
}


/* Responsive Text */

.form-label {
    font-size: 14px !important;
}

.form-check-label {
    font-size: 14px !important;
}

@media (max-width: 1400px) {
    .rich-content img {
        max-height: 515px;
    }
    h1 {
        font-size: 34px !important;
    }
    h2 {
        font-size: 24px !important;
    }
    h3 {
        font-size: 21px !important;
    }
    h4,
    h5,
    h6 {
        font-size: 17px !important;
    }
    .rich-content h1 {
        font-size: 34px !important;
    }
    .rich-content h2 {
        font-size: 24px !important;
    }
    .rich-content h3 {
        font-size: 21px !important;
    }
    .rich-content h4,
    .rich-content h5,
    .rich-content h6 {
        font-size: 17px !important;
    }
    .rich-content h1 span {
        font-size: 34px !important;
    }
    .rich-content h2 span {
        font-size: 24px !important;
    }
    .rich-content h3 span {
        font-size: 21px !important;
    }
    .rich-content h4,
    .rich-content h5,
    .rich-content h6 span {
        font-size: 17px !important;
    }
    .rich-content p {
        font-size: 14px !important;
        text-align: justify !important;
    }
    .rich-content p span {
        font-size: 14px !important;
    }
    .rich-content ul li span,
    .rich-content ol li span {
        font-size: 14px !important;
    }
    .rich-content h3 span strong {
        font-size: 21px !important;
    }
    .member-info {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .rich-content h1 {
        font-size: 30px !important;
    }
    .rich-content h2 {
        font-size: 23px !important;
    }
    .rich-content h3 {
        font-size: 21px !important;
    }
    .rich-content h4,
    .rich-content h5,
    .rich-content h6 {
        font-size: 18px !important;
    }
    .rich-content h1 span {
        font-size: 30px !important;
    }
    .rich-content h2 span {
        font-size: 23px !important;
    }
    .rich-content h3 span {
        font-size: 21px !important;
    }
    .rich-content h4,
    .rich-content h5,
    .rich-content h6 span {
        font-size: 18px !important;
    }
    .rich-content p {
        font-size: 14px !important;
        text-align: justify !important;
    }
    .rich-content p span {
        font-size: 14px !important;
    }
    .rich-content ul li span,
    .rich-content ol li span {
        font-size: 14px !important;
    }
    .rich-content h3 span strong {
        font-size: 21px !important;
    }
    .member-info {
        font-size: 14px !important;
    }
}

.pro-image {
    height: auto;
    min-height: 530px;
    max-height: 550px;
}

.custom-pro-card {
    background: #d3dfea;
    padding: 18px 18px 10px 18px;
    border: 2px solid #004f8d;
    border-radius: 10px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.slide img {
    width: 100%;
    height: auto;
    min-height: 530px;
    max-height: 550px;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent !important;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.text-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.student-img {
    width: 250px;
    height: 250px;
}

@media(max-width: 1350px) {
    .slide img {
        min-height: 470px;
        max-height: 470px;
    }
}

@media(max-width: 1100px) {
    .student-img {
        width: 180px !important;
        height: 180px !important;
    }
}

@media(max-width: 992px) {
    .slide img {
        min-height: 330px;
        max-height: 330px;
    }
    .ps-small-dev {
        padding-left: 12px;
    }
}

@media(max-width: 768px) {
    .student-img {
        width: 100% !important;
        height: 200px !important;
    }
    .workshop-card {
        padding-right: 0 !important;
    }
}

.two-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
    