@import "./variables.css";

/* Header */
/* .header {
    background: var(--light);
    width: 100%;
} */
.dropdown-toggle {
    color: var(--dark);
}
.header {
    background: var(--light);
    width: 100%;
    z-index: 5;
    position: relative;
}
.header .navbar-brand {
    display: flex;
}
.header .navbar-brand .image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.header .navbar-brand .image img {
    width: 60px;
}
.header .navbar-brand .image span {
    width: 1px;
    height: 100%;
    background: var(--dark-alt);
    margin: 0 10px;
    opacity: 0.3;
}
.header .navbar-brand .text {
    margin-left: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.header .navbar-brand .text h1 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}
.header .navbar-brand .text h2 {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}
.header .theme-toggle {
    width: 50px;
    height: 30px;
    border: 0;
    border-radius: 30px;
    background: var(--light-alt);
    position: relative;
    text-align: left;
    padding: 0 10px;
    transition: 0.5s ease all;
    margin-left: 15px;
}
.header .theme-toggle.light {
    background: var(--light-alt);
    color: var(--dark);
    text-align: left;
}
.header .theme-toggle.dark {
    background: var(--dark);
    color: var(--light);
    text-align: right;
}
.header .navbar .navbar-nav {
    gap: 10px;
}
.header .navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}
.header .navbar .nav-link.active {
    color: var(--primary);
}

/* Hero */
.hero {
    width: 100%;
    height: 550px;
    max-height: 100vh;
    position: relative;
    background: radial-gradient(#1e1e1e73, #1e1e1ea8, #1e1e1e),
        url(../images/hero.jpg);
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero .text {
    text-align: center;
    width: 100%;
}
.hero .text h4 {
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--light);
    margin-bottom: 20px;
}
.hero .text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--light);
}
.hero .text .search-form {
    width: 95%;
    max-width: 650px;
    margin: auto;
    background: var(--light);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.hero .text .search-form input {
    width: 100%;
    border: 0;
    padding: 10px;
    font-size: 16px;
    color: var(--dark-alt);
    background: transparent;
}
.hero .text .search-form button {
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
    outline: 0;
    background: var(--primary);
    color: var(--light);
    font-size: 14px;
}
.hero .text .tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.hero .text .tags a {
    padding: 5px 15px;
    display: inline-block;
    border-radius: 5px;
    background: var(--primary);
    color: var(--light);
    transition: 0.5s ease all;
    font-size: 14px;
    font-weight: 500;
}
.hero .text .tags a:hover {
    background: var(--light);
    color: var(--dark-alt);
}

/* News Section */
.news-section .news-carousel {
    width: calc(100% + 30px);
    margin: 0 -15px;
}
.news-section .news-carousel .item {
    padding: 15px;
}
.news-section .card {
    border: 0;
    border-radius: 5px;
    background: var(--background);
    height: 100%;
    box-shadow: var(--shadow);
}
.news-section .card .card-body {
    padding: 30px;
    height: 150px;
    overflow-y: auto;
}
.news-section .card .card-footer {
    padding: 30px;
    background: var(--background);
    border-top: 1px solid var(--foreground);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.news-section .card .card-footer h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}
.news-section .card .card-footer a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}
.news-carousel-container {
    position: relative;
}
.news-section .news-carousel-navs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    width: calc(100% + 100px);
}
.news-section .news-carousel-navs button {
    width: 40px;
    height: 40px;
    background: var(--heading);
    color: var(--background);
    border: 0;
    transition: 0.5s ease all;
    margin: 0;
    border-radius: 5px;
}
.news-section .news-carousel-navs button:hover {
    background: var(--primary);
    color: var(--light);
}

