:root {
    /* Theme Colors */
    --primary-color: #10c0cb;
    --secondary-color: #28353b;
    --tertiary-color: #d2d850;
    /* Surface Colors */
    --surface-color-1: #fbf7ed;
    --surface-color-2: #e6f3eb;
    --surface-color-3: #ffffff;
    /* Text Colors */
    --heading-color: #251c23;
    --subHeading-color: #3b3339;
    --othersHeading-color: #51494f;
    --paragraph-color: #666065;
    --placeholder-color: #9f9f9f;
    --white-color: #ffffff;
    /* State Colors */
    --success-color: #198754;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --info-color: #0dcaf0;

    /* Neutral Colors */
    --black-color: #0c0c20;

    /* Font Family */
    --font-family-Inter: "SolaimanLipiNormal", sans-serif;
}

/* ================ Global CSS Start ================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
    font-family: var(--font-family-Inter);
    font-weight: normal;
    font-style: normal;
    color: var(--paragraph-color);
    font-size: 14px;
    line-height: 160%;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    /* Choose a background color */
    z-index: 9999;
    /* Set a high z-index to display above other content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--primary-color);
    /* Choose a color for the spinner */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

a,
.button {
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none;
    color: var(--black-color);
    font-size: 16px;
}

a:focus,
a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

a,
button {
    outline: medium none;
}

.relative {
    position: relative;
}

table {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-Inter);
    margin-top: 0px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

h1 {
    font-size: 60px;
    color: var(--heading-color);
}

h2 {
    font-size: 48px;
    color: var(--subHeading-color);
}

h3 {
    font-size: 32px;
    color: var(--othersHeading-color);
}

h4 {
    font-size: 24px;
    color: var(--othersHeading-color);
}

h5 {
    font-size: 20px;
    color: var(--othersHeading-color);
}

h6 {
    font-size: 18px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

p {
    color: var(--paragraph-color);
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px;
    line-height: 160%;
    font-family: var(--font-family-Inter);
}

label {
    color: var(--placeholder-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

*::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--placeholder-color);
}

*::placeholder {
    color: var(--placeholder-color);
}

/* ================ Global CSS Start ================== */
/* ================ preloader CSS Start ================== */
/* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ba55d3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ff00ff;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
} */
/* ================ preloader CSS end ================== */

/*================== Common Class Start ================ */
.primary-color {
    background: var(--primary-color);
}

.surface-color-1 {
    background: var(--surface-color-1);
}

.section-gap-top {
    padding-top: 50px;
}

.section-gap-bottom {
    padding-bottom: 60px;
}

.section-gap-y {
    padding: 60px 0;
}

.btn-group {
    gap: 30px;
    flex-wrap: wrap;
}

.btn-group .btn.primary,
.btn-group .btn.secondary {
    border-radius: 0;
}

@media (max-width: 575px) {
    .section-gap-y {
        padding: 50px 0;
    }
}

/* Section Heading */
.heading-wrap {
    margin-bottom: 30px;
}

.section-heading {
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 575px) {}

/* Section Heading */

/* =============== Buttons CSS Start ================*/
a.btn {
    font-size: 15px;
    font-weight: 500;
    line-height: 160%;
    padding: 8px 24px;
    border-radius: 4px;
    transition: all 0.6s ease-in-out;
}

a.btn.primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

a.btn.primary:hover {
    background: var(--secondary-color);
    border: 1px solid var(--white-color);
}

a.btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

a.btn.secondary:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

a.text-btn {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
}

a.text-btn:hover {
    color: var(--secondary-color);
}

@media (max-width: 575px) {
    a.btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ---- Play Button ----- */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--white-color);
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    animation: shadows 1.4s linear infinite;
    transition: all ease 400ms;
}

.play-btn:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.play-btn i {
    font-size: 40px;
    color: var(--primary-color);
}

.play-btn:hover i {
    color: var(--white-color);
}

@-webkit-keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
            0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2), 0 0 0 70px transparent;
    }
}

/* ---- Play Button ----- */
/* =============== Buttons CSS End ================*/
/* Social */
.social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: var(--surface-color-1);
    border-radius: 2px;
    text-align: center;
    line-height: 30px;
    color: var(--othersHeading-color);
    transition: 0.6s ease-in-out;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

@media (max-width: 575px) {
    .social {
        margin-bottom: 20px;
    }
}

/* Social */

/* slider Arrow */

.owl-dots {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 2%;
}

.testimonials-section .owl-dots {
    bottom: -40px;
}

.owl-dots .owl-dot {
    height: 6px;
    width: 25px;
    background: #959da0;
    display: inline-block;
    margin: 5px;
    border-radius: 30px;
    /* border: 2px solid var(--primary-color); */
}

.owl-theme .owl-dots .owl-dot span {
    background: transparent !important;
}

