
        :root {
            --primary-color: #0B1C30;
            --accent-color: #D4AF37;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

          /* Header */
        .navbar {
            background-color: var(--primary-color) !important;
            padding: 1rem 0;
        }

        .navbar-brand {
            color: white !important;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .main-logo {
            height: 100px;
            width: auto;
            object-fit: contain;
        }

        .navbar > .container {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
        }

        .navbar-toggler {
            margin-left: auto;
            order: 2;
        }

        .navbar-brand {
            order: 1;
            margin-right: auto;
        }

        .navbar-collapse {
            order: 3;
            flex-basis: 100%;
        }

        @media (max-width: 991px) {
            .navbar > .container {
                flex-wrap: wrap;
            }
            
            .navbar-collapse {
                width: 100%;
                margin-top: 1rem;
            }
        }

        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            margin: 0 1rem;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
        }


        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgb(0 0 0 / 56%), rgba(11, 28, 48, 0.7)), url(../images/1.webp) center / cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 200px 0 60px;
        }

        .hero-content h1 {
            color: white;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .hero-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .contact-form {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-form h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: bold;
        }

        .form-control {
            border-radius: 5px;
            padding: 0.75rem;
            margin-bottom: 1rem;
        }

        .btn-submit {
            background-color: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 5px;
            width: 100%;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .btn-submit:hover {
            background-color: #152d47;
        }

              /* Quick Info Section */
        .quick-info-section {
            background-color: white;
            padding: 3rem 0;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }

        .info-card {
            text-align: center;
            padding: 1.5rem;
            transition: transform 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
        }

        .info-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .info-card h5 {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .info-card p {
            color: #666;
            margin: 0;
            font-size: 0.95rem;
        }

        .price-highlight {
            background: linear-gradient(135deg, var(--primary-color), #1a3a5c);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
        }

        .price-highlight h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .price-highlight .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
        }

        @media (max-width: 768px) {
            .info-card {
                margin-bottom: 1.5rem;
            }
        }
        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .section-title {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 2rem;
            text-align: center;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
        }

        .gallery-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s;
            cursor: pointer;
        }

        .gallery-img:hover {
            transform: scale(1.05);
        }

        /* Specifications Table */
        .specs-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .specs-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .specs-table th {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem;
            font-weight: bold;
        }

        .specs-table td {
            padding: 1rem;
            border-bottom: 1px solid #dee2e6;
        }

        /* Amenities Section */
        .amenities-section {
            padding: 80px 0;
        }

        .amenity-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            height: 100%;
        }

        .amenity-card:hover {
            transform: translateY(-10px);
        }

        .amenity-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        /* Floor Plans Section */
        .floor-plans-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .floor-plan-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            background: white;
            border-radius: 10px;
            padding: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Location Section */
        .location-section {
            padding: 80px 0;
        }

        .map-container {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer h5 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: var(--accent-color);
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 1rem;
        }

        .social-icons a:hover {
            color: var(--accent-color);
        }

        /* Modal Styles */
        .modal-content {
            border-radius: 15px;
            border: none;
        }

        .modal-header {
            background-color: var(--primary-color);
            color: white;
            border-radius: 15px 15px 0 0;
            padding: 1.5rem;
        }

        .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }

        .modal-body {
            padding: 2rem;
        }

        .popup-form h3 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: bold;
        }
          /* CTA Section */
        .cta-section {
            background: url('../images/3.webp') center/cover;
            padding: 200px 0;
            position: relative;
            margin-bottom: 20px;
        }

        .cta-box {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-box h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .cta-box h4 {
            color: var(--accent-color);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .cta-box p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .cta-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(11, 28, 48, 0.3);
        }

        .cta-btn:hover {
            background-color: #152d47;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(11, 28, 48, 0.4);
        }

        @media (max-width: 768px) {
            .cta-box {
                padding: 2rem;
            }

            .cta-box h2 {
                font-size: 2rem;
            }

            .cta-box h4 {
                font-size: 1.1rem;
            }
        }
/* Optional: Add a class for clickable images and cursor style */
        .clickable-img {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .clickable-img:hover {
            transform: scale(1.02);
        }
        /* Style for the image inside the lightbox modal */
        #imageLightboxModal .modal-content {
            background-color: transparent;
            border: none;
        }
        #imageLightboxModal .modal-body {
            padding: 0;
            text-align: center;
        }
        #imageLightboxModal .modal-body img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }
        #imageLightboxModal .btn-close {
            filter: invert(1); /* Makes the close button white */
            opacity: 1;
        }
        #imageLightboxModal .modal-header {
            border-bottom: none;
        }
         /* Trust Section */
        .trust-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .trust-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .trust-header h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .trust-header p {
            color: #666;
            font-size: 1.1rem;
        }

        .trust-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .trust-card h4 {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--accent-color);
        }

        .trust-member {
            padding: 1rem 0;
            border-bottom: 1px solid #e9ecef;
        }

        .trust-member:last-child {
            border-bottom: none;
        }

        .member-role {
            color: var(--accent-color);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 0.3rem;
        }

        .member-name {
            color: var(--primary-color);
            font-size: 1.1rem;
            font-weight: 600;
        }

        .trustees-list {
            list-style: none;
            padding: 0;
        }

        .trustees-list li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            color: #555;
            font-size: 1.05rem;
        }

        .trustees-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .subcommittee-box {
            background: linear-gradient(135deg, var(--primary-color), #1a3a5c);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
        }

        .subcommittee-box h5 {
            color: var(--accent-color);
            font-weight: bold;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .subcommittee-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .subcommittee-box li {
            color: white;
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            font-size: 1.05rem;
        }

        .subcommittee-box li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-size: 1.5rem;
        }

        @media (max-width: 768px) {
            .trust-card {
                margin-bottom: 2rem;
            }
        }