body, html {
   width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
    font-family: 'Segoe UI', sans-serif;
  }
  
  .hero-section {
    background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('main.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: #fff;
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 10px;
  }
  
  .logo {
    position: absolute;
    top: 5px;
    left: 20px;
    height: 90px;
  }
  
  .title {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .btn {
    background-color: #f26724;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .subtitle {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
  }
  
  .rera {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    color: #fff;
  }
  
  .top-right-text {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: bold;
    font-size: 18px;
  }
  
  .godrej-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    height: 30px;
  }
  

  .map-section {
    padding: 20px;
    background-color: #e9e4dd;
  }
  
  .map-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: auto;
  }
  
  .map-image {
    width: 100%;
    border-radius: 10px;
  }
  
  /* Info Box Styling */
  .info-box {
    position: absolute;
    top: 1px;
    left: 30px;
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .info-box h3 {
    font-size: 18px;
    margin-top: 0;
    font-weight: bold;
  }
  
  .info-box p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  /* Legend Box Styling */
  .legend-box {
    position: absolute;
    top: 320px;
    left: 30px;
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .legend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .legend-grid span {
    font-size: 16px;
    font-weight: 500;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .info-box,
    .legend-box {
      position: static;
      width: 100%;
      margin-top: 20px;
    }
  
    .map-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .map-image {
      max-width: 100%;
    }
  }

  .connectivity-section {
    background-color: #fff;
    padding: 60px 20px;
  }
  
  .connectivity-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
    align-items: center;
    gap: 40px;
  }
  
  .connectivity-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
  }
  
  .connectivity-content {
    flex: 1;
    min-width: 300px;
  }
  
  .connectivity-content h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .connectivity-content p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
  }
  
  .connectivity-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
  
  .icon-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
  }
  
  .icon-block img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  
  .icon-block p {
    font-size: 14px;
    line-height: 1.4;
  }

  .mediterranean-section {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
  }
  
  .mediterranean-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .mediterranean-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f26724;
    color: #000;
    padding: 40px;
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .mediterranean-text {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
  }
  
  .text-left {
    flex: 1;
    min-width: 250px;
  }
  
  .text-left h2 {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .text-right {
    flex: 2;
    min-width: 300px;
    font-size: 15px;
    line-height: 1.6;
  }

  .social-infra-section {
    background-color: #f3f3f3;
    padding: 40px 0;
  }
  
  .infra-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .infra-left {
    flex: 1;
    min-width: 300px;
    background-color: #f26724;
    color: #000;
    padding: 30px 25px;
    border-radius: 10px;
  }
  
  .infra-left h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .infra-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .infra-icons div {
    text-align: center;
  }
  
  .infra-icons img {
    width: 40px;
    height: auto;
  }
  
  .infra-block {
    margin-bottom: 25px;
  }
  
  .infra-block h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .infra-block ul {
    padding-left: 18px;
    list-style-type: disc;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .infra-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 300px;
  }
  
  .infra-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }

  .download-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('main4.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 10%;
    color: white;
    position: relative;
  }
  
  .download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .download-btn {
    display: inline-block;
    border: 2px dashed white;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
  }
  
  .download-btn:hover {
    background-color: white;
    color: #111;
  }
  
  .download-icon {
    margin-left: 8px;
  }

  .broker-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('main4.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px;
    position: relative;
  }
  
  .broker-content {
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
  }
  
  .broker-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .broker-content hr {
    border: none;
    border-top: 1px solid #fff;
    margin-bottom: 20px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .broker-content p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .enquiry-section {
    
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('main5.webp') no-repeat center center/cover ;
    
    
    color: white;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
  }
  
  .form-container, .office-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 600px;
  }
  
  .enquiry-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .form-row {
    display: flex;
    gap: 10px;
  }
  
  input, select {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 10px;
  }
  
  input::placeholder {
    color: white;
  }
  
  select {
    appearance: none;
    background: transparent;
    color: white;
  }
  
  .checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  button[type="submit"] {
    background-color: white;
    color: black;
    padding: 12px 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    width: 150px;
  }
  
  .office-container {
    margin-top: 40px;
  }
  
  .office-container h2, .form-container h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer-info {
    font-size: 14px;
    line-height: 1.6;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
  }
  
  .footer-info a {
    color: #fff;
    text-decoration: underline;
  }