.owl-dots .owl-dot.active {
    background-color: var(--primary-color);
}

/* slider Arrow */
/*================== Common Class End ================ */

/*================ Header Section Start =============== */
/* Top Navbar */

/* Bottom Navbar */
/* .navbar .navbar-brand {
    max-width: 270px;
} */
.navbar-nav .nav-link {
    border-right: 2px solid #fff;
    transition: 0.6s ease-in-out;
    margin-left: 5px;
    color: var(--text-2);
    font-size: 12px;
    line-height: 160%;
    font-weight: 400;
    color: var(--white-color);
    padding: 0;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    /* border-bottom: 2px solid var(--white-color); */
    color: var(--secondary-color);
    display: inline-block;
}

.dropdown:hover .dropdown-menu {
    display: block;
    background: var(--surface-white);
    border-radius: 0;
    box-shadow: var(--bs-box-shadow-sm);
}

.nav-item .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-item {
    transition: 0.6s ease-in-out !important;
    background: var(--surface-color-3);
    border-color: var(--surface-color-2);
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.dropdown-submenu {
    display: none !important;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu>li:hover>.dropdown-submenu {
    display: block !important;
}

/*------------ Hero Section Start -------- */

/*--------- special-notice area start-------------- */
.special-notice {
    padding-right: 10px;
    background: #dff5f2;
    display: flex;
    gap: 10px;
    align-items: center;
}

.special-notice-heading {
    padding: 10px;
    background: var(--primary-color);
    min-width: fit-content;
}

.special-notice-heading h6 {
    color: #fff;
    margin-bottom: 0;
}

.special-notice-content ul li {
    margin-right: 30px;
}

/*--------- special-notice area end-------------- */

/*--------- principals area start-------------- */
.principals-message-card,
.miscellaneous-notices {
    height: calc(100%);
}

.principals-info {
    margin-bottom: 10px;
}

.principals-info h6 {
    margin-bottom: 5px;
}

.principals-message .message p {
    text-align: justify;
    margin-bottom: 10px;
}

/*--------- principals area end-------------- */
/* --------------- notices ----------------- */
.notices-heading,
.links-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #dff5f2;
}

.scrolling-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    position: relative;
}

.scrolling-text {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    animation: scrollText 10s linear infinite;
}

@keyframes scrollText {
    0% {
        top: 100%;
    }

    100% {
        top: -100%;
        /* Adjust this value based on your text length */
    }
}

.single-notice,
.single-links {
    padding: 10px 15px;
    border-bottom: 1px solid #ebebeb;
}

.post-date {
    padding: 3px 10px;
    display: inline-block;
    background: #ffd104;
    color: #291d1d;
    margin-bottom: 10px;
    font-weight: 600;
}

.single-notice a {
    font-size: 16px;
    text-align: justify;
    color: var(--paragraph-color);
    display: block;
}

.single-notice a:hover {
    color: var(--black-color);
}

.single-notice a span {
    font-weight: 600;
    color: var(--black-color);
    transition: 0.5s;
    display: block;
}

.single-notice a:hover span {
    color: var(--primary-color);
}

/* --------------- notices ----------------- */

/* --------------------
 Summary Section Start 
-------------------*/
.summary-section {
    background: #dff5f2;
}

.single-card {
    text-align: center;
    padding: 24px;
    background: #ffffff8d;
    transition: 0.5s;
}

.single-card:hover {
    background: #fff;
}

.summary-section .single-card .icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.summary-section .single-card .info {}

.summary-section .single-card .info h6 {}

.summary-section .single-card .info h3 {
    margin-bottom: 0;
}

/* --------------------
 Summary Section End 
-------------------*/

/* ---------------------------------------
    Important Information Section Start
---------------------------------------- */
.informations,
.important-links-wrap {
    height: calc(100%);
}

.important-links .single-links {
    border: 1px solid #ebebeb;
    border-top: none;
}

.information {
    padding: 24px;
    border: 1px solid #ebebeb;
    height: calc(100%);
}

.information .icon {
    width: 80px;
    overflow: hidden;
    margin-bottom: 15px;
}

.info-heading h5 {
    margin-bottom: 15px;
}

.info-link li {
    margin-bottom: 8px;
}

.info-link li:last-child {
    margin-bottom: 0;
}

/* ---------------------------------------
    Important Information Section End
---------------------------------------- */
/* facilities-section */
.facilities-section {
    background: #dff5f2;
}

.facilities-card {
    /* padding: 15px; */
    text-align: center;
    background: #fff;
}

.facilities-card .facilities-img {
    /* margin-bottom: 15px; */
}

.facilities-card .facilities-img img {
    width: 100%;
}

.facilities-title {
    padding: 15px;
}

/* facilities-section */

/*----------- footer start---------- */
.footer-section {
    background: #dff5f2;
}

/*-------------- footer end--------- */