
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden; /* Added to prevent horizontal scroll */
        }

        body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw; /* Prevent body from exceeding viewport width */
        }

        section {
            padding: 80px 0;
            width: 100%;
            max-width: 100vw; /* Prevent sections from exceeding viewport width */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%; /* Ensure container takes full width */
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            color: #333;
        }

        p {
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }

        /* Header Styles - Base/Desktop */
        hr{
            height: 4px;
            background-color: #ff5722;
            width: 100%;
            border: none;
        }
        
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            max-width: 100vw; /* Prevent header from exceeding viewport */
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 75px;
            width: 75px;
            margin-right: 10px;
        }

        .logo h1 {
            color: #990024;
            font-size: 1.5rem;
            margin-top: 0;
        }

        nav {
            position: relative;
        }

        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 800;
            font-size: large;
            transition: color 0.3s;
            padding: 10px 5px;
        }

        nav ul li a:hover {
            color: #990024;
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            padding: 10px;
            color: #333;
            background: none;
            border: none;
        }

        .burger-menu:hover {
            color: #990024;
        }

        /* Home Section */
        #home {
            height: 100vh;
            position: relative;
            overflow: hidden;
            perspective: 1200px;
            margin-bottom: 0;
            padding-bottom: 0;
            padding-top: 50px;
            width: 100%;
            max-width: 100vw;
        }

        .slider-3d {
            height: 100%;
            width: 100%;
            position: relative;
        }

        .slider-container {
            height: 100%;
            width: 100%;
            position: relative;
            transform-style: preserve-3d;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 5%;
            opacity: 0;
            transform: translateZ(-500px) rotateY(30deg);
            transition: all 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
            z-index: 1;
            text-align: center;
        }

        .slide.active {
            opacity: 1;
            transform: translateZ(0) rotateY(0deg);
            z-index: 2;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
        }

        .hero-content {
            position: relative;
            max-width: 800px;
            color: #fff;
            z-index: 2;
            text-align: center;
            width: 100%;
        }

        .animate-text {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.5s ease;
            transition-delay: 0.3s;
        }

        .slide.active .animate-text {
            opacity: 1;
            transform: translateX(0);
        }

        .slide.active h2.animate-text {
            transition-delay: 0.5s;
        }

        .slide.active p.animate-text {
            transition-delay: 0.8s;
        }

        .slide.active .btn.animate-text {
            transition-delay: 1.1s;
        }

        .hero-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #fff;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #990022;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .btn:hover {
            background-color: #660015;
        }

        .slider-navigation {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }

        .slider-nav-btn {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            margin: 0 8px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
        }

        .slider-nav-btn.active {
            background-color: #fff;
            transform: scale(1.3);
        }

        .slider-arrows {
            position: absolute;
            width: 100%;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            z-index: 10;
            padding: 0 20px;
        }

        .arrow {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .arrow:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }
        /* .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 ; 
        } */

        /* About Us Section */
#about {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

#about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #990022;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    animation: fadeInUp 1s ease-in;
}

.about-image {
    flex: 1 1 40%;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1 1 50%;
    max-width: 600px;
}

.about-content h3 {
    font-size: 1.8rem;
    color: #990022;
    margin-bottom: 10px;
}