/* Important Links */
.links-section .card {
    border: 0;
    border-radius: 5px;
    background: var(--foreground);
    text-align: center;
}
.links-section .card .icon {
    width: 100px;
    margin: auto;
}
.links-section .card .icon img {
    width: 100%;
    transition: 0.5s ease all;
}
[data-theme="light"] .links-section .card:hover .icon img {
    filter: drop-shadow(0px 5px 5px #0004);
    transform: translate(-5px, -5px);
}
[data-theme="dark"] .links-section .card:hover .icon img {
    filter: drop-shadow(10px 10px 5px #0009);
    transform: translate(-5px, -5px);
}
.links-section .card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    color: var(--heading);
}

/* Cards Section */
.cards-section .card {
    background: var(--background);
    border: 0;
    border-radius: 5px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: 0.5s ease all;
}
.cards-section .card .card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px;
    border-color: var(--foreground);
    background: var(--background);
}
.cards-section .card .card-header .icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    color: var(--light);
    font-size: 20px;
}
.cards-section .card .card-header h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading);
    width: calc(100% - 55px);
}
.cards-section .card .card-body {
    padding: 20px;
}
.cards-section .card .achievements-carousel .box {
    height: 300px;
    overflow-y: auto;
}
.cards-section .card .achievements-carousel .box h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}
.cards-section .card .achievements-carousel .box p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color);
    margin-bottom: 10px;
}
.cards-section .card .achievements-carousel .box a {
    font-size: 14px;
    font-weight: 600;
    background: var(--primary);
    color: var(--light);
    display: inline-block;
    padding: 7px 15px;
    margin-top: 20px;
    border-radius: 3px;
}
.cards-section .card .achievements-carousel .slick-dots {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3px;
}
.cards-section .card .achievements-carousel .slick-dots li button {
    width: 10px;
    height: 10px;
    margin: 0;
    font-size: 0;
    border-radius: 10px;
    border: 1px solid var(--primary);
    background: var(--background);
    transition: 0.5s ease all;
}
.cards-section .card .achievements-carousel .slick-dots li.slick-active button {
    background: var(--primary);
}
.cards-section .card .events-calander-carousel .box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--foreground);
}
.cards-section .card .events-calander-carousel .box p {
    margin-bottom: 10px;
    max-height: 76px;
    overflow-y: auto;
}
.cards-section .card .events-calander-carousel .box h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}
.cards-section .card .events-calander-carousel .box a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}
.cards-section .card .list.more-list {
    transition: 0.5s ease all;
    overflow: hidden;
}
.cards-section .card .list.more-list.hide {
    height: 170px;
}
.cards-section .card .more-list-btn {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}
.cards-section .card .list li {
    margin-bottom: 15px;
    color: var(--color);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}
.cards-section .card .list li:last-child {
    margin-bottom: 0;
}
.cards-section .card .list li::before {
    content: "-";
}

/* Counter Section */
.counter-section .card {
    border: 0;
    border-radius: 5px;
    background: var(--foreground);
    height: 100%;
}
.counter-section .card .card-body {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.counter-section .card .card-body h6 {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading);
}
.counter-section .card .card-body img {
    width: 45px;
}
.counter-section .card .card-body .icon i {
    font-size: 45px;
    color: var(--primary);
}
.counter-section .card .card-footer {
    padding: 20px;
    background: var(--foreground);
    border-top: 1px solid var(--background);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.counter-section .card .card-footer h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color);
}

