   /* Main content wrapper */
 .content-wrapper {
            position: relative;
            z-index: 1;
            padding-bottom: 40px;
        }

        /* Facilities Section */
        .facilities-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: #2c3e50;
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
            animation: fadeIn 1s ease-in;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: #e63946;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .facilities-content {
            margin-bottom: 40px;
            font-size: 1.1rem;
            line-height: 1.8;
            animation: fadeIn 1.2s ease-in;
        }

        .facilities-content p {
            margin-bottom: 20px;
        }

        /* Virtual Tour Section */
        .tour-section {
            margin: 50px 0;
            animation: fadeIn 1.4s ease-in;
        }

        .tour-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .tour-title {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tour-title i {
            margin-right: 15px;
            color: #e63946;
        }

        .tour-description {
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Video Container */
        .video-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin: 0 auto;
            max-width: 900px;
            background: #000;
        }

        .video-player {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .video-container:hover .video-controls {
            opacity: 1;
        }

        .control-btn {
            background: #e63946;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            margin: 0 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .control-btn:hover {
            background: #c1121f;
            transform: scale(1.1);
        }

        /* Features Section */
        .features-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 50px 0;
            animation: fadeIn 1.6s ease-in;
        }

        .feature-card {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 4px solid #2c3e50;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #e63946;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #e63946;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #555;
            line-height: 1.6;
        }

        /* Highlight Box */
        .highlight-box {
            background: #f8f9fa;
            border-left: 4px solid #e63946;
            padding: 20px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
            animation: fadeIn 1.8s ease-in;
        }

        .highlight-box p {
            margin: 0;
            font-style: italic;
            color: #2c3e50;
            font-size: 1.2rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .features-section {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .content-wrapper {
                padding: 20px 3%;
            }
            
            .facilities-section {
                padding: 30px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .tour-title {
                font-size: 1.6rem;
            }
            
            .features-section {
                grid-template-columns: 1fr;
            }
            
            .control-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .content-wrapper {
                padding: 15px;
            }
            
            .facilities-section {
                padding: 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .tour-title {
                font-size: 1.4rem;
                flex-direction: column;
            }
            
            .tour-title i {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .feature-card {
                padding: 20px;
            }
            
            .video-controls {
                opacity: 1; /* Keep controls visible on mobile */
                padding: 10px;
            }
            
            .control-btn {
                width: 30px;
                height: 30px;
                font-size: 0.9rem;
                margin: 0 5px;
            }
        }