@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-clr: #f7a707;
    --btn-clr: #9d231f;
    --background-clr1: #f2f6fb;
    --active-clr: #9d231f;
    --nav-link-clr: #696E77;
    --footer-text-clr: #A7A8B4;
    --white-clr: #fff;
    --text-clr: #40525a;
    --bnr-text-clr: #5c727d;
    --heading-clr: #0e0f0f;
    --dark-clr: #000;
    --footer-bg-clr1: #171b2a;
    --footer-bg-clr2: #282b38;
    --heading-font: "Rubik", sans-serif;
    --body-font: "Nata Sans", sans-serif;
    --fw-100: 100;
    --fw-200: 200;
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;
}

body {
    font-family: var(--body-font);
}

a {
    text-decoration: none !important;
}

ul li {
    list-style-type: none;
}

.list-type-num li {
    list-style-type: numeric;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

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

/* NAVBAR */
#top-sec {
    background-color: var(--active-clr);
}

.navbar-nav {
    background-color: var(--background-clr1);
    padding: 5px;
    border-radius: 5px;
}

.navbar-brand img {
    max-width: 130px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 18px;
    padding: 10px 0;
    color: var(--nav-link-clr);
    font-weight: var(--fw-500);
    font-size: 15px;
    outline: none;
}

.navbar-nav .nav-link.active {
    color: var(--active-clr) !important;
    font-weight: 600;
    border-bottom: 2px solid var(--active-clr);
}

.banner-img img {
    max-width: 100%;
}

/* BOOTSTRAP IMPORTANT CSS */

.form-control {
    padding: .75rem!important;
}

.dropdown-menu {
    border-radius: 0 !important;
    border: none !important;
}

.dropdown-menu[data-bs-popper] {
    margin-top: 0.5rem !important;
}

.navbar-nav .dropdown-menu {
    display: none;
    transition: opacity 50ms ease-in, visibility 0ms ease-in 0ms;
}

/* Show dropdown on hover */
.navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 0, 164, 0.2);
}

.navbar-toggler {
    background: var(--white-clr);
    -webkit-box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    box-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
}

/* HERO CAROUSEL */
.hero-carousel {
    background-color: var(--background-clr1);
}

#hero-slider .item {
    width: 95%;
    margin: 0 auto;
    padding: 60px 15px;
}

.hero-slider-img img {
    border-radius: 10px;
    border: 2px solid var(--active-clr);
}

.custom-btn {
    position: relative;
    display: inline-block;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: var(--fw-400);
    color: var(--white-clr);
    text-decoration: none;
    background-color: var(--btn-clr);
    overflow: hidden;
    border: 2px solid var(--btn-clr);
    z-index: 1;
}

.custom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--white-clr);
    z-index: -1;
    transition: width 0.50s ease-in-out;
}

.custom-btn:hover::before {
    width: 100%;
}

.custom-btn:hover {
    color: var(--btn-clr);
}

.slide-title {
    color: var(--heading-clr);
    font-size: 35px;
}

.slide-desc {
    color: var(--bnr-text-clr);
    font-size: 15px;
    text-align: justify;
}

/* ABOUT SECTION */
.img-sec {
    border-radius: 15px;
    width: 90%;
    position: relative;
    margin: auto;
    z-index: 1;
}

.img-sec::before {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 200px;
    height: 200px;
    background: var(--primary-clr);
    content: "";
    z-index: -1;
    border-radius: 0 8px 0 0;
}

.img-sec::after {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    content: "";
    background: var(--active-clr);
    z-index: -1;
    border-radius: 0 0px 0px 8px;
}

.text-container span {
    font-size: 16px;
    font-weight: var(--fw-600);
    color: var(--active-clr);
}

.text-container h2 {
    font-size: 35px;
    font-weight: var(--fw-500);
    color: var(--heading-clr);
    margin-bottom: 20px;
}

.text-container p {
    font-size: 16px;
    color: var(--text-clr);
    hyphens: auto;
    text-align: justify;
}

.text-container ul li {
    list-style-type: circle;
}

.text-container small {
    font-size: 16px;
    color: var(--text-clr);
    font-weight: var(--fw-400);
}

