    
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            body {
                font-family: 'Poppins', sans-serif;
                line-height: 1.6;
                overflow-x: hidden;
            }

            /* Custom CSS Variables */
            :root {
                --primary-color: #2c5aa0;
                --secondary-color: #0011f8;
                --accent-color: #2740ae;
                --text-dark: #2c3e50;
                --text-light: #7f8c8d;
                --bg-light: #f8f9fa;
            }

            /* Header Styles */
            .navbar {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                box-shadow: 0 2px 20px rgba(0,0,0,0.1);
                transition: all 0.3s ease;
            }

            .navbar-brand {
                font-weight: 700;
                font-size: 1.5rem;
                color: var(--primary-color) !important;
            }

            .nav-link {
                font-weight: 500;
                color: var(--text-dark) !important;
                transition: color 0.3s ease;
            }

            .nav-link:hover {
                color: var(--primary-color) !important;
            }

            .btn-primary {
                background: var(--primary-color);
                border: none;
                padding: 12px 30px;
                border-radius: 50px;
                font-weight: 600;
                transition: all 0.3s ease;
            }

            .btn-primary:hover {
                background: #1e3d6f;
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
            }

         
.carousel-caption {
  position: absolute;
  top: 42%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 600px;
  text-align: left;
}

.carousel-caption h1,
.carousel-caption p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.price-tag {
  background: rgba(255, 193, 7, 0.9);
  color: #000;
  font-weight: 600;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 4px;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
  .carousel-caption {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }
  .carousel-caption h1 {
    font-size: 1.6rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
  .carousel-caption .btn {
    width: 100%;
    max-width: 300px;
    margin: 5px auto;
  }
  .carousel-caption .d-flex {
    flex-direction: column;
    align-items: center;
  }
}

 
 
 

            /* Section Styles */
            .section-padding {
                padding: 80px 0;
            }

            .section-title {
                text-align: center;
                margin-bottom: 60px;
            }

            .section-title h2 {
                font-size: 2.5rem;
                font-weight: 700;
                color: var(--text-dark);
                margin-bottom: 15px;
            }

            .section-title p {
                font-size: 1.1rem;
                color: var(--text-light);
                max-width: 600px;
                margin: 0 auto;
            }

            /* Highlights Section */
            .highlight-card {
                background: white;
                border-radius: 20px;
                padding: 40px 30px;
                text-align: center;
                box-shadow: 0 10px 40px rgba(0,0,0,0.1);
                transition: all 0.3s ease;
                height: 100%;
                border: 1px solid rgba(0,0,0,0.05);
            }

            .highlight-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            }

            .highlight-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 25px;
                color: white;
                font-size: 2rem;
            }

            .highlight-card h4 {
                font-size: 1.3rem;
                font-weight: 600;
                
                margin-bottom: 15px;
            }

            .highlight-card p {
                
                font-size: 0.95rem;
            }

            /* Floor Plans Section */
            .floor-plan-card {
                background: white;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 10px 40px rgba(0,0,0,0.1);
                transition: all 0.3s ease;
                margin-bottom: 30px;
            }

            .floor-plan-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            }

            .floor-plan-image {
                position: relative;
                overflow: hidden;
            
            }

            .floor-plan-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
                cursor: pointer;
            }

            .floor-plan-card:hover .floor-plan-image img {
                transform: scale(1.05);
            }

            .plan-overlay {
                position: absolute;
                top: 15px;
                right: 15px;
                background: var(--primary-color);
                color: white;
                padding: 8px 15px;
                border-radius: 20px;
                font-size: 0.9rem;
                font-weight: 600;
            }

            .floor-plan-info {
                padding: 25px;
            }

            .floor-plan-info h5 {
                font-size: 1.2rem;
                font-weight: 600;
                color: var(--text-dark);
                margin-bottom: 10px;
            }

            .floor-plan-info p {
                color: var(--text-light);
                margin-bottom: 15px;
            }

            .plan-features {
                display: flex;
                justify-content: space-between;
                margin-top: 15px;
            }

            .plan-feature {
                text-align: center;
            }

            .plan-feature i {
                color: var(--primary-color);
                font-size: 1.2rem;
                margin-bottom: 5px;
            }

            .plan-feature small {
                display: block;
                color: var(--text-light);
                font-size: 0.85rem;
            }

            /* Gallery Section */
            .gallery-item {
                position: relative;
                overflow: hidden;
                border-radius: 15px;
                margin-bottom: 30px;
                cursor: pointer;
            }

            .gallery-item img {
                width: 100%;
                height: 300px;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .gallery-item:hover img {
                transform: scale(1.1);
            }

            .gallery-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(44, 90, 160, 0.8);
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: all 0.3s ease;
            }

            .gallery-item:hover .gallery-overlay {
                opacity: 1;
            }

            .gallery-overlay i {
                color: white;
                font-size: 3rem;
            }

            /* Contact Section */
            .contact-form {
                background: white;
                padding: 50px;
                border-radius: 20px;
                box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            }

            .form-control {
                border: 2px solid #e9ecef;
                border-radius: 10px;
                padding: 15px 20px;
                font-size: 1rem;
                transition: all 0.3s ease;
            }

            .form-control:focus {
                border-color: var(--primary-color);
                box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
            }

            .contact-info {
                background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
                color: white;
                padding: 50px;
                border-radius: 20px;
                height: 100%;
            }

            .contact-item {
                display: flex;
                align-items: center;
                margin-bottom: 30px;
            }

            .contact-item i {
                width: 50px;
                height: 50px;
                background: rgba(255,255,255,0.2);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 20px;
                font-size: 1.2rem;
            }

            /* Footer */
            .footer {
                background: var(--text-dark);
                color: white;
                padding: 60px 0 30px;
            }

            .footer h5 {
                font-weight: 600;
                margin-bottom: 25px;
                color: white;
            }

            .footer p, .footer a {
                color: rgba(255,255,255,0.8);
                text-decoration: none;
                transition: color 0.3s ease;
            }

            .footer a:hover {
                color: white;
            }

            .footer-bottom {
                border-top: 1px solid rgba(255,255,255,0.1);
                margin-top: 40px;
                padding-top: 30px;
                text-align: center;
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .hero h1 {
                    font-size: 2.5rem;
                }
                
                .hero p {
                    font-size: 1.1rem;
                }
                
                .section-title h2 {
                    font-size: 2rem;
                }
                
                .contact-form, .contact-info {
                    padding: 30px;
                }
                
                .highlight-card {
                    padding: 30px 20px;
                }
            }

            /* Animations */
            .fade-in {
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.6s ease;
            }

            .fade-in.visible {
                opacity: 1;
                transform: translateY(0);
            }

            /* Floating Action Button */
            .fab {
                position: fixed;
                bottom: 30px;
                right: 30px;
                width: 60px;
                height: 60px;
                background: var(--secondary-color);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                box-shadow: 0 8px 25px rgba(248, 181, 0, 0.3);
                z-index: 1000;
                transition: all 0.3s ease;
            }

            .fab:hover {
                transform: scale(1.1);
                box-shadow: 0 12px 35px rgba(248, 181, 0, 0.4);
            }

            /* Loading Animation */
            .loader {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: white;
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 9999;
                opacity: 1;
                transition: opacity 0.5s ease;
            }

            .loader.fade-out {
                opacity: 0;
                pointer-events: none;
            }

            .loader-spinner {
                width: 50px;
                height: 50px;
                border: 5px solid #f3f3f3;
                border-top: 5px solid var(--primary-color);
                border-radius: 50%;
                animation: spin 1s linear infinite;
            }

            @keyframes spin {
                0% { transform: rotate(0deg); }
                100% { transform: rotate(360deg); }
            }
    

            .highlight-card {
        background: linear-gradient(135deg, #000000d0, #2c2c2cd0);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(6px);
        padding: 25px 15px;
        border-radius: 12px;
        color: white;
        transition: all 0.3s ease;
    }

    .highlight-card i {
        font-size: 32px;
        color: #ffb400;
        margin-bottom: 10px;
    }

    .highlight-card h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #ffb400;
    }

    .highlight-card p {
        font-size: 14px;
        margin: 0;
        color: #ddd;
    }

    .highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
    }



    .blurred-img {
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transition: filter 0.3s ease;
    pointer-events: none; /* prevents bypassing blur */
  }
  .floor-plan-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
 /* Table Container */
