.form-popup-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      align-content: center;
      justify-content: center;
    }

    .form-popup-bg {
      position: fixed;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(94, 110, 141, 0.9);
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
      -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
      transition: opacity 0.3s 0s, visibility 0s 0.3s;
      overflow-y: auto;
      z-index: 10000;
    }

    .form-popup-bg.is-visible {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
      -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
      transition: opacity 0.3s 0s, visibility 0s 0s;
    }

    .form-container {
      background-color: #fdfdfd;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 466px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      padding: 28px;
      color: #000000;
    }

    .close-button {
      color: #000000;
      width: 40px;
      height: 40px;
      position: absolute;
      top: 18px;
      right: 12px;
      border: solid 2px #000000;
      place-content: center;
      display: flex;
      align-items: center;
      z-index: 99;
      background-color: transparent;
    }

    .form-popup-bg:before {
      content: '';
      background-color: #000000;
      opacity: 0.25;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }

    .popup_form {
      width: 100%;
      padding: .375rem .75rem;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      background: none;
      border: 1px solid #000000;
      outline: none;
      color: #000000 !important;
    }

    .form-popup-bg .form-control:focus {
      background: none !important;
    }

    .form-popup-bg .form-control::placeholder {
      color: #000000;
    }

    .b-user-message {
      position: absolute;
      left: -5000px;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
    }

    /* Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }
    body {
      background-color: #f7f7f7;
      color: #333;
    }
    header, footer {
      text-align: center;
      /*padding: 1rem;*/
      background-color: #fff;
      border-bottom: 1px solid #ddd;
      width: 100%;
    }
    header h1 {
      font-size: 1.8rem;
      color: #222;
    }

    /* Full Width Main Container */
    main {
      width: 100%;
      padding: 0.8rem 1rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    /* Card Styles */
    .card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      width: 100%;
    }
    .card img {
      width: 100%;
      height: 295px;
      object-fit: cover;
    }
    .card-content {
      padding: 1rem;
      background-color: #0c336b;
      color: #fff;
      font-size: 0.95rem;
      line-height: 1.4rem;
    }
    .card-content p {
      margin-bottom: 0.3rem;
    }
    .card-content p span {
      font-weight: bold;
    }

    /* Buttons */
    .card-actions {
      display: flex;
      justify-content: space-between;
      padding: 0.8rem 1rem;
      background-color: #fff;
      border-top: 1px solid #ddd;
    }
    .card-actions button {
      flex: 1;
      margin: 0 0.3rem;
      padding: 0.6rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      background-color: #66bb6a;
      cursor: pointer;
      font-size: 1.1rem;
      font-weight: 600;
      transition: background-color 0.3s;
    }
    .card-actions button:hover {
      background-color: #ff6213;
    }

    /* Responsive Typography and Layout */
    @media (max-width: 992px) {
      .card img {
        height: 260px;
      }
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 1.5rem;
      }
      .card img {
        height: 220px;
      }
      .card-actions {
        /*flex-direction: column;*/
        gap: 0.5rem;
      }
      .card-actions button {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      main {
        grid-template-columns: 1fr;
      }
      .card-content {
        font-size: 0.85rem;
      }
      .card img {
        height: 250px;
      }
    }

    .card-content {
  background-color: #00a1bd;
  color: #fff;
  font-size: 0.95rem;
  padding: 1rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.card-content p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.card-content .label {
  color: #ffcc80;
  font-weight: bold;
  width: 120px; /* Fixed width for labels for perfect alignment */
  display: inline-block;
}



/*---Left Side Contact Us----*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        

        

       
        
        /* Fixed Buttons Container */
        .fixed-buttons {
            position: fixed;
            left: 5px;
            top: 82%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 1000;
        }
        
        /* Common Button Styles */
        .action-btn {
            background: #4CAF50;
            color: white;
            padding: 12px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            width: 45px;
            overflow: hidden;
            font-size: 0.9rem;
        }
        
        .action-btn:hover {
            width: 140px;
            transform: translateX(5px);
        }
        
        .action-btn i {
            font-size: 1.2rem;
            min-width: 24px;
            text-align: center;
        }
        
        .action-btn span {
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease 0.1s;
        }
        
        .action-btn:hover span {
            opacity: 1;
        }
        
        /* Contact Button Specific */
        .contact-btn {
            background: #ff6213;
        }
        
        .contact-btn:hover {
            background: #ff6213;
        }
        
        /* Call Button Specific */
        .call-btn {
            background: #6e8efb;
        }
        
        .call-btn:hover {
            background: #6e8efb;
        }
        
        /* Contact Form Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: white;
            border-radius: 10px;
            width: 100%;
            max-width: 450px;
            /*padding: 25px;*/
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-btn {
            position: absolute;
            top: 12px;
            right: 15px;
            font-size: 1.3rem;
            cursor: pointer;
            color: #777;
            transition: color 0.3s ease;
        }
        
        .close-btn:hover {
            color: #333;
        }
        
        .modal h2 {
            margin-bottom: 15px;
            color: #444;
            text-align: center;
            font-size: 1.4rem;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 6px;
            color: #555;
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 0.9rem;
            transition: border 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #6e8efb;
            outline: none;
            box-shadow: 0 0 0 2px rgba(110, 142, 251, 0.2);
        }
        
        .submit-btn {
            background: #00a1bd;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.3s ease;
            width: 100%;
            font-weight: 600;
        }
        
        .submit-btn:hover {
            background: #5a7dfa;
        }
        
        /* Call Notification */
        .call-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 12px 20px;
            border-radius: 5px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1500;
            display: none;
            animation: slideIn 0.3s ease;
            font-size: 0.9rem;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        /* Responsive Styles - Mobile */
        @media (max-width: 768px) {
            .fixed-buttons {
                left: 10px;
            }
            
            .action-btn {
                padding: 10px;
                width: 45px;
            }
            
            .action-btn:hover {
                width: 130px;
            }
            
            .action-btn i {
                font-size: 1.1rem;
            }
        }

        /* Large Desktop Styles */
        @media (min-width: 1200px) {
            /*.fixed-buttons {
                left: 25px;
            }*/
            
            .action-btn {
                padding: 10px;
                width: 45px;
            }
            
            .action-btn:hover {
                width: 135px;
            }
        }
        
        /* Demo content styles */
        .demo-section {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        
        .demo-section h2 {
            color: #2c3e50;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
/*---Left Side Contact Us----*/


/*------FAQ----------*/
/* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5px;
        }
        
        /* Header Styles */
        .header {
            text-align: center;
            /*margin-bottom: 5px;*/
            padding: 20px 0;
        }
        
        .header h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .header p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        
        /* FAQ Section Styles */
        .faq-section {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .faq-item {
            border-bottom: 1px solid #eaeaea;
        }
        
        .faq-question {
            padding: 20px;
            background-color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #f5f7fa;
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
        }
        
        .faq-toggle {
            font-size: 1.5rem;
            color: #3498db;
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: #f8f9fa;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: #555;
            margin-bottom: 10px;
        }
        
        /* Footer Styles */
        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .faq-question h3 {
                font-size: 1.1rem;
            }
            
            .faq-question {
                padding: 15px;
            }
        }
/*-------FAQ-----------*/   


/*------------------*/
:root {
            --primary-color: #1a5276;
            --secondary-color: #3498db;
            --accent-color: #f39c12;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .floor-plans-section {
            padding: 1px 0;
            background: linear-gradient(to bottom, #f5f5f5 0%, #f5f5f5 100%);
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: var(--dark-color);
            font-size: 1.2rem;
            margin-bottom: 1px;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .floor-plan-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .floor-plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .floor-plan-image {
            height: 300px;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .floor-plan-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .floor-plan-card:hover .floor-plan-image img {
            transform: scale(1.05);
        }
        
        .floor-plan-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-color);
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .floor-plan-content {
            padding: 30px;
        }
        
        .floor-plan-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .floor-plan-size {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .size-icon {
            width: 40px;
            height: 40px;
            background: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--secondary-color);
        }
        
        .floor-plan-features {
            margin-bottom: 20px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .feature-icon {
            color: var(--accent-color);
            margin-right: 10px;
            width: 20px;
        }
        
        .feature-text {
            color: #555;
        }
        
        .floor-plan-cta {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            text-align: center;
            width: 100%;
        }
        
        .floor-plan-cta:hover {
            background: #2980b9;
            color: white;
        }
        
        .amenities-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 40px;
            margin-top: 50px;
        }
        
        .amenities-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .amenity-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .amenity-icon {
            width: 50px;
            height: 50px;
            background: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        
        .amenity-content h4 {
            color: var(--dark-color);
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .amenity-content p {
            color: #666;
            margin-bottom: 0;
        }
        
        .note-box {
            background: #e8f4fc;
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            border-radius: 5px;
            margin-top: 30px;
        }
        
        .note-box p {
            margin-bottom: 0;
            color: var(--dark-color);
        }
        
        @media (max-width: 768px) {
            .floor-plans-section {
                padding: 10px 0;
            }
            
            .amenities-section {
                padding: 25px;
            }
            
            .floor-plan-image {
                height: 250px;
            }
        }
        
        

 /* Unified styling for all sections */
    .section-container {
      padding: 10px 0;
      background-color: #f8f9fa;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 30px;
      color: #2c3e50;
      font-weight: 700;
      position: relative;
      padding-bottom: 15px;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: #3498db;
    }
    
    .content-box {
      background: white;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }
    
    .content-box:hover {
      transform: translateY(-5px);
    }
    
    /* About section styling */
    .about-content {
      line-height: 1.8;
      color: #555;
      text-align: justify;
    }
    
    /* Gallery styling */
    .gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    
    .gallery-box {
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      height: 250px;
    }
    
    .gallery-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .gallery-box:hover img {
      transform: scale(1.05);
    }
    
    /* Highlights styling */
    .highlights-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    
    .highlight-box {
      background: linear-gradient(135deg, #2c3e50, #4a6491);
      color: #000;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      min-height: 180px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }
    
    .highlight-box h3 {
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: 600;
    }
    
    /* Price table styling */
    .price-table {
      width: 100%;
      border-collapse: collapse;
      margin: 30px 0;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    
    .price-table th {
      background-color: #2c3e50;
      color: white;
      padding: 15px;
      text-align: left;
    }
    
    .price-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #eee;
    }
    
    .price-table tr:last-child td {
      border-bottom: none;
    }
    
    .price-table tr:hover {
      background-color: #f5f7fa;
    }
    
    .price {
      color: #e74c3c;
      font-weight: 600;
    }
    
    /* Location cards styling */
    .location-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    
    .location-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }
    
    .location-card:hover {
      transform: translateY(-5px);
    }
    
    .location-card-content {
      padding: 20px;
    }
    
    .location-card h3 {
      color: #2c3e50;
      margin-bottom: 10px;
      font-size: 18px;
    }
    
    .location-card p {
      color: #666;
      line-height: 1.6;
    }
    
    /* Amenities styling */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    
    .amenity-item {
      background: white;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }
    
    .amenity-item:hover {
      transform: translateY(-5px);
    }
    
    .amenity-item img {
      max-width: 60px;
      margin-bottom: 15px;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .gallery-container,
      .highlights-container,
      .location-grid,
      .amenities-grid {
        grid-template-columns: 1fr;
      }
      
      .content-box, .highlight-box {
        padding: 15px;
      }
    }
    
    
    
    
/* --- Custom Styles --- */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa; /* Light grey background */
        }

        .investment-section {
            padding: 10px 0;
            overflow-x: hidden; /* Prevents horizontal scroll on animations */
        }

        .investment-section .section-title {
            font-weight: 700;
            color: #2c3e50; /* Dark blue-grey color */
            margin-bottom: 15px;
        }
        
        .investment-section .section-subtitle {
            font-size: 1.1rem;
            color: #555;
            max-width: 800px;
            margin: 0 auto 50px auto;
        }

        .investment-card {
            background-color: #ffffff;
            border: none;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            /* For Animation */
            opacity: 0;
            transform: translateY(30px);
        }
        
        .investment-card.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .investment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .investment-card .icon-box {
            font-size: 2.5rem; /* 40px */
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px auto;
            color: #fff;
            background: linear-gradient(45deg, #007bff, #00d4ff); /* Blue gradient */
        }
        
        .investment-card .card-title {
            font-weight: 600;
            color: #34495e; /* Slightly softer dark blue */
            margin-bottom: 15px;
        }

        .investment-card .card-text {
            color: #6c757d;
            font-size: 0.95rem;
        }
        
        .investment-card .highlight {
            font-weight: 700;
            color: #007bff; /* Highlight color */
        }   
        
/*----===footer======----*/
.footer-bar {
  width: 100%;
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 18px 0 0 0;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
}
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 260px;
}
.footer-section img {
  max-width: 220px;
  margin-top: 15px;
}
.footer-title {
  color: #18c5ff;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.footer-contact i {
  color: #ff5722;
  margin-right: 8px;
  font-size: 1.08em;
  min-width: 22px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  color: #fff;
}
.footer-copy {
  width: 100%;
  text-align: center;
  padding: 13px 0 50px 0;
  font-size: 0.99em;
  color: #fff;
  opacity: 0.92;
  letter-spacing: .2px;
}

@media (max-width: 700px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 12px;
  }
  .footer-section,
  .footer-contact {
    align-items: center;
    min-width: unset;
    width: 100%;
  }
  .footer-title {
    text-align: center;
    width: 100%;
  }
}    
/*----====footer====----*/  


/*===header====---*/
/* Basic styling for demonstration and structure */
  .site-footer {
    background-color: #000; /* Light background for visibility */
    padding: 20px;
  }

  .footer-inner {
    max-width: 1200px; /* Standard container width */
    margin: 0 auto;
    display: grid;
    /* This creates the 70% (About Us) and 30% (Contact Us) columns */
    grid-template-columns: 15fr 3fr; /* 7 parts and 3 parts = 70% and 30% */
    gap: 50px; /* Space between the columns */
  }

  /* Ensure the logo fits well */
  .footer-col .brand img {
    max-width: 180px; /* Adjust logo size as needed */
    height: auto;
    margin-bottom: 10px;
  }

  /* Optional: Make the text alignment for justify work in this layout */
  .about-text {
    text-align: justify;
    line-height: 1.6;
  }

  /* Optional: Basic styling for contact list */
  .contact-list {
    list-style: none;
    padding: 0;
  }

  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .icon-box {
    margin-right: 10px;
    font-size: 1.2em;
  }

  /* Media query for smaller screens: stack columns vertically */
  @media (max-width: 768px) {
    .footer-inner {
      grid-template-columns: 1fr; /* Single column layout on small screens */
    }
  }
  
/*--===nav====---*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .header {
            background: linear-gradient(135deg, #fff, #fff);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo img {
            transition: transform 0.3s ease;
        }
        
        .logo img:hover {
            transform: scale(1.05);
        }
        
        .menu ul li {
            position: relative;
        }
        
        .menu ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: block;
        }
        
        .menu ul li a:hover, 
        .menu ul li a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffcc00;
        }
        
        .contect-us ul li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contect-us ul li a:hover {
            color: #ffcc00;
        }
        
        .contect-us ul li i {
            background-color: rgba(255, 255, 255, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .contect-us ul li a:hover i {
            background-color: #ffcc00;
            color: #1a2a6c;
        }
        
        /* Desktop Dropdown Styles */
        @media (min-width: 992px) {
            .dropdown-menu {
                position: absolute;
                top: 100%;
                left: 0;
                margin-top: 8px;
                min-width: 220px;
                padding: 15px;
                border-radius: 8px;
                box-shadow: 0 8px 20px rgba(0,0,0,0.25);
                background-color: #fff;
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
                z-index: 2000;
                pointer-events: none;
                white-space: normal;
                border: none;
            }

            .nav-item.dropdown:hover .dropdown-menu {
                opacity: 1;
                transform: translateY(0);
                visibility: visible;
                pointer-events: auto;
                display: block;
            }

            .dropdown-menu .dropdown-item {
                display: block;
                margin-bottom: 10px;
                padding: 12px 15px;
                border-radius: 6px;
                transition: all 0.25s ease;
                color: #495057;
                font-weight: 600;
                background-color: #00bcd4;
                border-left: 5px solid #ff7f00;
                text-decoration: none;
            }
            
            .dropdown-menu .dropdown-item:hover {
                background-color: #ff7f00;
                color: #fff;
                transform: translateY(-2px);
                box-shadow: 0 4px 10px rgba(255,127,0,0.4);
                border-color: #cc6600;
            }
        }
        
        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        
        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100%;
            background: linear-gradient(135deg, #009688, #4CAF50);
            z-index: 2000;
            padding: 30px 20px;
            overflow-y: auto;
            transition: right 0.4s ease;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        }
        
        .mobile-menu-panel.active {
            right: 0;
        }
        
        .mobile-menu-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }
        
        .mobile-menu-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .mobile-menu-header img {
            max-width: 150px;
        }
        
        .mobile-nav {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .mobile-nav li {
            margin-bottom: 10px;
        }
        
        .mobile-nav li a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 12px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .mobile-nav li a:hover,
        .mobile-nav li a.active {
            background: rgba(255, 255, 255, 0.15);
            color: #ffcc00;
        }
        
        .mobile-dropdown-menu {
            list-style: none;
            padding-left: 20px;
            margin-top: 10px;
            display: none;
        }
        
        .mobile-dropdown-menu.active {
            display: block;
        }
        
        .mobile-dropdown-menu li {
            margin-bottom: 8px;
        }
        
        .mobile-dropdown-menu li a {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 15px;
            font-size: 0.95em;
        }
        
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-dropdown-toggle i {
            transition: transform 0.3s ease;
        }
        
        .mobile-dropdown-toggle.active i {
            transform: rotate(180deg);
        }
        
        .mobile-contact {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        
        .mobile-contact a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .mobile-contact a i {
            background: rgba(255, 255, 255, 0.2);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .mobile-contact a:hover i {
            background: #ffcc00;
            color: #1a2a6c;
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .menu ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .contect-us {
                display: none;
            }
        }
        
        /* Content Styles */
        .content {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            color: #1a2a6c;
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1a2a6c, #2a3a7c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 30px;
        }
        
        .feature-card h3 {
            color: #1a2a6c;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /*footer {
            background: #1a2a6c;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }*/
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            max-width: 150px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ffcc00;
        }
        
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        
        
        
/*---===about css===---*/
  .about-section {
    max-width: 1200px;
    margin: 40px auto;
    background: linear-gradient(-45deg, #66bb6a, #00a1bd, #66bb6a, #00a1bd);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,76,173,0.08);
    padding: 10px 10px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    box-shadow: 0 -10px 24px -8px rgba(0,76,173,0.18); /* Top-only drop shadow */
    /*border-top: 5px solid #00a1bd; /* Dark bold top border */
    /*border-bottom: 5px solid #00a1bd; /* Dark bold top border */
  }
  
  
  .about-section h2 {
    text-align: center;
    color: #004aad;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    animation: slideInDown 900ms ease-out;
  }
  .about-section p {
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 14px;
    text-align: justify;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s;
  }
  .about-highlight {
    color: #004aad;
    font-weight: 600;
  }
  @keyframes slideInDown {
    from { opacity: 0; transform: translateY(-60px);}
    to   { opacity: 1; transform: translateY(0);}
  }
  
  
/*-------------*/


/*-----Start Highlights----*/        
        .section-title {
            text-align: center;


            color: #ffffff;
            position: relative;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 5px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            border-radius: 3px;
        }
        
        .highlights-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-bottom: 35px;
        }
        
        .highlight-box {
            background: rgb(233 237 238);
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            min-height: 220px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }
        
        .highlight-box:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            color: white;
            background: rgba(255, 255, 255, 0);
        }
        
        .highlight-box:hover::before {
            opacity: 1;
        }
        
        .icon-container {
            position: relative;
            margin-bottom: 25px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .icon {
            font-size: 3.5rem;
            transition: all 0.5s ease;
            z-index: 2;
            padding: 15px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
        }
        
        .highlight-box:hover .icon {
            transform: scale(1.2) rotate(5deg);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
        }
        
        .icon-badge {
            position: absolute;
            top: -10px;
            right: 0;
            background: #e74c3c;
            color: white;
            font-size: 0.8rem;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: bold;
            transform: rotate(10deg);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .highlight-box h3 {
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.6;
            position: relative;
            z-index: 2;
            transition: color 0.4s ease;
            color: #000;
        }
        
        .highlight-box:hover h3 {
            color: white;
        }
        
        /* Individual box styling with unique icon effects */
        .highlight-box:nth-child(1) .icon {
            color: #3498db;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.05));
        }
        
        .highlight-box:nth-child(1):hover .icon {
            color: #3498db;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 25px rgba(52, 152, 219, 0.7);
        }
        
        .highlight-box:nth-child(2) .icon {
            color: #2ecc71;
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.05));
        }
        
        .highlight-box:nth-child(2):hover .icon {
            color: #2ecc71;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 25px rgba(46, 204, 113, 0.7);
        }
        
        .highlight-box:nth-child(3) .icon {
            color: #e74c3c;
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.2), rgba(231, 76, 60, 0.05));
        }
        
        .highlight-box:nth-child(3):hover .icon {
            color: #e74c3c;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 25px rgba(231, 76, 60, 0.7);
        }
        
        .highlight-box:nth-child(4) .icon {
            color: #f39c12;
            background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(243, 156, 18, 0.05));
        }
        
        .highlight-box:nth-child(4):hover .icon {
            color: #f39c12;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 25px rgba(243, 156, 18, 0.7);
        }
        
        .highlight-box:nth-child(5) .icon {
            color: #9b59b6;
            background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.05));
        }
        
        .highlight-box:nth-child(5):hover .icon {
            color: #9b59b6;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 25px rgba(155, 89, 182, 0.7);
        }
        
        .highlight-box:nth-child(6) .icon {
            color: #1abc9c;
            background: linear-gradient(135deg, rgba(26, 188, 156, 0.2), rgba(26, 188, 156, 0.05));
        }
        
        .highlight-box:nth-child(6):hover .icon {
            color: #1abc9c;
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 25px rgba(26, 188, 156, 0.7);
        }
        
        /* Glow effect for icons */
        .icon-glow {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: -1;
        }
        
        .highlight-box:hover .icon-glow {
            opacity: 0.7;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 0.4; }
            100% { transform: scale(1); opacity: 0.7; }
        }
        
        /* Responsive design */
        @media (max-width: 1024px) {
            .highlights-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .highlights-container {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .icon {
                font-size: 2.8rem;
                width: 70px;
                height: 70px;
            }
        }

/*-----End Highlights----*/   


/*-----Start Price List----*/ 
.section-title {
            text-align: center;

            margin-bottom: 50px;
            color: #2c3e50;
            position: relative;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            border-radius: 2px;
        }
        
        .content-box {
            overflow-x: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        
        .price-table thead {
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: white;
        }
        
        .price-table th {
            padding: 20px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price-table th:first-child {
            border-top-left-radius: 15px;
        }
        
        .price-table th:last-child {
            border-top-right-radius: 15px;
        }
        
        .price-table tbody tr {
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }
        
        .price-table tbody tr:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .price-table td {
            padding: 25px 15px;
            font-size: 1.1rem;
            color: #495057;
        }
        
        .price-table td:first-child {
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            align-items: center;
        }
        
        .property-icon {
            margin-right: 15px;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
        }
        
        .price {
            font-weight: 700;
            font-size: 1.3rem;
            color: #2c3e50;
        }
        
        .price.highlight {
            color: #e74c3c;
            position: relative;
        }
        
        .price.highlight::after {
            content: 'Most Popular';
            position: absolute;
            top: -25px;
            right: 0;
            background: #e74c3c;
            color: white;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
        
        .enquiry-btn {
            padding: 12px 25px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .enquiry-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
        }
        
        .enquiry-btn i {
            margin-left: 8px;
            font-size: 0.9rem;
        }
        
        .note {
            text-align: center;
            margin-top: 30px;
            color: #6c757d;
            font-style: italic;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .container {
                padding: 30px 15px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .price-table th, .price-table td {
                padding: 15px 10px;
                font-size: 1rem;
            }
            
            .property-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                margin-right: 10px;
            }
            
            .enquiry-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .price-table {
                display: block;
            }
            
            .price-table thead {
                display: none;
            }
            
            .price-table tbody, .price-table tr, .price-table td {
                display: block;
                width: 100%;
            }
            
            .price-table tr {
                margin-bottom: 20px;
                border: 1px solid #e9ecef;
                border-radius: 10px;
                padding: 15px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            }
            
            .price-table td {
                padding: 10px 0;
                border: none;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .price-table td:before {
                content: attr(data-label);
                font-weight: 600;
                color: #2c3e50;
                margin-right: 10px;
            }
            
            .price-table td:first-child {
                font-size: 1.2rem;
                border-bottom: 1px dashed #e9ecef;
                padding-bottom: 15px;
            }
        }
        
/*-----Start floor plan----*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        

.section-title {
            text-align: center;

            margin-bottom: 20px;
            color: #2c3e50;
            position: relative;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 800px;
            margin: 40px auto 50px;
            line-height: 1.7;
        }
        
        .floor-plan-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid #f0f0f0;
        }
        
        .floor-plan-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .floor-plan-image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        
        .floor-plan-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: blur(5px); /* Image blur added */
        }
        
        .floor-plan-card:hover .floor-plan-image img {
            transform: scale(1.05);
            filter: blur(3px); /* Slightly less blur on hover */
        }
        
        .floor-plan-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
            z-index: 2;
        }
        
        .floor-plan-content {
            padding: 25px;
            text-align: center;
        }
        
        .floor-plan-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .floor-plan-features {
            display: flex;
            justify-content: space-around;
            margin: 20px 0;
            padding: 15px 0;
            border-top: 1px dashed #e9ecef;
            border-bottom: 1px dashed #e9ecef;
        }
        
        .feature {
            text-align: center;
        }
        
        .feature-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: #3498db;
        }
        
        .feature-label {
            font-size: 0.8rem;
            color: #6c757d;
            margin-top: 5px;
        }
        
        .floor-plan-cta {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            margin-top: 10px;
        }
        
        .floor-plan-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
            color: white;
        }
        
        .floor-plan-cta i {
            margin-left: 8px;
            font-size: 0.9rem;
        }
        
        /* Hover overlay effect */
        .floor-plan-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .floor-plan-card:hover .floor-plan-overlay {
            opacity: 1;
        }
        
        .overlay-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .overlay-text {
            font-size: 1rem;
            margin-bottom: 20px;
        }
        
        .overlay-cta {
            padding: 10px 25px;
            background: white;
            color: #3498db;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .overlay-cta:hover {
            background: #3498db;
            color: white;
        }

        /* Blur text overlay on image */
        .blur-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 20px;
        }
        
        .blur-overlay h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .blur-overlay p {
            font-size: 1rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .container {
                padding: 1px 15px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
                margin: 30px auto 40px;
            }
            
            .floor-plan-features {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        
/*----location-----*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .section-container {
            
            
            position: relative;
            overflow: hidden;
        }

        .section-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff10" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .section-title {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: white;
            font-weight: 700;

        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.5;
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .location-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 25px 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            backdrop-filter: blur(10px);
            min-height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .location-card:hover::before {
            left: 100%;
        }

        .location-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .location-card:hover .location-card-content h3,
        .location-card:hover .location-icon {
            color: white;
        }

        .location-card-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
        }

        .location-icon {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #10b981;
            transition: all 0.3s ease;
            display: block;
        }

        .location-card:hover .location-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .location-card h3 {
            font-size: 1.0rem;
            font-weight: 500;
            line-height: 1.4;
            color: #1e293b;
            margin: 0;
            transition: all 0.3s ease;
        }

        .location-card:hover h3 {
            transform: scale(1.03);
        }

        /* Animation for cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .location-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .location-card:nth-child(1) { animation-delay: 0.1s; }
        .location-card:nth-child(2) { animation-delay: 0.2s; }
        .location-card:nth-child(3) { animation-delay: 0.3s; }
        .location-card:nth-child(4) { animation-delay: 0.4s; }
        .location-card:nth-child(5) { animation-delay: 0.5s; }
        .location-card:nth-child(6) { animation-delay: 0.6s; }
        .location-card:nth-child(7) { animation-delay: 0.7s; }
        .location-card:nth-child(8) { animation-delay: 0.8s; }

        /* Stats section - More compact */
        .location-stats {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 50px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            gap: 15px;
        }

        .stat-item {
            text-align: center;
            padding: 15px;
            flex: 1;
            min-width: 120px;
        }

        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #10b981;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: white;
            margin-top: 8px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .section-container {
                /*padding: 40px 15px;*/
                padding-top: 5px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .section-subtitle {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .location-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .location-card {
                padding: 20px 15px;
                min-height: 120px;
            }

            .location-card h3 {
                font-size: 1rem;
            }

            .location-icon {
                font-size: 1.8rem;
                margin-bottom: 12px;
            }

            .location-stats {
                margin-top: 40px;
                padding: 20px 15px;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .location-stats {
                flex-direction: column;
                gap: 15px;
            }
            
            .stat-item {
                min-width: auto;
            }
            
            .location-card {
                min-height: 110px;
            }
        }
        
        
        
        
        
/*-- =========== Home Lone EMI Calculator start ========= */        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
           
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
        
        .calculator-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 1600px;
            overflow: hidden;
        }
        
        .calculator-header {
            background: linear-gradient(-45deg, #66bb6a, #00a1bd, #66bb6a, #00a1bd);
            color: white;
            padding: 1px;
            text-align: center;
        }
        
        .calculator-header h1 {
            font-size: 24px;
            font-weight: 600;
        }
        
        .calculator-body {
            padding: 25px;
        }
        
        .input-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .input-group {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 150px;
        }
        
        .input-group label {
            margin-bottom: 8px;
            font-weight: 500;
            color: #2c3e50;
            font-size: 14px;
        }
        
        .input-group input {
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 15px;
            transition: border-color 0.3s;
            width: 100%;
        }
        
        .input-group input:focus {
            border-color: #3498db;
            outline: none;
        }
        
        .calculate-btn {
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            height: 42px;
            white-space: nowrap;
        }
        
        .calculate-btn:hover {
            background-color: #2980b9;
        }
        
        .results-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .result-group {
            display: flex;
            flex-direction: column;
            text-align: center;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 5px;
        }
        
        .result-label {
            font-size: 14px;
            color: #2c3e50;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .result-value {
            font-size: 16px;
            color: #2c3e50;
            font-weight: 600;
        }
        
        .emi-value {
            color: #e74c3c;
            font-size: 18px;
        }
        
        .total-value {
            color: #e74c3c;
            font-size: 18px;
        }
        
        @media (max-width: 768px) {
            .input-section {
                flex-direction: column;
                align-items: stretch;
            }
            
            .input-group {
                width: 100%;
            }
            
            .calculate-btn {
                width: 100%;
                margin-top: 10px;
            }
            
            .results-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .results-section {
                grid-template-columns: 1fr;
            }
        }     
/*-- =========== Home Lone EMI Calculator End ========= */  


/*---Headline Css------*/
.headline-outer {
    text-align: center; 
    margin-top: 20px;  
    font-family: 'Sans-serif'; 
}

.headline-wrapper {
    display: inline-flex;      
    align-items: center;       
    background: linear-gradient(-45deg, #66bb6a, #00a1bd, #66bb6a, #00a1bd);
    padding: 4px 10px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* Arrow */
.arrow-left {
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, transparent 50%, #fff 50%) no-repeat;
    background-size: 100% 100%;
    margin-right: 10px;
    animation: arrowMove 2s linear infinite;
}

@keyframes arrowMove {
    0%   { transform: translateX(-30px) rotate(45deg); opacity: 0.5; }
    50%  { transform: translateX(0px) rotate(45deg); opacity: 1; }
    100% { transform: translateX(-30px) rotate(45deg); opacity: 0.5; }
}

/* WIDER TEXT (Line Width Increased) */
.headline-text {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;   /* 👈 line width increased */
    display: flex;
    align-items: center;
}

/* Projects animated */
.moving-text {
    display: inline-block;
    margin-left: 6px;
    letter-spacing: 2.5px;   /* 👈 same increased width */
    /*animation: moveText 3s ease-in-out infinite alternate;*/
}

/* Floating motion */
@keyframes moveText {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-3px, -3px); }
    50% { transform: translate(3px, 3px); }
    75% { transform: translate(-3px, 3px); }
    100% { transform: translate(3px, -3px); }
}

/* Responsive */
@media (max-width: 768px) {
    .headline-text { font-size: 22px; letter-spacing: 5px; }
    .moving-text { letter-spacing: 5px; }
}

@media (max-width: 480px) {
    .headline-text { font-size: 22px; letter-spacing: 2px; }
    .moving-text { letter-spacing: 2px; }
}






/*--sub heading css index page----*/
/* Outer Background */
.discover-container {
    text-align: center;
    padding: 2px 7px;
    background: linear-gradient(-45deg, #66bb6a, #00a1bd, #66bb6a, #00a1bd);
    border-radius: 12px;
    width: fit-content;            /* Auto-adjust to text width */
    max-width: 95%;                /* Never overflow screen */
    margin: 40px auto;
    box-shadow: 0 0 25px rgba(0,255,200,0.3);
}

/* Heading Style */
.discover-heading {
    color: #fff;
    font-size: 17px; 
    /* Responsive font:
       min 16px, ideal 4vw, max 26px */
    /*font-weight: 800;*/
    line-height: 1.4;
    letter-spacing: 1.2px;
    font-family: 'Arial', sans-serif;
    padding: 3px 7px;
    white-space: normal;
}

/* COMMERCIAL base */
.animate-commercial {
    display: inline-block;
    position: relative;
    font-weight: 900;
    color: #00ffc3;
    letter-spacing: 2px;
    font-size: 18px;
}

/* LETTER REMOVAL ANIMATION */
.animate-commercial::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    animation: disappear 3s steps(var(--chars)) infinite;
}

/* No. of characters in "Commercial" */
.animate-commercial {
    --chars: 10;
}

/* Disappearing + Reappearing animation */
@keyframes disappear {
    0%   { clip-path: inset(0 0 0 0); }
    40%  { clip-path: inset(0 100% 0 0); }
    41%  { clip-path: inset(0 100% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}

/* FLOATING MOTION */
.moving {
    animation: floatMove 2.5s ease-in-out infinite alternate;
}

/* Floating Motion Keyframes */
@keyframes floatMove {
    0%   { transform: translate(0px, 0px); }
    25%  { transform: translate(-4px, -3px); }
    50%  { transform: translate(4px, 5px); }
    75%  { transform: translate(-3px, 4px); }
    100% { transform: translate(5px, -4px); }
}

/* MEDIA QUERIES */

/* Tablets */
@media (max-width: 768px) {
    .discover-container {
        padding: 10px 14px;
    }

    .discover-heading {
        line-height: 1.3;
        letter-spacing: 1px;
    }

    .animate-commercial {
        letter-spacing: 1px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .discover-container {
        width: 90%;
        padding: 1px 12px;
    }

    .discover-heading {
        font-size: 14px;
        line-height: 1.3;
    }

    .animate-commercial {
        font-size: 18px;
    }
}



/*----popup index form-----*/
/* Popup Background */
#contactModal {
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  position: fixed;
  inset: 0;
  z-index: 9999;
  animation: fadeIn 0.4s ease forwards;
}

/* Modal Box */
#contactModal .modal-content {
  background: #ffffff;
  width: 340px;
  padding: 25px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  animation: slideUp 0.5s ease forwards;
}

/* Close Btn */
#contactModal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  transition: 0.2s;
}
#contactModal .close-btn:hover {
  color: #ff3d3d;
}

/* Form Title */
#contactModal .form_title {
  font-size: 22px;
  font-weight: 700;
}

/* Input Fields */
#contactModal .text_form {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
  background: #fafafa;
}

#contactModal .text_form:focus {
  border-color: #00a1bd;
  box-shadow: 0 0 8px rgba(0,161,189,0.4);
  background: #fff;
}

/* Icons inside Input */
#contactModal .icon-inside {
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 18px;
  color: #00a1bd;
}

