html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.top-header {
    background: #0f766e;
    color: #fff;
    padding: 6px 0; /* 15px se kam */
    font-size: 14px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

    .social-links span {
        margin-right: 8px;
        font-size: 14px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        background: #f59e0b;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-decoration: none;
        font-size: 14px;
        border: 1px solid white;
    }

.header-info {
    display: flex;
    align-items: center;
    gap: 6px;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 10px;
}

    .header-info i {
        color: #fbbf24;
        font-size: 15px;
    }
.contact-card {
    background: #f8f9fa;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.icon-box {
    width: 70px;
    height: 70px;
    margin: auto;
    background: #0f766e; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-box i {
        color: white;
        font-size: 28px;
    }

.contact-card h5 {
    margin-top: 10px;
    font-weight: 600;
}

.contact-card p {
    color: #555;
    font-size: 14px;
}
.footer {
    position: relative;
    background-image: url('/img/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

    .footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 50, 60, 0.7); 
    }

    .footer * {
        position: relative;
        z-index: 2;
    }
.navbar .navbar-nav .nav-link {
    font-weight: 700 !important;
}
.navbar .dropdown-menu {
    background: #0f766e;
    border-radius: 8px;
    padding: 10px 0;
}

.navbar .dropdown-item {
    color: #fff;
    padding: 10px 20px;
    transition: 0.3s;
}

    .navbar .dropdown-item:hover {
        background: #0f766e;
        padding-left: 25px;
    }
    .navbar .dropdown-item::before {
        content: "//";
        margin-right: 10px;
        color: #a3f7bf;
        font-weight: 300;
        font-size: 12px;
        opacity: 0.7;
    }

    .navbar .dropdown-item:hover::before {
        margin-right: 15px; 
    }
/* Full page spacing */
.enquiry-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px;
    background: #f5f7fb;
}

