@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --primary-color: #007FFF;
    --secondary-color: #000000;
    --bg-color: #EEF1F8;
    --red-color: #ff0000;
    --bg-color: #EEF1F8;
    --yellow-color: #FCBF2E;
    --dark-color: #200055;
    --white-color: #FFFFFF;
    --white-text: #ffffff;
    --text-color: #4D4D4D;
    --text-color-2: #7B7B7B;
    --hover-bg: #ececec;
    --my-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1)
}

/* Dark mode overrides */
body.dark-mode {
    --primary-color: #1E90FF;
    --secondary-color: #FFFFFF;
    --bg-color: #121212;
    --red-color: #FF6B6B;
    --yellow-color: #FFD93D;
    --dark-color: #F0F0F0;
    --white-color: #1E1E1E;
    --text-color: #ffffff;
    --text-color-2: #AAAAAA;
    --hover-bg: #666666;
    --my-shadow: 0 2px 2px 0px rgba(255, 255, 255, 0.05);
}

*.dark-mode,
body.dark-mode {
    color: #FFFFFF !important;
    background-color: var(--white-color);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;

}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.primary-color {
    color: var(--primary-color) !important;
}

.section-padding {
    padding: 40px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 54px;
}

.section-title span {
    color: var(--white-text);
    padding: 2px 10px;
}

.section-desc {
    font-size: 24px;
    margin-bottom: 36px;
}

.container-fluid {
    width: 100%;
    max-width: 1528px;
}

.section-padding {
    padding: 70px 0;
}

.bg-color {
    background-color: var(--bg-color);
}

.btn1 {
    display: inline-block;
    padding: 10px 40px;
    min-width: 275px;
    text-align: center;
    background: var(--secondary-color);
    color: var(--white-color);
    font-weight: 500;
    font-size: 24px;
}

.slick-prev,
.slick-next {
    color: #fff;
    border: none;
    background: #5B5B5B;
    font-weight: 700;
}

.slick-prev:hover,
.slick-next:hover {
    background-color: #007FFF;
    outline: none;
    color: #fff;
}

.slick-prev:focus,
.slick-next:focus {
    background-color: #007FFF;
    color: #fff;
}

.slick-prev {
    left: -55px;
}

.slick-next {
    right: -55px;
}

.slick-next:before {
    content: '\EA6C';
    font-family: 'remixicon';
}

.slick-prev:before {
    content: '\EA60';
    font-family: 'remixicon';
}





/* ================================ 
Header Section 
=================================== */
header {
    position: fixed;
    top: 15px;
    width: 100%;
    left: 0;
    right: 0;
    color: var(--white-text);
}

header h6 {
    font-size: 16px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

header .upper-nav li a {
    line-height: 1;
}

header .upper-nav li a,
.lower-nav li {
    font-size: 16px;
    font-weight: 500;
    padding: 0 14px;
    border-right: 2px solid var(--white-text);
    display: inline-block;

}

header .upper-nav li:last-child a,
.lower-nav li:last-child {
    border-right: none;
    padding: 0;
    padding-left: 14px;
}

header .lower-nav {
    margin-top: 18px;
}

header .lower-nav li .dark,
header .lower-nav li .light {
    width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 3px;
    background: #000;
    cursor: pointer;
    border: 2px solid #000;
}

header .lower-nav li .light {
    border-color: #007FFF;
}

header .lower-nav li .dark:active,
header .lower-nav li .light:active,
header .lower-nav li .dark:focus,
header .lower-nav li .light:focus {
    border-color: #007FFF;
}

header .lower-nav li select {
    width: 90px;
    height: 30px;
    background-color: transparent;
    color: #ffffff;
    border-radius: 5px;
    padding: 7px 10px;
    border: 1px solid #ffffff;
    font-size: 14px;
    font-weight: 500;
}

header .default-font {
    padding: 0 4px;
    background: var(--white-color);
    border-radius: 2px;
    color: #121212;
    margin: 0 8px;
}

/* ================================ 
Navabr Section 
=================================== */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 110px;
    z-index: 5;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 98;

}

.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 12px 0;
    box-shadow: 0 -2px 20px 5px #00000028;
    animation: fadeInDown 0.5s ease-in-out;
    background: var(--primary-color);
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