.table-responsive {
  border-radius: 12px;
  overflow-x: auto;
}

/* Header Style */
.table thead {
  background: linear-gradient(90deg, #0e005e, #080079);
  color: #f8f9fa;
  font-weight: 600;
  text-transform: uppercase;
}

/* Table Row Styling */
.table tbody tr:hover {
  background-color: #fff8e1;
  transition: 0.3s ease-in-out;
}

/* Highlighted Price */
.highlight {
  color: #ffc107 !important;
  font-weight: 700;
}

/* Buttons */
.table .btn {
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.table .btn:hover {
  background-color: #ffc107;
  color: #000;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .table-responsive {
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  .table thead {
    font-size: 0.85rem;
  }
  .table tbody td {
    font-size: 0.9rem;
    padding: 10px 6px;
  }
  .table .btn {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
}

   
    .btn {
      display: inline-block;
      padding: 8px 16px;
      border-radius: 20px;
      background: #fff;
      border: 2px solid #056d66;
      color: #056d66;
      font-size: 14px;
      font-weight: bold;
      text-decoration: none;
      transition: 0.3s ease;
    }
    .btn:hover {
      background: #056d66;
      color: #fff;
    }
    .highlight {
      font-weight: bold;
      color: #056d66;
    }

      .custom-form {
        background: #fff;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }
    .custom-form .form-label {
        font-weight: 600;
        margin-bottom: 6px;
    }
    .input-group-text {
        background-color: #f8f9fa;
        border-right: 0;
    }
    .form-control {
        border-left: 0;
    }
    .form-control:focus {
        box-shadow: none;
        border-color: #f0ad4e;
    }
    .btn-warning {
        font-weight: 600;
        border-radius: 8px;
        transition: 0.3s;
    }
    .btn-warning:hover {
        background-color: #e69500;
        color: #fff;
    }