/****** Theme CSS ****************/
/* Example for Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Utility classes for accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focusable:focus {
    width: auto;
    position: static;
    height: auto;
    clip: auto;
    white-space: normal;
    outline: 2px solid #149c4b;
    /* Visible focus outline */
    outline-offset: 2px;
}

/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    background-color: #fff;
    color: #555;
}

/* Accessible focus style for links and buttons */
a:focus,
button:focus {
    outline: 2px solid #149c4b;
    outline-offset: 2px;
}

/* Stylish Custom Scrollbar */
#scrollbar::-webkit-scrollbar {
    width: 8px;
}

#scrollbar::-webkit-scrollbar-track {
    background: #f3f3f3;
    border-radius: 10px;
}

#scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #315baa, #149c4b);
    border-radius: 10px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
}

    #scrollbar::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #ff6a5c, #ffb88c);
    }


/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.3;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
}

.fs-7,
.fs-7 > .btn {
    font-size: 14px !important;
}

/* Font Weights */
.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}

/***** Backgrounds and Button Backgrounds **********/

.bg-primary-gradient {
    background: url(../img/bg.svg);
    background-size: cover;
}

.bg-secondary-gradient {
    background: url(../img/bg1.svg);
    background-size: cover;
}

.bg-primary {
    background: #149c4b !important;
}

.bg-secondary {
    background: #315baa !important;
}

.bg-light {
    background: linear-gradient(to top, #ffffff, #e9e9e9) !important;
}

.text-dark-blue {
    color: #09193a !important;
}

.text-primary {
    color: #149c4b !important;
}

.text-secondary {
    color: #315baa !important;
}

.text-default {
    color: #eee;
}

.btn {
    font-family: "Roboto Slab", serif;
    font-weight: 500;
}

.btn-white {
    background: #fff !important;
    border: none !important;
    color: #149c4b !important;
}

    .btn-white:hover,
    .btn-white:focus {
        background: #149c4b !important;
        border: none !important;
        color: #fff !important;
    }

.btn-primary {
    background: #149c4b !important;
    border: none !important;
}

.btn-secondary {
    background: #315baa !important;
    border: none !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #315baa !important;
    border: none !important;
    outline: none;
    box-shadow: none;
    color: #fff !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #149c4b !important;
    border: none !important;
    color: #fff !important;
    outline: none;
    box-shadow: none;
}

.btn-warning:hover,
.btn-warning:focus {
    background: #fff !important;
    color: #315baa !important;
}

/* Active and Disabled States */
.btn-primary:active,
.btn-secondary:active {
    background: #333;
    border-color: #333;
    box-shadow: none;
}

.btn-primary:disabled,
.btn-primary.disabled,
.btn-secondary:disabled,
.btn-secondary.disabled {
    background: #333;
    border-color: #333;
    opacity: 0.65;
    cursor: not-allowed;
    box-shadow: none;
}

/*********************** Breadcrumb *********************/

.page-header {
    background: linear-gradient(rgb(0 0 0 / 85%), rgb(0 0 0 / 20%)), url(../img/banner-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #999999;
}

/*********************** Breadcrumb End *********************/

.glassy-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-in-out;
}

    .glassy-card:hover {
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
    }

.glassy-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.shake-icon {
    display: inline-block;
    animation: shake 1.5s infinite;
}

@keyframes shake {

    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-15deg);
    }
}


.animated.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
    height: 70px;
}

.header-logo {
    max-height: 70px;
    transition: transform 0.3s ease;
    position: relative;
}

.navbar .navbar-brand,
.navbar a.btn {
}

.navbar .navbar-nav .nav-link {
    margin-right: 27px;
    padding: 10px 0;
    font-weight: 500;
    outline: none;
    color: #2a6231;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #FBB040;
    }

.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: 5px 5px;
}

.navbar-toggler {
    color: #2a6231;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 15px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 127% !important;
        opacity: 0;
        padding: 10px 20px;
        visibility: hidden;
        transition: 0.5s;
        right: 0;
        border-radius: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Navbar End ***/

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 100px 15px;
    background: rgba(0, 0, 0, 0.4);
    transition: 0.5s ease;
}

.owl-carousel .owl-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.6;
}


.facility-card {
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

    .facility-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .facility-card .icon i {
        transition: 0.3s;
    }

    .facility-card:hover .icon i {
        transform: scale(1.1) rotate(5deg);
    }



.footer-link {
    color: #fff;
}

    .footer-link:hover {
        color: #ffc107;
    }


/* Responsive Media Queries */

/* Small Devices, Tablets */
@media (min-width: 768px) and (max-width: 991px) {

    .navbar-expand-lg {
        justify-content: end !important;
    }

    .navbar-nav {
        padding: 0 !important;
    }

    .navbar .navbar-nav .nav-link {
        border-bottom: 1px solid #eeeeee45;
        padding: 10px 30px !important;
        color: #fff !important;
    }

    .navbar-collapse {
        background: #149c4b;
    }

    .navbar-nav .dropdown-menu {
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .dropdown-item {
        padding: 10px 30px !important;
        border-bottom: 1px solid #eeeeee45;
        color: #fff;
        background: #0a452242;
    }
}

/* Small Devices, Phones */
@media (max-width: 767px) {

    .navbar-expand-lg {
        justify-content: end !important;
    }

    .navbar-nav {
        padding: 0 !important;
    }

    .navbar .navbar-nav .nav-link {
        border-bottom: 1px solid #eeeeee45;
        padding: 10px 30px !important;
        color: #fff !important;
    }

    .navbar-collapse {
        background: #149c4b;
    }

    .navbar-nav .dropdown-menu {
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .dropdown-item {
        padding: 10px 30px !important;
        border-bottom: 1px solid #eeeeee45;
        color: #fff;
        background: #0a452242;
    }
}

/* Extra Small Devices, Phones */
@media (max-width: 479px) {

    .navbar-expand-lg {
        justify-content: end !important;
    }

    .navbar-nav {
        padding: 0 !important;
    }

    .navbar .navbar-nav .nav-link {
        border-bottom: 1px solid #eeeeee45;
        padding: 10px 30px !important;
        color: #fff !important;
    }

    .navbar-collapse {
        background: #149c4b;
    }

    .navbar-nav .dropdown-menu {
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .dropdown-item {
        padding: 10px 30px !important;
        border-bottom: 1px solid #eeeeee45;
        color: #fff;
        background: #0a452242;
    }
}

/* Custom, iPhone Retina */
@media (max-width: 320px) and (max-width: 478px) {
    /* Additional adjustments if needed */
}

/* Banner Image Slider */
.header-carousel .owl-carousel-item img {
    height: 650px;
    object-fit: cover;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* background color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    #preloader .preloader-inner img {
        width: 80px; /* Adjust size */
        height: auto;
    }

    #preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }
