 /* <style> */
        :root {
            --primary: #1a3a5f;
            --secondary: #d4af37;
            --accent: #2c5aa0;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark);
            line-height: 1.7;
            background-color: #f5f7fa;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
  
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Floor Plans Section */
        .floor-plans-section {
            background-color: var(--light);
        }
        
        .floor-plans-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .floor-plan-column {
            position: relative;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .floor-plan-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            filter: blur(5px);
            margin-bottom: 25px;
        }
        
        .floor-plan-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            filter: blur(0);
        }
        
        .blue-image {
            filter: sepia(100%) hue-rotate(190deg) saturate(500%) brightness(0.8) blur(5px);
        }
        
        .floor-plan-image:hover.blue-image {
            filter: sepia(100%) hue-rotate(190deg) saturate(500%) brightness(0.8) blur(0);
        }
        
        .floor-plan-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
             filter: blur(3px);
        }
        
        .floor-plan-label {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 58, 95, 0.9);
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .view-plan-btn {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
            display: inline-block;
            width: 200px;
        }
        
        .view-plan-btn:hover {
            background-color: #c19b2a;
            border-color: #c19b2a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .floor-plan-info {
            margin-top: 15px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Modal Styles */
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
            border: none;
        }
        
        .modal-header {
            background-color: var(--primary);
            color: white;
            border-bottom: none;
        }
        
        .btn-close {
            background-color: white;
            border-radius: 50%;
        }
        
        /* Responsive adjustments for floor plans */
        @media (max-width: 991.98px) {
            .floor-plan-image {
                height: 350px;
            }
        }
        
        @media (max-width: 575.98px) {
            .floor-plan-image {
                height: 300px;
            }
              
            .section-padding{
                  padding: 50px 0;
                 }



        }


    /* </style> */