/* MISSION AND VISION */
.text-container h3 {
    font-size: 20px;
    color: var(--heading-clr);
    font-weight: var(--fw-400);
}

.s-text-container{
    margin-top: 3rem;
}

/* AIM & OBJECTIVES */
.activity-random-margin:nth-child(1) {
    margin-bottom: 10px;
}

.activity-random-margin:nth-child(2) {
    margin-bottom: 10px;
}

.activity-random-margin:nth-child(3) {
    margin-bottom: 10px;
}

.activity-random-margin:nth-child(4) {
    margin-bottom: 10px;
}

.activity-random-margin:nth-child(5) {
    margin-bottom: 10px;
}

.activity-random-margin:nth-child(6) {
    margin-bottom: 10px;
}

.activity-random-margin:nth-child(7) {
    margin-bottom: 10px;
}

.activity-random-margin:nth-child(8) {
    margin-bottom: 10px;
}

/*.activity-random-margin {*/
/*    border: 2px solid #fff;*/
/*}*/

.icon-box {
    text-align: center;
    padding: 10px;
}

.icon-box h3 {
    font-size: 20px;
    font-weight: var(--fw-400);
    color: var(--white-clr);
}

.icon-box .icon img {
    width: 80px;
}

/* FACILITIES */
.facilities {
    max-width: 500px;
    margin: auto;
}

.facilities-box, .activity-randombg {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 10px;
}

.activity-randombg {
    background-color: var(--footer-bg-clr1);
    height: 100% !important;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.icon-desc{
    margin: auto;
}

.facilities-box .img-box {
    width: 90px;
    height: 90px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--active-clr);
    margin-left: -3rem;
    margin-right: 1.5rem;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.facilities-box .img-box img {
    max-width: 60px;
    max-height: 60px;
}

/* BREADCRUMB */
#breadcrumb {
    width: 100%;
    height: 170px;
    background-color: var(--background-clr1);
    text-align: center;
    padding: 50px 0;
}

#breadcrumb h1 {
    font-size: 30px;
    font-weight: var(--fw-500);
}

.breadcrumb-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-list ul li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
    font-weight: var(--fw-500);
}

.breadcrumb-list ul li a {
    color: var(--active-clr);
}

.breadcrumb-list ul li:nth-child(1)::after {
    position: absolute;
    content: "\f054";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    font-size: 10px;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* ABOUT PAGE */
.list-type-num span {
    color: var(--active-clr);
}

#infra-facilities {
    background-color: var(--background-clr1);
    padding: 50px 0;
}


/* CONTACT PAGE */
#form-details{
    background-color: var(--background-clr1);
    padding: 25px;
    border-radius: 10px;
}

/* wrapper (fixed to right) */
    .brochure-wrap {
    position: fixed;
    right: 0;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    }
    
    /* hidden checkbox to toggle open/close */
    .brochure-toggle {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    }
    
    /* slide-out panel */
    .brochure-panel {
        transform: translateX(140%);
        transition: transform .35s ease;
        background: #ffffff;
        color: #111827;
        border-radius: 16px 0 0 16px;
        box-shadow: 0 10px 25px rgba(0,0,0,.15);
        width: min(340px, 90vw);
        padding: 16px;
    }
    
    /* open when checked */
    .brochure-toggle:checked ~ .brochure-panel {
        transform: translateX(0);
        max-width: 250px;
        padding: 20px;
    }
        
    /* the fixed tab button */
    .brochure-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--btn-clr);
    color: var(--white-clr);
    padding: 20px 10px;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    writing-mode: vertical-rl;         /* vertical on desktop */
    text-orientation: mixed;
    }
    
    /* icon that flips on open/close */
    .brochure-tab .icon {
    font-size: 18px;
    line-height: 1;
    transform: rotate(180deg); /* points left by default (into page) */
    transition: transform .25s ease;
    }
    .brochure-toggle:checked ~ .brochure-tab .icon {
    transform: rotate(0deg);
    }
    
    /* content inside panel */
    .brochure-heading {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    font-weight: 700;
    }
    .brochure-desc {
    margin: 0 0 12px 0;
    font-size: .95rem;
    line-height: 1.45;
    color: #374151; /* gray-700 */
    }
    
    .brochure-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    }
    
    .brochure-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #111827;    /* gray-900 */
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: transform .08s ease;
}
.brochure-actions a:hover { transform: translateY(-1px); }
.brochure-actions a:active { transform: translateY(0); }