/* Gallery Section */
.gallery-section .gallery-main {
    position: relative;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.gallery-section .gallery-main .carousel-inner {
    position: absolute;
}
.gallery-section .gallery-main .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(#00000066, #1e1e1e7a, #1e1e1e91);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: 50px;
}
[data-theme="dark"] .gallery-section .gallery-main .text {
    background: linear-gradient(#00000066, #1e1e1e7a, #1e1e1e91);
}
[data-theme="light"] .gallery-section .gallery-main .text {
    background: linear-gradient(#ffffff4d, #ffffff38, #ffffff30);
}
.gallery-section .carousel-indicators {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.gallery-section .carousel-indicators button {
    box-sizing: border-box;
    text-indent: initial;
    border: 0;
    outline: 0;
    background-clip: initial;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 5px;
    overflow: hidden;
    opacity: 0.5;
}
.gallery-section .carousel-indicators button img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.gallery-section .carousel-indicators button.active {
    opacity: 1;
}
.gallery-section .carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Infrastructure */
.infrastructure .card .icon {
    width: 60px;
}
.infrastructure .card {
    height: 100%;
    text-align: center;
    border-radius: 0;
    padding: 25px;
    border: 0;
    transition: all 0.5s ease;
}
.infrastructure .card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color);
}
.infrastructure .card.bg-blue {
    background-color: var(--foreground) !important;
}
body[data-theme="light"] .infrastructure .card img {
    filter: invert(16%) sepia(97%) saturate(1558%) hue-rotate(232deg)
        brightness(85%) contrast(103%);
}
body[data-theme="dark"] .infrastructure .card img {
    filter: invert(41%) sepia(17%) saturate(2206%) hue-rotate(206deg)
        brightness(85%) contrast(89%);
}
body[data-theme="light"] .infrastructure .card:hover {
    box-shadow: inset 0 0 100px 1px #8b7fff7d;
}
body[data-theme="dark"] .infrastructure .card:hover {
    box-shadow: inset 0 0 100px 1px #000;
}

/* Footer */
.footer {
    background: var(--background);
    padding: 100px 0 50px;
}
.footer h2 {
    font-size: 40px;
    font-weight: 400;
    color: var(--heading);
}
.footer h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 30px;
}
.footer .social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 30px;
}
.footer .social a {
    font-size: 20px;
    color: var(--primary);
    transition: 0.5s ease all;
}
.footer .social a:hover {
    color: var(--heading);
}
.footer h5 {
    font-size: 25px;
    font-weight: 300;
    color: var(--heading);
    margin-bottom: 30px;
}
.footer ul li {
    margin-bottom: 10px;
    list-style: disc;
    list-style-position: inside;
    color: var(--color);
}
.footer ul li:last-child {
    margin-bottom: 0;
}
.footer ul li a {
    color: var(--color);
    transition: 0.5s ease all;
    font-size: 16px;
    position: relative;
    left: 0;
    font-weight: 400;
}
.footer ul li a:hover {
    color: var(--heading);
    left: 10px;
    /* margin-left: 10px; */
}
.footer address {
    margin-bottom: 20px;
}
.footer address:last-child {
    margin-bottom: 0;
}
.footer address b {
    display: block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}
.footer address span {
    font-size: 16px;
    font-weight: 400;
    color: var(--color);
}
.footer address span a {
    color: var(--color);
    transition: 0.5s ease all;
}
.footer address span a:hover {
    color: var(--heading);
}
.footer hr {
    margin-top: 100px;
    margin-bottom: 50px;
    height: 2px;
    width: 100%;
    display: block;
    background: var(--heading);
    opacity: 0.2;
}

/* Banner */
.banner {
    position: relative;
    overflow: hidden;
}
.banner .image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.banner .image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    opacity: 0.5;
}
.banner .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.banner .container {
    position: relative;
    z-index: 2;
}
.banner .heading {
    font-size: 40px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 20px;
}
.banner .breadcrumb {
    padding: 10px 20px;
    background: var(--primary);
    width: auto;
    display: inline-flex;
    border-radius: 5px;
}
.banner .breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 600;
}
.banner .breadcrumb .breadcrumb-item a {
    color: var(--light);
}
.banner .breadcrumb .breadcrumb-item.active span {
    color: var(--light-alt);
}

/* Widget Misc */
.wid-heading {
    padding-left: 15px;
    border-left: 5px solid var(--primary);
    color: var(--heading);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}
.wid-divider {
    height: 2px;
    width: 100%;
    opacity: 0.3;
    margin: 40px 0;
    background: var(--primary);
}

/* Heading Widgets */
.wid-h1 {
    font-size: 35px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px;
}
.wid-h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px;
}
.wid-h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px;
}
.wid-h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px;
}
.wid-h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px;
}
.wid-h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px;
}

/* Button Widgets */
.wid-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--light);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid var(--primary);
    outline: 0;
    transition: 0.5s ease all;
}
.wid-btn:hover {
    background: transparent;
    color: var(--primary);
}
.wid-btn-alt {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid var(--primary);
    outline: 0;
    transition: 0.5s ease all;
}
.wid-btn-alt:hover {
    background: var(--primary);
    color: var(--light);
}
.wid-btn-dark {
    display: inline-block;
    padding: 10px 20px;
    background: var(--dark);
    color: var(--light);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid var(--dark);
    outline: 0;
    transition: 0.5s ease all;
}
.wid-btn-dark:hover {
    background: var(--light);
    color: var(--dark);
}
.wid-btn-light {
    display: inline-block;
    padding: 10px 20px;
    background: var(--light);
    color: var(--dark);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid var(--light);
    outline: 0;
    transition: 0.5s ease all;
}
.wid-btn-light:hover {
    background: var(--dark);
    color: var(--light);
}

