* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}


.navbar-top {
    height: 60px;
    width: 100%;
    background-color: #353535;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.navbar-top ul li {
    gap: 10px;
}

.navbar-top ul li a {
    text-decoration: none;
    color: white;
}

.navbar-top ul {
    gap: 20px;
    align-items: center;
}

.navbar-top ul li img {
    width: 16px;
    height: 16px;
}

.btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-top-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #00aaff;
    transform: scale(1.1);
}

.btn-primary {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #0056b3;
}

.navbar {
    background: #ffffff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo img {
    width: 120px;
    font-size: 1rem;
    font-weight: bold;
    color: #333;


}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
    align-items: flex-start;
    text-align: left;
}

.logo-text h2,
.logo-text .affiliation-text,
.logo-text .senior-secondary-text {
    text-align: left;
    align-self: flex-start;
}

.logo h2 {
    font-family: 'Playfair Display', 'Merriweather', 'Poppins', serif;
    font-weight: 700;
    font-size: 2.1rem;
    color: #2c3e50;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.1;
}

.affiliation-text {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.senior-secondary-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-weight: 600;
}

.nav-link:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/home-bg.jpg');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/home-bg-2.JPG');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/home-bg-3.jpg');
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 6rem 2rem 2rem;
    background-color: #f8f9fa;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Prospectus Section Styles */
.prospectus-section {
    padding: 8rem 2rem 2rem;
    background-color: #fff;
}

.prospectus-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prospectus-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    font-size: 2.5rem;
}