.about-content p,
.about-content li {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.tab-navigation {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    background-color: #eee;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.tab-btn.active {
    background-color: #990022;
    color: white;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}


.content-section.active {
    display: block;
}

.why-choose-list {
    list-style-type: disc;
    padding-left: 20px;
}

.why-choose-list li {
    text-align: justify;
    margin-bottom: 10px;
}



/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content p,
    .about-content li {
        text-align: center;
    }

    .tab-navigation {
        justify-content: center;
    }
}

        /* Facilities Section */
        #facilities {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img-pg/about.jpg') center/cover fixed;
            color: #fff;
            width: 100%;
            max-width: 100vw;
        }

        #facilities h2 {
            color: #fff;
        }

        .facilities-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
            width: 100%;
        }

        .facility-item {
            text-align: center;
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: transform 0.3s;
            opacity: 0;
            transform: translateY(30px);
        }

        .facility-item.animate {
            animation: fadeUp 0.5s forwards;
        }

        .facility-item:hover {
            transform: translateY(-10px);
        }

        .facility-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: #990024;
        }

        .facility-item h3 {
            margin-bottom: 15px;
            color: #fff;
        }

        .facility-item p {
            color: #ddd;
        }

        /* Services Section */
        .services-section {
            min-height: 100vh;
            padding: 50px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-image: url('https://via.placeholder.com/1920x1080/003b6f/003b6f');
            background-size: cover;
            background-position: center;
            position: relative;
            width: 100%;
            max-width: 100vw;
        }

        .section-title {
            color: #ffffff;
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }

        .section-title::after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            margin: 15px auto 30px;
        }

        .section-description {
            color: #ffffff;
            text-align: center;
            max-width: 900px;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .amenities-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            opacity: 0;
            transform: translateX(-100px);
            transition: all 0.8s ease;
            width: 100%;
        }

        .amenities-container.active {
            opacity: 1;
            transform: translateX(0);
        }

        .amenity-item {
            width: 300px;
            max-width: calc(100% - 30px); /* Prevent overflow on small screens */
            background-color: #ffffff;
            border-radius: 8px;
            margin: 15px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .amenity-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .amenity-icon {
            font-size: 36px;
            color: #003b6f;
            margin-bottom: 15px;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: #f0f7ff;
            transition: all 0.3s ease;
        }

        .amenity-item:hover .amenity-icon {
            background-color: #ff6600;
            color: #ffffff;
            transform: scale(0.8);
        }

        .amenity-title {
            font-size: 18px;
            font-weight: bold;
            color: #990024;
            margin-bottom: 10px;
        }

        .amenity-status {
            font-size: 14px;
            color: #666;
        }

        .amenity-detail {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ff6600;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
            opacity: 0;
            transform: translateY(100%);
            transition: all 0.4s ease;
        }

        .amenity-item:hover .amenity-detail {
            opacity: 1;
            transform: translateY(0);
        }

        .detail-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .detail-text {
            font-size: 14px;
            line-height: 1.6;
            color: black;
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #990024;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            z-index: 9999;
        }

        .back-to-top:hover {
            background-color: #660015;
        }

        /* Gallery Section */
        #gallery {
            background-color: #fff;
            width: 100%;
            max-width: 100vw;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            width: 100%;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            opacity: 0;
            transform: scale(0.8);
            cursor: pointer;
        }

        .gallery-item.animate {
            animation: zoomIn 0.5s forwards;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            overflow: auto;
        }

        .lightbox-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 20px;
        }

        .lightbox-img {
            max-width: 90%;
            max-height: 80vh;
            object-fit: contain;
        }

        .caption {
            color: #fff;
            text-align: center;
            padding: 10px 0;
            font-size: 1.2em;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        .close-btn:hover {
            color: #bbb;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            padding: 16px;
            user-select: none;
            transform: translateY(-50%);
            transition: 0.3s;
        }

        .nav-btn:hover {
            color: #bbb;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .prev-btn {
            left: 0;
            border-radius: 0 5px 5px 0;
        }

        .next-btn {
            right: 0;
            border-radius: 5px 0 0 5px;
        }

        /* Contact Section */
        #contact {
            background-color: #f9f9f9;
            width: 100%;
            max-width: 100vw;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            width: 100%;
        }

        .contact-info {
            opacity: 0;
            transform: translateX(-30px);
        }

        .contact-info.animate {
            animation: slideRight 1s forwards;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #333;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-icon {
            margin-right: 15px;
            min-width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #990024;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
        }

        .contact-form {
            opacity: 0;
            transform: translateX(30px);
        }

        .contact-form.animate {
            animation: slideLeft 1s forwards;
        }

        .map-container {
            height: 400px;
            margin-top: 50px;
            border-radius: 10px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            width: 100%;
        }

        .map-container.animate {
            animation: fadeUp 1s forwards;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer */
        footer {
            background-color: #333;
            color: #fff;
            padding: 50px 0 20px;
            text-align: justify;
            justify-content: center;
            width: 100%;
            max-width: 100vw;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
            width: 100%;
        }

        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            color: #990024;
        }

        .footer-col p {
            color: white;
        }

        .footer-col h3::after {
            content: '';
            position: relative;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #990024;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #990024;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }

        /* Animations */
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Mobile Responsive Styles */
        @media (max-width: 991px) {
            .container {
                padding: 0 15px;
            }

            h2 {
                font-size: 2rem;
            }

            .hero-content h2 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .btn {
                padding: 10px 25px;
                font-size: 0.95rem;
            }

            .about-container {
                flex-direction: column;
            }

            .about-image {
                height: 250px;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .footer-col h3,
            .footer-col p,
            .footer-col ul li,
            .footer-col ul li a {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                padding: 10px 15px; /* Reduced padding */
                position: relative;
            }

            nav {
                width: 100%;
            }

            nav ul {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                background-color: #fff;
                position: relative;
                padding: 10px 0;
                box-shadow: none;
                display: none;
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                width: 100%;
                text-align: left;
                padding: 10px 0; /* Reduced padding */
                margin-left: 0; /* Remove left margin */
            }

            .burger-menu {
                display: block;
                position: absolute;
                top: 10px;
                right: 15px;
                z-index: 9999;
            }

            header {
                padding-bottom: 5px;
            }

            /* Ensure sections don't overflow */
            .slide {
                padding: 0 15px; /* Reduced padding */
            }

            .amenities-container {
                flex-direction: column;
                align-items: center;
                padding: 0 15px; /* Add padding */
            }

            .amenity-item {
                width: 100%;
                max-width: 350px;
                margin: 15px 0; /* Vertical margin only */
            }

            .gallery-container {
                grid-template-columns: 1fr;
                gap: 15px; /* Reduced gap */
            }

            .footer-container {
                grid-template-columns: 1fr;
                padding: 0 15px; /* Add padding */
            }
            
            .footer-col h3,
            .footer-col p,
            .footer-col ul li,
            .footer-col ul li a {
                text-align: center;
            }

            /* Tab navigation for mobile */
            .tab-navigation {
                flex-wrap: wrap;
                gap: 5px;
            }

            .tab-btn {
                font-size: 0.85rem;
                padding: 8px 10px;
                flex: 1 1 calc(50% - 2.5px); /* Two buttons per row */
                min-width: calc(50% - 2.5px);
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px; /* Further reduced padding */
            }

            .logo img {
                height: 50px;
                width: 50px;
            }

            .logo h1 {
                font-size: 1.2rem;
            }

            .btn {
                font-size: 0.85rem;
                padding: 8px 20px;
            }

            .hero-content h2 {
                font-size: 1.5rem;
            }

            .hero-content p {
                font-size: 0.85rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .slide {
                justify-content: center;
                align-items: center;
                padding: 0 10px; /* Further reduced padding */
            }

            .slider-nav-btn {
                width: 8px;
                height: 8px;
            }

            .arrow {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .tab-btn {
                padding: 6px 8px;
                font-size: 0.8rem;
                flex: 1 1 100%; /* Full width on very small screens */
                min-width: 100%;
            }

            .amenity-item {
                margin: 10px 0;
                padding: 20px;
            }

            .about-content {
                padding: 15px;
            }

            .content-section h3 {
                font-size: 1.5rem;
            }

            .content-section p {
                font-size: 1rem;
            }

            /* Ensure footer content is properly aligned */
            .footer-col h3,
            .footer-col p,
            .footer-col ul li,
            .footer-col ul li a {
                text-align: center;
            }
        }

        /* Additional fix for very small screens */
        @media (max-width: 320px) {
            .container {
                padding: 0 5px;
            }
        }

            












                                                  