/* Submit Button Stylish */
#contactModal .theme_button {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00a1bd, #007bff);
  color: #fff;
  font-size: 16px;
  border: none;
  font-weight: 600;
  transition: 0.3s ease;
}

#contactModal .theme_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,123,255,0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  0% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}



/* Modal Form Stylish UI + Motion */
#exampleModal .modal-content {
  border-radius: 18px;
  padding: 10px 15px;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  transform: translateY(50px) scale(0.95);
  opacity: 0;
  animation: modalSlideUp 0.45s ease forwards;
}

/* Title */
#exampleModal .modal-title {
  font-weight: 700;
  font-size: 22px;
  color: #222;
}

/* Input wrapper stylish spacing */
#exampleModal .position-relative {
  margin-top: 10px;
}

/* Text Inputs */
#exampleModal .text_form {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  background: #f8f8f8;
  transition: 0.3s ease;
  font-size: 15px;
}

/* Input focus animation */
#exampleModal .text_form:focus {
  background: #ffffff;
  border-color: #007bff;
  box-shadow: 0 0 12px rgba(0, 123, 255, 0.35);
}

/* Icons inside inputs */
#exampleModal .icon-inside {
  position: absolute;
  right: 15px;
  top: 50%;
  font-size: 18px;
  transform: translateY(-50%);
  color: #999;
  transition: 0.3s ease;
}