.prospectus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.prospectus-item {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.prospectus-item:hover {
    transform: translateY(-5px);
}

.prospectus-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: #f1f1f1;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.modal-caption {
    margin: 1rem auto;
    display: block;
    width: 80%;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-prev {
    left: 1rem;
}

.modal-next {
    right: 1rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .modal-prev,
    .modal-next {
        padding: 0.5rem;
        font-size: 1.2rem;
    }

    .navbar-top {
        flex-direction: column;
        height: auto;
        padding: 15px 10px;
        gap: 10px;
    }

    .navbar-top-right {
        order: 2;
    }

    .navbar-top ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .navbar-top ul li {
        justify-content: center;
        width: 100%;
    }

    .navbar-top ul li a {
        font-size: 14px;
    }

    .btns {
        width: 100%;
        justify-content: center;
    }

    .btn-primary {
        width: 100%;
        max-width: 200px;
        padding: 10px;
        font-size: 13px;
    }

    /* Logo mobile responsiveness */
    .logo h2 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .affiliation-text {
        font-size: 0.75rem;
    }

    .senior-secondary-text {
        font-size: 0.7rem;
    }

    .logo img {
        width: 80px;
    }

    .logo-text {
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .navbar-top {
        padding: 10px 5px;
    }

    .navbar-top ul li a {
        font-size: 12px;
    }

    .btn-primary {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Logo responsiveness for very small screens */
    .logo h2 {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .affiliation-text {
        font-size: 0.7rem;
    }

    .senior-secondary-text {
        font-size: 0.65rem;
    }

    .logo img {
        width: 70px;
    }

    .logo-text {
        margin-left: 6px;
    }
}

@media (max-width: 400px) {
    .logo h2 {
        font-size: 1.2rem;
        letter-spacing: 0.3px;
    }

    .affiliation-text {
        font-size: 0.65rem;
    }

    .senior-secondary-text {
        font-size: 0.6rem;
    }

    .logo img {
        width: 60px;
    }

    .logo-text {
        margin-left: 4px;
    }
}

/* Main Navbar with Icons and Dropdowns - Updated for smaller items and mobile responsiveness */
.main-navbar {
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    z-index: 100;
    padding: 0;
    position: relative;
}

.main-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin: 0 10px 0 0;
    z-index: 201;
}

.main-hamburger .bar {
    width: 24px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.main-hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.main-hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.main-hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.main-nav-menu {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: all 0.3s;
}

.main-nav-menu .nav-item {
    position: relative;
    text-align: center;
    min-width: 60px;
    padding: 0 2px;
}

.nav-label {
    border-left: 1px solid black;
    padding: 0 5px;
}

.main-nav-menu .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 6px 2px 0 2px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.2s;
    position: relative;

}

.main-nav-menu .nav-link:hover,
.main-nav-menu .nav-item:hover>.nav-link {
    color: #e91e63;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.nav-icon img {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid #e0e0e0;
    object-fit: contain;
    transition: border-color 0.2s;
}

.main-nav-menu .nav-link:hover .nav-icon img,
.main-nav-menu .nav-item:hover>.nav-link .nav-icon img {
    border-color: #e91e63;
}

.nav-label {
    margin-top: 1px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* Dropdown styles */
.dropdown-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    min-width: 170px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 200;
    text-align: left;
    margin-top: 8px;
    font-size: 0.97rem;
    font-family: inherit;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 22px;
    color: #333;
    text-decoration: none;
    font-size: 0.97rem;
    font-family: inherit;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f3e5f5;
    color: #e91e63;
}

.nav-item:hover>.dropdown-menu,
.nav-item:focus-within>.dropdown-menu {
    display: block;
}

/* Responsive styles */
@media (max-width: 900px) {
    .main-nav-menu .nav-item {
        min-width: 48px;
        font-size: 0.7rem;
    }

    .nav-label {
        font-size: 0.7rem;
    }

    .nav-icon img {
        width: 26px;
        height: 26px;
        padding: 4px;
    }
}

@media (max-width: 700px) {
    .nav-item {
        margin: 0;
    }

    .main-navbar {
        padding: 0;
    }

    .main-hamburger {
        display: flex;
    }

    .main-nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
        border-radius: 0 0 12px 12px;
        z-index: 200;
        padding: 0;
    }

    .main-nav-menu.active {
        display: flex;
    }

    .main-nav-menu .nav-item {
        min-width: 100%;
        padding: 0;
        border-bottom: 1px solid #eee;
    }

    .main-nav-menu .nav-link {
        flex-direction: row;
        justify-content: flex-start;
        padding: 10px 16px;
        font-size: 1rem;
        text-align: left;
    }

    .nav-icon {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .dropdown-menu {
        position: static;
        left: 0;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        padding-left: 30px;
        font-size: 1rem;
    }

    .dropdown-menu a {
        padding: 12px 10px;
        font-size: 1rem;
    }

    .social-icon-img {
        width: 22px;
        height: 22px;
    }

    .hero {
        height: 45vh;
        min-height: 220px;
        max-height: 320px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 500px) {

    .nav-item {
        margin: 0;
    }

    .main-nav-menu .nav-item {
        min-width: 100%;
    }

    .nav-icon img {
        width: 18px;
        height: 18px;
        padding: 3px;
    }

    .nav-label {
        font-size: 0.65rem;
    }

    .social-icon-img {
        width: 18px;
        height: 18px;
    }
}

.site-footer {
    background: #101c22;
    color: #fff;
    padding: 24px 0 10px 0;
    text-align: center;
    border-top: 4px solid #0e3a47;
    margin-top: 60px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon img[alt="Address"] {
    width: 28px;
    height: 28px;
    filter: invert(38%) sepia(99%) saturate(7492%) hue-rotate(312deg) brightness(101%) contrast(101%);
    /* pink */
    margin-right: 6px;
}

.footer-icon img[alt="Phone"] {
    width: 28px;
    height: 28px;
    filter: invert(53%) sepia(99%) saturate(7492%) hue-rotate(170deg) brightness(101%) contrast(101%);
    /* blue */
    margin-right: 6px;
}

.footer-icon img[alt="Email"] {
    width: 28px;
    height: 28px;
    filter: invert(77%) sepia(99%) saturate(7492%) hue-rotate(1deg) brightness(101%) contrast(101%);
    /* yellow */
    margin-right: 6px;
}

.footer-copy {
    color: #b8c7ce;
    font-size: 0.98rem;
    margin-top: 6px;
}

@media (max-width: 700px) {
    .footer-row {
        flex-direction: column;
        gap: 10px;
        font-size: 0.98rem;
    }

    .footer-icon img {
        width: 22px;
        height: 22px;
    }
}

.social-icon-img {
    width: 28px;
    height: 28px;
    display: inline-block;
    object-fit: contain;
    transition: transform 0.3s;
}

.social-icon-img:hover {
    transform: scale(1.1);
}

/* Add after existing CSS */
@keyframes navItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 700px) {
    .main-nav-menu .nav-item {
        opacity: 0;
        transform: translateX(-40px);
        transition: none;
    }

    .main-nav-menu.active .nav-item.nav-item-animate {
        animation: navItemSlideIn 0.5s forwards;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 32vh;
        min-height: 120px;
        max-height: 180px;
    }

    .slide-content h1 {
        font-size: 1.1rem;
    }

    .slide-content p {
        font-size: 0.85rem;
    }
}

/* Virtual Tour Section Styles */
.virtual-tour-section {
    background: linear-gradient(135deg, #f8f9fa 60%, #e3e6f3 100%);
    padding: 3rem 0 2.5rem 0;
    margin: 0;
}

.virtual-tour-section .virtual-tour-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.virtual-tour-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    font-weight: 700;
    background: linear-gradient(90deg, #e91e63 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.virtual-tour-section .video-card {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(44, 62, 80, 0.10), 0 1.5px 6px rgba(233, 30, 99, 0.08);
    background: #fff;
    border: 2px solid #e3e6f3;
    margin: 0 auto;
    transition: box-shadow 0.3s;
}

.virtual-tour-section .video-card:hover {
    box-shadow: 0 12px 40px rgba(44, 62, 80, 0.18), 0 2px 8px rgba(233, 30, 99, 0.12);
}

.virtual-tour-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 18px;
}

@media (max-width: 700px) {
    .virtual-tour-section {
        padding: 2rem 0 1.5rem 0;
    }

    .virtual-tour-section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .virtual-tour-section .virtual-tour-container {
        padding: 0 0.2rem;
    }

    .virtual-tour-section .video-card {
        border-radius: 10px;
    }

    .virtual-tour-section iframe {
        border-radius: 10px;
    }
}

/* Contact/Email Section Styles */
.contact-section {
    background: linear-gradient(120deg, #f8f9fa 70%, #e3e6f3 100%);
    padding: 3rem 0 2.5rem 0;
}

.contact-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    font-weight: 700;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e3e6f3;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8f9fa;
    transition: border 0.2s;
    resize: none;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border: 1.5px solid #007bff;
    outline: none;
}

#contact-form button.btn-primary {
    width: 100%;
    padding: 0.9rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.contact-status {
    margin-top: 0.7rem;
    font-size: 1rem;
    min-height: 1.2em;
    color: #e91e63;
    font-weight: 500;
}

@media (max-width: 700px) {
    .contact-section {
        padding: 2rem 0 1.5rem 0;
    }

    .contact-container {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        border-radius: 10px;
    }

    .contact-section h2 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    #contact-form button.btn-primary {
        font-size: 1rem;
        padding: 0.7rem;
    }
}