/* Card design */
.enquiry-card {
    width: 100%;
    max-width: 900px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    /* Hover effect (premium feel) */
    .enquiry-card:hover {
        transform: translateY(-5px);
    }

    /* Inputs styling */
    .enquiry-card .form-control {
        border-radius: 8px;
        padding: 10px;
        border: 1px solid #ddd;
    }

        .enquiry-card .form-control:focus {
            border-color: #198754;
            box-shadow: 0 0 5px rgba(25,135,84,0.3);
        }

    /* Labels */
    .enquiry-card label {
        font-weight: 600;
        margin-bottom: 5px;
    }

    /* Button */
    .enquiry-card .btn {
        border-radius: 30px;
        font-weight: 600;
    }
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #1f7a6d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* BOOK */
.book {
    position: relative;
    width: 90px;
    height: 60px;
}

    /* LEFT PAGE */
    .book::before {
        content: "";
        position: absolute;
        width: 45px;
        height: 60px;
        background: #c49a2c;
        border: 4px solid #fff;
        left: 0;
        transform-origin: right;
        animation: flipLeft 1.5s infinite;
    }

    /* RIGHT PAGE */
    .book::after {
        content: "";
        position: absolute;
        width: 45px;
        height: 60px;
        border: 4px solid #fff;
        right: 0;
    }

/* ANIMATION */
@keyframes flipLeft {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(-180deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}
.footer-logo img {
    width: 100px;
    margin-bottom: 10px;
}
.footer-link {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    transition: 0.3s;
}

    .footer-link::before {
        content: "›";
        margin-right: 10px;
    }

    .footer-link:hover {
        color: #fff;
        padding-left: 5px;
    }
.stats-section {
    position: relative;
    background: url('/img/icon.png') center center no-repeat;
    background-size: cover;
    background-attachment: fixed; 
    padding: 55px 0;
    overflow: hidden;
    color: #fff;
}

    .stats-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(15, 118, 110, 0.75); 
    }

    .stats-section .container {
        position: relative;
        z-index: 2;
    }

.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    /* Content top */
    .stats-section .container {
        position: relative;
        z-index: 10;
    }

/* Vertical Border */
.stat-box {
    border-right: 1px solid rgba(255,255,255,.2);
    padding: 20px;
}

    .stat-box:last-child {
        border-right: none;
    }

.icon {
    font-size: 55px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));

    .stat-box:hover .icon {
        transform: translateY(-8px);
        color: #ffd700;
    }

    .stat-box h2 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.1;
    }

    .stat-box h4 {
        font-size: 18px;
        margin: 0;
    }
    /* ------------------ */
    /* Moving Stars */
    /* ------------------ */

    .particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }

        .particles span {
            position: absolute;
            display: block;
            width: 5px;
            height: 5px;
            background: rgba(255,255,255,.9);
            border-radius: 50%;
            animation: animate 18s linear infinite;
        }
            /* Different positions */

            .particles span:nth-child(1) {
                left: 5%;
                animation-duration: 12s;
                animation-delay: 0s;
                top: 100%;
            }

            .particles span:nth-child(2) {
                left: 15%;
                animation-duration: 18s;
                animation-delay: 2s;
                top: 100%;
            }

            .particles span:nth-child(3) {
                left: 25%;
                animation-duration: 15s;
                animation-delay: 1s;
                top: 100%;
            }

            .particles span:nth-child(4) {
                left: 35%;
                animation-duration: 20s;
                animation-delay: 3s;
                top: 100%;
            }

            .particles span:nth-child(5) {
                left: 45%;
                animation-duration: 13s;
                animation-delay: 2s;
                top: 100%;
            }

            .particles span:nth-child(6) {
                left: 55%;
                animation-duration: 17s;
                animation-delay: 1s;
                top: 100%;
            }

            .particles span:nth-child(7) {
                left: 65%;
                animation-duration: 22s;
                animation-delay: 4s;
                top: 100%;
            }

            .particles span:nth-child(8) {
                left: 75%;
                animation-duration: 14s;
                animation-delay: 2s;
                top: 100%;
            }

            .particles span:nth-child(9) {
                left: 85%;
                animation-duration: 19s;
                animation-delay: 1s;
                top: 100%;
            }

            .particles span:nth-child(10) {
                left: 95%;
                animation-duration: 16s;
                animation-delay: 3s;
                top: 100%;
            }

            .particles span:nth-child(11) {
                left: 10%;
                animation-duration: 21s;
                animation-delay: 5s;
                top: 100%;
            }

            .particles span:nth-child(12) {
                left: 30%;
                animation-duration: 15s;
                animation-delay: 2s;
                top: 100%;
            }

            .particles span:nth-child(13) {
                left: 50%;
                animation-duration: 12s;
                animation-delay: 1s;
                top: 100%;
            }

            .particles span:nth-child(14) {
                left: 70%;
                animation-duration: 17s;
                animation-delay: 3s;
                top: 100%;
            }

            .particles span:nth-child(15) {
                left: 90%;
                animation-duration: 14s;
                animation-delay: 2s;
                top: 100%;
            }

            .particles span:nth-child(16) {
                left: 20%;
                animation-duration: 19s;
                animation-delay: 1s;
                top: 100%;
            }

            .particles span:nth-child(17) {
                left: 40%;
                animation-duration: 15s;
                animation-delay: 4s;
                top: 100%;
            }

            .particles span:nth-child(18) {
                left: 60%;
                animation-duration: 18s;
                animation-delay: 3s;
                top: 100%;
            }

            .particles span:nth-child(19) {
                left: 80%;
                animation-duration: 13s;
                animation-delay: 2s;
                top: 100%;
            }

            .particles span:nth-child(20) {
                left: 98%;
                animation-duration: 20s;
                animation-delay: 1s;
                top: 100%;
            }

    @keyframes animate {

        0% {
            transform: translateY(0) scale(1);
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        80% {
            opacity: 1;
        }

        100% {
            transform: translateY(-900px) scale(1.8);
            opacity: 0;
        }
    }
    /* Mobile */

    @media(max-width:768px) {

        .stat-box {
            padding: 15px 20px;
            border-right: 1px solid rgba(255,255,255,.2);
        }

            .stat-box:last-child {
                border-bottom: none;
            }

            .stat-box h2 {
                font-size: 50px;
            }
    }

    .facility-card {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        transition: 0.3s;
        background: #fff;
    }

        .facility-card:hover {
            transform: translateY(-5px);
        }

    .facility-img img {
        width: 100%;
    }

    .facility-body h5 {
        font-weight: 600;
    }
}
/* Privacy Section */
.privacy-section {
    background: #f5f7fa;
    padding: 60px 15px;
    min-height: 100vh;
}

/* Card */
.privacy-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

    /* Heading */
    .privacy-card h1 {
        font-size: 42px;
        font-weight: 700;
        color: #1f355e;
        margin-bottom: 25px;
        font-family: Georgia, serif;
    }

    /* Sub Heading */
    .privacy-card h3 {
        font-size: 24px;
        color: #1f355e;
        margin-top: 25px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    /* Paragraph */
    .privacy-card p {
        font-size: 17px;
        line-height: 1.9;
        color: #555;
        margin-bottom: 15px;
    }
.footer {
    padding-top: 50px;
    padding-bottom: 20px;
}

    .footer h4 {
        margin-bottom: 25px;
    }

    .footer p,
    .footer a {
        line-height: 1.8;
    }

    .footer .footer-link {
        display: block;
        color: #ffffff;
        text-decoration: none;
        margin-bottom: 12px;
        transition: 0.3s;
    }

        .footer .footer-link:hover {
            color: #0d6efd;
            padding-left: 5px;
        }

    .footer .btn-social {
        margin-right: 10px;
    }

    .footer img {
        max-width: 100%;
        height: auto;
    }
.footer {
    padding: 50px 0 20px;
}

    .footer h4 {
        margin-bottom: 30px;
    }

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

    .footer-link:hover {
        color: #0d6efd;
        padding-left: 5px;
    }

.footer .img-fluid {
    height: 80px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}