/* FOOTER */
#t-footer {
    background-color: var(--active-clr);
    color: var(--white-clr);
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 999;
    font-size: 18px;
    border: none;
    outline: none;
    background: var(--active-clr);
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all 0.4s;
}

.custom-btn_2 {
    position: relative;
    display: inline-block;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: var(--fw-400);
    color: var(--dark-clr);
    text-decoration: none;
    background-color: var(--white-clr);
    overflow: hidden;
    border: 2px solid var(--white-clr);
    z-index: 1;
}

.custom-btn_2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-clr);
    z-index: -1;
    transition: width 0.50s ease-in-out;
}

.custom-btn_2:hover::before {
    width: 100%;
}

.custom-btn_2:hover {
    color: var(--active-clr);
}

.galleryimg img{
    height: 222px;
    object-fit: cover;
}

footer {
    color: var(--footer-text-clr);
}

.f-footer a {
    color: var(--white-clr) !important;
}

.f-footer {
    background-color: var(--footer-bg-clr1);
    color: var(--white-clr) !important;
}

.footer-menu ul li {
    list-style: none;
    margin-top: 0px;
    margin-bottom: 15px;
    position: relative;
}

.footer-menu ul li a {
    position: relative;
    transition: 0.3s ease-in;
}

.footer-menu ul li a::before {
    position: absolute;
    content: "//";
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
    opacity: 0;
    visibility: hidden;
    margin-left: -20px;
    color: var(--ltn__secondary-color);
}

.footer-menu ul li:hover a::before {
    opacity: 1;
    visibility: visible;
    margin-left: 0;
    color: var(--active-clr);
}

.footer-menu ul li a:hover {
    padding-left: 20px;
    color: var(--active-clr) !important;
}

.copyright {
    background-color: var(--footer-bg-clr2);
    color: var(--white-clr) !important;
}

.copyright a {
    color: #0757F7;
}

.social-link a {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    color: var(--white-clr);
    border: 1px solid var(--white-clr);
}

.social-link a:hover {
    background-color: #e4e4e4;
    color: var(--bnr-text-clr);
}

::selection {
    background: #0757F7;
    color: #fff;
}


/* Media Query */
@media (min-width: 1200px) {
    .container {
        max-width: 95% !important;
    }
}

@media only screen and (max-width: 768px) {
    #hero-slider .item {
    width: 95%;
    margin: 0 auto;
    padding: 30px 15px!IMPORTANT;
}
.slide-title {
    font-size: 30px!IMPORTANT;
    font-weight: var(--fw-400)!IMPORTANT;
}
.custom-btn {
    padding: 8px 16px!IMPORTANT;
    font-size: 15px!IMPORTANT;
}

.slider-btn{
    text-align: center;
}

.hero-slider-img img{
    height: 200px;
    object-fit: cover;
}

.smt-20{
    margin-top: 20px!important;
}

.smb-30{
    margin-bottom: 30px!important;
}

.text-container h2 {
    font-size: 30px;
    font-weight: var(--fw-400);
}

.text-container p {
    font-size: 15px;
}

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

#about-sec{
    padding: 30px 0;
}

#contact-sec{
    padding: 30px 0;
}

#contact-sec h2{
    text-align: center;
}

#gallery-sec{
    padding: 30px 0;
}

#t-footer{
    padding: 30px 0;
}

.t-footer-content-sec{
    flex-direction: column;
    text-align: center;
}

.s-text-container{
    margin-top: 0;
}

.brochure-tab {
    padding: 20px 10px;
    gap: 6px;
    transform: rotate(0deg);
}

.navbar-brand img {
    max-width: 110px;
}

.copyright{
    text-align: center;
}

.social-link{
    justify-content: center;
    margin-top: 20px;
}

#myBtn {
    display: none!important;
}

}

@media all and (min-width: 992px) {}

@media all and (min-width: 1440px) {}