#exampleModal .text_form:focus + .icon-inside {
  color: #007bff;
  transform: translateY(-50%) scale(1.2);
}

/* Submit Button Stylish */
#exampleModal .theme_button {
  width: 100%;
  background: linear-gradient(135deg, #007bff, #00a1bd);
  border: none;
  padding: 12px;
  font-size: 16px;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

#exampleModal .theme_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 123, 255, 0.35);
}

/* Smooth Modal Opening Motion */
@keyframes modalSlideUp {
  0% { transform: translateY(50px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}


/*--index popup form---*/
/* -------------------------------
   STYLISH POPUP + FORM ANIMATION
----------------------------------*/

/* Modal Content */
.stylish-modal {
  border-radius: 18px;
  padding: 8px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  animation: slideUpModal 0.45s ease forwards;
}

/* Smooth opening animation */
@keyframes slideUpModal {
  0% { transform: translateY(40px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* Header style */
.custom-header {
  border-bottom: none;
  padding-bottom: 5px;
}

.custom-header img {
  transition: 0.3s ease;
}

.custom-header img:hover {
  transform: scale(1.08) rotate(2deg);
}

/* Inputs */
#contactNilay .form-control {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  background: #f7f7f7;
  font-size: 15px;
  transition: all 0.35s ease;
}

/* Input Focus Animation */
#contactNilay .form-control:focus {
  background: #fff;
  border-color: #007bff;
  box-shadow: 0px 0px 12px rgba(0,123,255,0.35);
  transform: translateY(-2px);
}

/* Submit Button */
.custom-submit-btn {
  background: linear-gradient(135deg, #007bff, #00a1bd);
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

/* Hover Shine Effect */
.custom-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 12px 25px rgba(0,123,255,0.35);
}

/* Motion on fields (slide up one by one) */
#contactNilay .mb-3 {
  opacity: 0;
  transform: translateY(20px);
  animation: formSlide 0.5s ease forwards;
}

#contactNilay .mb-3:nth-child(1) { animation-delay: 0.15s; }
#contactNilay .mb-3:nth-child(2) { animation-delay: 0.30s; }
#contactNilay .mb-3:nth-child(3) { animation-delay: 0.45s; }
#contactNilay .custom-footer   { animation-delay: 0.60s; }

@keyframes formSlide {
  to { opacity: 1; transform: translateY(0); }
}


/* Fix modal centering on mobile */
#contactNilay .modal-dialog {
  margin: 0 auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* center vertically */
}

/* Mobile screen full center alignment */
@media (max-width: 576px) {
  #contactNilay .modal-content {
    width: 95%;
    margin: auto;
  }
}




/*strat Locations Covered css  */      

/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

/* ===== SECTION TITLE ===== */
.section-title{
    text-align:center;
    margin-bottom:30px;
}

.section-title h2{
    font-size:32px;
    font-weight:700;
}

/* ===== GRID CONTAINER (5 IN ONE LINE) ===== */
.locations-wrapper{
    max-width:1600px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:20px;
    padding:0 15px;
}

/* ===== CARD ===== */
.card2{
    background:linear-gradient(180deg, #fdfbf7 0%, #ffffff 100%);
    border-radius:25px;
    border:1px solid #e0d5c1;
    text-align:center;
    padding:30px 20px;
    transition:0.3s ease;
}

.card2:hover{
    transform:translateY(-8px);
    border-color:#0099b3;
}

/* ===== PIN ===== */
.pin-container{
    display:flex;
    justify-content:center;
    margin-bottom:20px;
}

.pin{
    width:55px;
    height:55px;
    background:#c62828;
    border-radius:50% 50% 50% 0;
    transform:rotate(-45deg);
    display:flex;
    align-items:center;
    justify-content:center;
}

.pin i{
    color:#fff;
    font-size:22px;
    transform:rotate(45deg);
}

/* ===== CONTENT ===== */
.card2 h3{
    font-size:18px;
    margin-bottom:10px;
    font-weight:800;
    color:#333;
}

.card2 p{
    font-size:13px;
    color:#666;
    line-height:1.6;
    margin-bottom:20px;
}

/* ===== IMAGE ===== */
.illustration img{
    width:100%;
    height:120px;
    object-fit:contain;
    margin-bottom:20px;
}

/* ===== BUTTON ===== */
.explore-btn{
    text-decoration:none;
    color:#0099b3;
    font-weight:700;
    font-size:13px;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.explore-btn:hover{
    color:#9c7e52;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1200px){
    .locations-wrapper{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media(max-width:768px){
    .locations-wrapper{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:480px){
    .locations-wrapper{
        grid-template-columns:1fr;
    }
}

/*End Locations Covered css  */