/* Search Widgets */
.wid-search-form {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    background: var(--foreground);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.wid-search-form input {
    background: transparent;
    border: 0;
    outline: 0;
    border-radius: 0;
    color: var(--heading);
    font-size: 14px;
    width: 100%;
}
.wid-search-form button {
    border: 0;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
}

/* Widget Carousel */
.wid-carousel {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    max-height: 500px;
}
.wid-carousel .carousel-inner,
.wid-carousel .carousel-item {
    position: relative;
    height: 100%;
    max-height: 500px;
}
.wid-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}
.wid-carousel .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000000d6, transparent);
}
.wid-carousel .carousel-caption {
    position: absolute;
    inset: auto;
    margin: 0;
    bottom: 50px;
    left: 50px;
    text-align: left;
    width: 360px;
    z-index: 3;
}
.wid-carousel .carousel-caption h5 {
    font-size: 25px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 15px;
}
.wid-carousel .carousel-caption p {
    font-size: 16px;
    font-weight: 400;
    color: var(--light-alt);
}
.wid-carousel .carousel-indicators {
    position: absolute;
    inset: auto;
    bottom: 25px;
    left: 50px;
    width: auto;
    margin: 0;
}
.wid-carousel .carousel-indicators button {
    border: 0;
    border-radius: 5px;
    width: 15px;
    background: var(--light);
}
.wid-carousel .carousel-controls {
    position: absolute;
    bottom: 25px;
    right: 50px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.wid-carousel .carousel-controls button {
    width: 30px;
    height: 30px;
    background: var(--primary);
    position: relative;
    inset: auto;
    opacity: 1;
    border-radius: 2px;
    font-size: 14px;
}

/* Accordion Widget */
.wid-accordion .accordion-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--foreground);
    border: 0;
    box-shadow: var(--shadow);
}
.wid-accordion .accordion-button {
    background: var(--primary);
    border: 0;
    outline: 0;
    box-shadow: none;
    color: var(--light);
    position: relative;
    font-size: 16px;
    font-weight: 600;
}
.wid-accordion .accordion-button::after {
    background: none;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}
.wid-accordion .accordion-button.collapsed {
    background: var(--foreground);
    color: var(--heading);
}
.wid-accordion .accordion-button.collapsed::after {
    transform: translateY(-50%) rotate(0);
}

/* Tab Widgets */
.wid-tab .nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.wid-tab .nav-link {
    background: transparent;
    color: var(--heading);
    border: 1px solid var(--primary);
}
.wid-tab .nav-link.active {
    background: var(--primary);
    color: var(--light);
    border: 1px solid var(--primary);
}
.wid-tab .tab-pane {
    border-radius: 5px;
    padding: 15px;
    background: var(--foreground);
}

/* Lightbox Widget */
.wid-lightbox a {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}
.wid-lightbox a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Card Widget */
.wid-card {
    border: 0;
    border-radius: 5px;
    background: var(--foreground);
    height: 100%;
    overflow: hidden;
}
.wid-card .card-header {
    padding: 20px;
    background: var(--foreground);
    border-bottom: 1px solid var(--background);
}
.wid-card .card-header h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading);
}
.wid-card .card-body {
    padding: 20px;
}
.wid-card .card-body img {
    border-radius: 5px;
    margin-bottom: 15px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
.wid-card .card-body p {
    font-size: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}
.wid-card .card-footer {
    padding: 30px;
    background: var(--foreground);
    border-top: 1px solid var(--background);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wid-card .card-footer h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}
.wid-card .card-footer a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Vertical Carousel Widget */
.wid-vertical-carousel {
    padding: 15px;
    background: var(--foreground);
    border-radius: 5px;
    box-shadow: var(--shadow);
    position: relative;
}
.wid-vertical-carousel .box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--background);
}
.wid-vertical-carousel .box p {
    margin-bottom: 10px;
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.wid-vertical-carousel .box h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}
.wid-vertical-carousel .box a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}
.wid-vertical-carousel-controls {
    position: relative;
    padding: 10px;
    background: var(--foreground);
    display: inline-flex;
    gap: 15px;
    margin-top: 5px;
    border-radius: 5px;
}
.wid-vertical-carousel-controls button {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--heading);
}
.wid-vertical-carousel-controls button.slick-hidden {
    display: block;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Horizontal Carousel Widget */
.wid-horizontal-carousel {
    padding: 15px;
    background: var(--foreground);
    border-radius: 5px;
    box-shadow: var(--shadow);
    position: relative;
}
.wid-horizontal-carousel .box {
    padding-bottom: 15px;
}
.wid-horizontal-carousel .box p {
    margin-bottom: 10px;
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.wid-horizontal-carousel .box h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}
.wid-horizontal-carousel .box h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}
.wid-horizontal-carousel .box a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}
.wid-horizontal-carousel-controls {
    position: relative;
    padding: 10px;
    background: var(--foreground);
    display: inline-flex;
    gap: 15px;
    margin-top: 5px;
    border-radius: 5px;
}
.wid-horizontal-carousel-controls button {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--heading);
}
/* Album */
.album-item {
    position: relative;
    display: block;
}
.album-item .image {
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    height: 250px;
    position: relative;
}
.album-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s ease all;
}
.album-item:hover .image img {
    transform: scale(1.1);
}
.album-item h5 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: var(--primary);
    color: var(--light);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    width: 80%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* --- gallery page --- */