@media all and (min-width:992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
        min-width: 22rem
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        min-width: 14rem;
        border-radius: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgb(0 0 0 / .1)
    }

    .navbar .nav-item:hover .nav-link {
        color: var(--yellow-color)
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--primary-color);
        background-color: #fff0
    }

    .dropdown-toggle::after {
        margin-left: 8px
    }

    .navbar .nav-item .paint-oil {
        min-width: 16rem
    }

    .navbar .nav-item .paint-oil-2 {
        min-width: 18rem
    }

    .navbar .nav-item .big-menu {
        display: flex;
        flex-wrap: wrap;
        min-width: 24rem;
        padding: 0.75rem;
        justify-content: space-between;
        left: -4rem;
    }

    .navbar .nav-item .big-menu li {
        flex: 0 0 49%;
        display: flex;
        position: relative;
        justify-content: space-between;
    }

    .navbar .nav-item .big-menu .dropdown-item {
        white-space: normal;
        padding-left: 18px;
        padding-right: 0;
        font-size: 14px;


    }
}

.navbar .nav-link {
    font-size: 26px;
    font-weight: 700;
    margin: 0 24px;
    color: var(--white-text);
    transition: all 0.3s ease;
}

.navbar .nav-item .big-menu li a {
    position: relative;
}

.navbar .nav-item .big-menu li a::before {
    content: "\F3C1";
    font-family: 'remixicon';
    font-size: 8px;
    margin-right: 8px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: absolute;
    top: 8px;
    left: 0;
}

/* ================================ 
Banner Section 
=================================== */
.banner {
    width: 100%;
    height: 94vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    overflow-x: hidden !important;
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    z-index: 4;
    pointer-events: none;
}

.banner,
.banner-img {
    width: 100%;
    height: 94vh;
    object-fit: cover;
}

.banner .slick-dots {
    bottom: 15px;
}

.banner .banner-title h1 {
    font-size: 90px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-weight: 900;
    color: var(--white-text);
    letter-spacing: 1%;
}

.banner .slick-dotted.slick-slider {
    margin-bottom: 0;
}

main {
    margin-top: 100vh;
    background: var(--white-color);
    position: relative;
    z-index: 99;
}

/* ================================ 
Maquee Section 
=================================== */
.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 24px;
    overflow: hidden
}

.track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 20s linear infinite
}

.main-marquee .content .sub-content .tag-line {
    color: var(--white-color);
    font-family: var(--my-font);
    /* text-transform: uppercase; */
    line-height: 1;
    display: inline-block;
    margin: 0 14px;
}

.main-marquee .content .sub-content img {
    height: 50px;
    margin: 0 1.5rem;
    display: inline-block
}

/*.main-marquee .content .sub-content .tag-line:nth-of-type(even) {*/
/*    background: linear-gradient(90deg, #FF8882, #E536CA);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: #fff0*/
/*}*/

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ================================ 
Explore Button Section 
=================================== */
.explore {
    height: 6vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-x: hidden !important;
}

.explore h2 {
    font-size: 24px;
}

/* ================================ 
About Section 
=================================== */
.about h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

.about p {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 1%;
}

/* Counter Panel */
.counterMain {
    background: url(../images/counter-bg.svg) center no-repeat;
    background-size: cover;
    padding-top: 4rem;
    position: relative;
}

.counterPanel {
    display: flex;
    justify-content: space-between;
}

.counterPanel .itemList {
    background-color: var(--primary-color);
    padding: 1.5rem 1rem;
    text-align: center;
    flex: 1;
    margin: 0.5rem;
    color: #fff;
}

.counterPanel .itemList .counting {
    margin-bottom: 0;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0;
    font-weight: 700;
}

.counterPanel .itemList p {
    margin-bottom: 0;
    text-transform: uppercase;
}



/* ================================ 
News Section 
=================================== */
.news .content {
    position: absolute;
    bottom: 20px;
    left: 25px;
    right: 25px;
    z-index: 5;
    color: var(--white-text);
}

.int-cont {
    min-height: 693px;
}

.news .sep-title {
    color: #121212;
}

.news .overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    z-index: 4;
    pointer-events: none;
}

.news .overlay .news-1-img {
    min-height: 694px;
}

.news .inner-contain h3 {
    font-size: 30px;
    letter-spacing: 1%;
    line-height: 38px;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news .inner-contain span {
    font-size: 20px;
    letter-spacing: 1%;
    color: #ADB3D8;
}

.news .img-contain img {
    width: 485px;
    height: 330px;
    object-fit: cover;
    min-width: 480px;
}

/* ================================ 
Campus Section 
=================================== */
.campus .inner-contain {
    padding: 20px;
    border: 1px solid #C7CEE6;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.campus .inner-contain:hover {
    border-color: #007FFF;
    box-shadow: 0 3px 0 0 rgb(0, 127, 255);
}

.campus .inner-contain h3 {
    font-size: 30px;
    margin-top: 15px;
    font-weight: 600;
    line-height: 40px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.campus .inner-contain p {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 1%;
    margin-top: 15px;
    margin-bottom: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.campus .inner-contain a {
    font-size: 20px;
}


/* ================================ 
Addmission Section 
=================================== */
.admission .inner-contain {
    padding: 60px 75px;
    position: relative;
    background-color: var(--white-color);
}

.admission .inner-contain h3 {
    width: 80%;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 1%;
    text-align: center;
    margin-bottom: 15px;
}

.admission .ad-img {
    margin-top: 1rem;
}

.admission .inner-contain p {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 1%;
    text-align: center;
    min-height: 124px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.admission .btn1 {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    z-index: 20;
}

/* ================================ 
Research Section 
=================================== */
.research h3 {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 1%;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.research .re-desc {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 1%;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.research .click {
    font-size: 20px;
}

/* ================================ 
Footer Section 
=================================== */
footer {
    background-color: #525252;
    color: var(--white-text);
}

footer h3 {
    font-size: 20px;
    line-height: 28px;
}

footer h5 {
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

footer h5::before {
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    background-color: var(--white-text);
    margin-bottom: 10px;
    border-radius: 50vw;
    position: absolute;
    bottom: -20px;
}

footer h5::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--white-text);
    margin-bottom: 10px;
    border-radius: 50vw;
    position: absolute;
    bottom: -20px;
    left: 30px;
}

footer ul li a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 12px;
}

footer ul li a::before {
    content: "\F3C1";
    font-family: 'remixicon';
    font-size: 8px;
    margin-right: 8px;
    color: var(--white-text);
    transition: all 0.3s ease;
}

footer ul li a:hover::before {
    margin-right: 12px;
}

footer .other-img {
    gap: 10px;
}

footer .foot-img {
    height: 70px;
}

/* ================================ 
Inner Banner Section 
=================================== */
.inner-banner {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2)), url(../images/banner/banner-1.jpg) no-repeat center;
    background-size: cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--white-text);
}

.inner-banner h2 {
    font-size: 54px;
    margin-top: 10rem;
    margin-bottom: 10px;
}

/* ================================ 
Inner Nav Section 
=================================== */
.inner-nav-contain {
    border: 1px solid #c3c3c3;
    position: sticky;
    top: 100px;
    z-index: 80;
}

.inner-nav-contain h4 {
    padding: 10px 14px;
    background-color: var(--primary-color);
    color: var(--white-text);
    font-size: 30px;
}

.inner-nav-contain ul li a {
    display: block;
    padding: 8px 16px;
    border-bottom: 1px solid #c3c3c3;
    transition: all 0.2s ease-in-out;
    font-size: 20px;
}

.inner-nav-contain ul li:last-child a {
    border: 0;
}

.inner-nav-contain ul li a:hover {
    background-color: var(--hover-bg);
}


/* ================================ 
Inner Nav Section 
=================================== */
.re-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
}

.re-links li {
    flex-basis: calc(50% - 10px);
}