.gallery-page .image-box {
    height: 100%;
    position: relative;
    transition: 0.5s all linear;
    overflow: hidden;
}

.gallery-page .image-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    opacity: 0.5;
    pointer-events: none;
    transition: 0.5s all linear;
}

.gallery-page .image-box:hover::after {
    height: 100%;
}

.gallery-page .image-box img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 300px;
    transition: 0.5s all linear;
}

.gallery-page .image-box .icon-box {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 60px;
    height: 60px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s all linear;
}

.gallery-page .image-box:hover a img {
    scale: 1.1;
}

.gallery-page .image-box:hover .icon-box {
    bottom: 50%;
    opacity: 1;
}

.gallery-page .image-box .icon-box img {
    color: var(--light);
    filter: invert(1);
}

/* --- Contact us page --- */
.contact-us {
    background-color: var(--foreground);
}
.contact-us iframe {
    min-height: 400px;
}

/* Background Image */
.bg-image {
    background-position: center !important;
    background-size: cover !important;
    background-attachment: fixed !important;
}
/* Background Image */
/* code added by ankita 18-06-2024 */
.navbar-blue {
    /*background: #d8ebff;*/
    padding: 4px !important;
    /*border-top: 1px solid var(--primary);*/
    border-top: 1px solid #c6c6c6;
}

/* Responsive */
@media (max-width: 1280px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 1199px) {
}

@media (max-width: 991px) {
    .contact-us .card {
        border-bottom: none;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }
}

@media (max-width: 992px) {
    .header .theme-toggle {
        margin-left: 0px;
    }
}

@media (max-width: 848px) {
    .news-section .news-carousel-navs {
        top: 110%;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .g-5,
    .gx-5 {
        --bs-gutter-x: 0 !important;
    }
    .hero .text {
        text-align: center;
        width: 99%;
    }
    .heading {
        font-size: 40px;
        font-weight: 700;
        color: var(--heading);
        text-transform: capitalize;
    }
    .news-section {
        overflow: hidden;
    }
}
@media (max-width: 558px) {
    .header .navbar-brand {
        display: flex;
        flex-direction: column;
    }
    .header .navbar-brand .text {
        margin-left: 0px;
    }
}

@media (max-width: 440px) {
    .gallery-section .title-button {
        flex-direction: column;
    }
}

@media (max-width: 384px) {
    .header .navbar-brand .image {
        justify-content: flex-start;
    }

    .header .navbar-brand .text h1 {
        font-size: 15px;
    }
    .header .navbar-brand .text h2 {
        font-size: 10px;
    }

    .gallery-page .image-box img {
        max-height: 250px;
    }
}

/* For 5 Column Grid */
@media (max-width: 1200px) {
    .row-cols-5 > * {
        width: 20%;
    }
}
@media (max-width: 992px) {
    .row-cols-5 > * {
        width: 33%;
    }
}
@media (max-width: 767px) {
    .row-cols-5 > * {
        width: 50%;
    }
}
@media (max-width: 400px) {
    .row-cols-5 > * {
        width: 100%;
    }
}
/* For 5 Column Grid */