.re-links li a {
    padding: 12px;
    border: 1px solid #c3c3c3;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all 0.2s ease-in-out;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.re-links li a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}



.news-details h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.news-details .details-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.news-details .other-heading {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 26px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.announcement-list {
    max-height: 620px;
    overflow-y: auto;
    scrollbar-width: thin;
    list-style: disc;
    padding-left: 1.5rem;
    margin: 14px 0;
    margin-bottom: 0;

    li {
        margin-bottom: 10px;

        &::marker {
            color: var(--primary-color);
        }
    }
}


@media (max-width: 1600px) {

    .banner {
        width: 100%;
        height: 100vh;
    }

    .campus .slick-next {
        right: -25px;
    }

    .campus .slick-prev {
        left: -25px;
    }

    .research .slick-next {
        right: -25px;
    }

    .research .slick-prev {
        left: -25px;
    }

    .container-fluid {
        width: 100%;
        max-width: 1320px;
    }

    .navbar .nav-link {
        font-size: 22px;
    }

    .news .overlay .news-1-img {
        min-height: 647px;
    }

    .int-cont {
        min-height: 647px;
    }
}


@media (max-width: 1440px) {
    .banner .banner-title h1 {
        font-size: 70px;
    }

    .about h2 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .about p {
        font-size: 20px;
        line-height: 36px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 14px;
    }

    .news .sep-title {
        font-size: 24px;
    }

    .news .inner-contain h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .navbar .nav-link {
        font-size: 20px;
    }

    .navbar .nav-link {
        margin: 0 18px;
    }

    .section-desc {
        font-size: 20px;
    }

    .news .inner-contain span {
        font-size: 18px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .campus .inner-contain h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .campus .inner-contain p {
        font-size: 20px;
        line-height: 30px;
    }

    .campus .inner-contain a {
        font-size: 18px;
    }

    .btn1 {
        min-width: 255px;
        font-size: 20px;
    }

    .admission .inner-contain h3 {
        font-size: 28px;
        line-height: 40px;
    }

    .admission .inner-contain p {
        font-size: 20px;
        line-height: 30px;
        min-height: 100px;
    }

    .research h3 {
        font-size: 24px;
        line-height: 34px;
    }

    .research .re-desc {
        font-size: 20px;
        line-height: 28px;
    }

    .news-details .other-heading {
        font-size: 16px;
        line-height: 24px;
    }

    .news-details h1 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 36px;
    }

    .inner-banner h2 {
        font-size: 44px;
    }

    html,
    body {
        overflow-x: hidden !important;
    }

    .explore {
        height: 7vh;
    }

    .search-box-dropdown {
        right: 12px;
    }

    .goog-te-gadget-simple {
        font-size: 7pt !important;
    }

    .lower-nav li {
        font-size: 13px;
        padding: 0 10px;
    }
}


@media (max-width: 1276px) {

    .lower-nav li {
        font-size: 14px;
        padding: 0 12px;
    }

    .header-text h6 {
        font-size: 14px;
    }

    .header-logo {
        height: 80px;
    }

    .navbar .nav-link {
        margin: 0 14px;
    }

    .navbar .nav-link {
        font-size: 18px;
    }

    .navbar {
        top: 100px;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .header-logo {
        height: 70px;
    }

    .header-text h6 {
        font-size: 11px;
    }

    header .upper-nav li a,
    .lower-nav li {
        font-size: 12px;
        padding: 0 8px;
    }

    .social-media-bar img {
        height: 14px;
    }

    .goog-te-gadget-simple {
        font-size: 7pt !important;
    }

    header .lower-nav li .dark,
    header .lower-nav li .light {
        width: 16px;
        height: 16px;
    }

    header .lower-nav {
        margin-top: 14px;
    }

    .navbar .nav-link {
        font-size: 15px;
    }

    .navbar .nav-link {
        margin: 0 10px;
    }

    .navbar .nav-item .big-menu {
        min-width: 20rem;
    }

    .navbar .nav-item .big-menu .dropdown-item {
        padding-left: 14px;
        font-size: 13px;
    }

    .lower-nav li:last-child {
        padding-left: 8px;
    }

    .goog-te-gadget-icon {
        display: none !important;
    }

    .main-serach {
        top: 3px !important;
        position: relative;
    }
}


@media (max-width: 991px) {
    .navbar .nav-link {
        font-size: 16px;
        color: #121212;
        padding-left: 0;
        margin-left: 0;
        font-weight: 500;
    }

    .navbar-nav .dropdown-menu {
        border: none;
        padding: 0;
    }

    .navbar .nav-item .big-menu li a::before {
        top: 9px;
    }

    .offcanvas-body {
        padding-top: 10px !important;
    }

    .navbar-nav .big-menu li {
        padding-left: 1rem;
    }

    .banner {
        position: relative;

    }

    .banner,
    .banner-img {
        height: 100vh;
    }

    main {
        margin-top: 0;
        z-index: 1;
    }

    .explore {
        display: none;
    }

    header {
        position: absolute;
    }

    .navbar.scroll-on {
        position: static;
    }

    .navbar .nav-item .big-menu li a::before {
        font-size: 7px;
        top: 8px;
    }

    .navbar .nav-item .big-menu li a {
        font-size: 14px;
    }

    .counterPanel .itemList .counting {
        font-size: 2rem;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .int-cont {
        min-height: 200px;
    }

    .btn1 {
        min-width: 245px;
        font-size: 18px;
    }

    .slick-prev {
        left: 5px;
    }

    .slick-next {
        right: 5px;
    }

    .campus .inner-contain {
        padding: 14px;
    }

    .campus .inner-contain h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .campus .inner-contain p {
        font-size: 16px;
        line-height: 24px;
    }

    .campus .inner-contain a {
        font-size: 16px;
    }

    .admission .ad-img {
        margin-top: 3rem;
    }

    .research .slick-prev {
        left: 5px;
    }

    .research .slick-next {
        right: 5px;
    }

    .research .img-fluid {
        height: 280px;
        object-fit: cover;
        width: 100%;
    }

    .research h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .research .click {
        font-size: 18px;
    }

    .inner-nav-contain ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 1rem !important;
    }

    .inner-nav-contain ul li a {
        font-size: 14px;
        flex-basis: 25%;
        border: 1px solid #dbdbdb;
    }

    .inner-nav-contain ul li:last-child a {
        border: 1px solid #dbdbdb;
    }

    .inner-nav-contain h4 {
        font-size: 20px;
    }

    .inner-banner h2 {
        font-size: 34px;
    }

    .navbar {
        padding: 0 !important;
    }

    .news-details h1 {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 33px;
    }
}


@media (max-width: 480px) {
    body {
        font-size: 90%;
    }

    header .upper-nav li a,
    .lower-nav li {
        font-size: 12px;
        font-weight: 400;
        padding: 0 6px;
        border-right: 1px solid var(--white-text);
    }

    .serach-main {
        top: 2px !important;
    }

    .header-logo {
        height: 55px;
    }

    .header-text h6 {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .banner .banner-title h1 {
        font-size: 40px;
        white-space: nowrap;
    }

    .banner,
    .banner-img {
        height: 95vh;
    }

    .about h2 {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .about p {
        font-size: 16px;
        line-height: 28px;
    }

    .counterPanel {
        flex-wrap: wrap;
    }

    .counterPanel .itemList {
        flex-basis: 45%;
    }

    .counterPanel .itemList .counting {
        font-size: 1.5rem;

    }

    .counterPanel .itemList {
        padding: 1rem;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .section-desc {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .main-event {
        overflow: hidden;
    }

    .news .sep-title {
        font-size: 20px;
    }

    .news .inner-contain h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .news .inner-contain span {
        font-size: 14px;
    }

    .btn1 {
        min-width: 200px;
        font-size: 14px;
    }

    .admission .inner-contain h3 {
        font-size: 18px;
        line-height: 26px;
    }

    .admission .inner-contain p {
        font-size: 14px;
        line-height: 24px;
        min-height: 100%;
    }

    .admission .btn1 {
        bottom: -20px;
        font-size: 14px;
    }

    .campus .img-fluid {
        height: 250px;
        object-fit: cover;
        width: 100%;
    }

    .research .img-fluid {
        height: 250px;
    }

    footer h5 {
        font-size: 18px;
        margin-bottom: 26px;
    }

    footer ul li a {
        align-items: start;
        font-size: 13px;
        margin-bottom: 10px;
        position: relative;
        padding-left: 15px;
    }

    footer ul li a::before {
        position: absolute;
        top: 3px;
        left: 0;
    }

    .research .re-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .research .click {
        font-size: 16px;
    }

    .counterMain {
        padding-top: 2rem;
    }

    .social-media-bar img {
        height: 18px;
    }

    .news-details .details-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .inner-banner h2 {
        font-size: 28px;
    }

    .inner-banner {
        height: 36vh;
    }
    #faculty-search {
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .header-text h6 {
        font-size: 9px;
    }

    .header-logo {
        height: 50px;
    }

    header .lower-nav li .dark,
    header .lower-nav li .light {
        width: 18px;
        height: 18px;
    }

    .admission .inner-contain {
        padding: 30px 40px;
    }

    .btn1 {
        min-width: 240px;
        font-size: 13px;
    }

    .section-padding {
        padding: 30px 0;
    }

    .about h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .news-details h1 {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 26px;
    }
}

@media (max-width: 410px) {

    header .upper-nav li a,
    .lower-nav li {
        font-size: 10px;
    }

    .social-media-bar img {
        height: 15px;
    }

    .header-text h6 {
        font-size: 8px;
    }

    .header-logo {
        height: 46px;
    }

    .banner .banner-title h1 {
        font-size: 36px;
    }

    .counterPanel .itemList p {
        font-size: 14px;
    }

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

@media (max-width: 380px) {

    header .upper-nav li a,
    .lower-nav li {
        font-size: 9px;
    }

    header .lower-nav li .dark,
    header .lower-nav li .light {
        width: 14px;
        height: 14px;
    }

    .social-media-bar img {
        height: 15px;
    }

    .header-text h6 {
        font-size: 7.5px;
    }

    .header-logo {
        height: 42px;
    }

    .goog-te-gadget-simple {
        font-size: 5pt !important;
    }
}