
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fa;
    color: #333;
  }
  

 .contact-strip {
      background-color: #f4f4f4;
      padding: 10px 20px;
      display: flex;
      justify-content: flex-start; 
      gap: 30px; 
      font-size: 16px;
      color: #333;
    }

    .contact-strip div {
      display: flex;
      align-items: center;
      white-space: nowrap;
    }

    .contact-strip strong {
      margin-right: 6px;
      font-size: 18px;
    }
  
  
  .container {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .header .logo img {
    max-height: 50px;
  }
  
  .navbar {
    margin-top: 10px;
  }
  
  .navbar ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  
  .navbar a {
    text-decoration: none;
    color: #0c7b93;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .navbar a:hover,
  .navbar a.active {
    color: #27ae60;
  }
  

  .hero {
    position: relative;
    height: 90vh;
    max-height: 700px;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 300%;
    height: 100%;
    animation: slide 15s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

  @keyframes slide {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-100%); }
    50%, 70% { transform: translateX(-200%); }
    75%, 100% { transform: translateX(0); }
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 60px;
    color: white;
  }
  .hero-text {
    color: white;
    max-width: 80%;
  }
  
  .hero-text h2 {
    font-size: 48px;
    font-weight: bold;
  }
  .hero-text p {
    font-size: 20px;
    margin: 10px 0 20px;
  }
  .btn {
    margin-top: 40px;
    margin-left: 65px;
    background-color: #00a859;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
  }
  .btn:hover {
    background-color: #007744;
  }
  

  .about-section {
    background-color: #fff;
    padding: 60px 40px;
    text-align: center;
  }
  .about-header h2 {
    color: #18272e;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .about-header p {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
  }
  .about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
  }
  .about-left {
    flex: 1;
    min-width: 300px;
    text-align: left;
  }
  .about-left h3 {
    font-size: 32px;
    color: #18272e;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .about-left h3 span {
    color: #005f73;
  }
  .about-left p {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
  }


  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .stat-box {
    flex: 1 1 calc(25% - 20px); /* Desktop: 4 boxes ek line mein */
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    max-width: calc(25% - 20px);
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* optional shadow */
    border: 1px solid #ddd;
  }
  .stat-box i {
    font-size: 28px;
    color: #005f73;
    margin-bottom: 10px;
  }
  .stat-box h4 {
    font-size: 24px;
    color: #70c474;
    margin-bottom: 5px;
  }
  .stat-box p {
    font-size: 14px;
    color: #221c1c;
  }

  @media (max-width: 768px) and (min-width: 300px) {
    .stat-box {
      flex: 1 1 calc(50% - 20px); /* 2 boxes ek line mein */
      max-width: calc(50% - 20px);
    }
  }



  .hero,
.slide,
.slide video {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 100vh; 
  object-fit: cover;
  overflow: hidden;
}



  

  @media (max-width: 991px) {
    .contact-strip {
      flex-direction: column;
      align-items: center;
      text-align: center;
      /* visibility: hidden; */
      gap: 8px;
    }
    .header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .navbar ul {
      /* flex-direction: column; */
      align-items: flex-start;
      width: 100%;
      gap: 10px;
    }
    .navbar a {
      display: block;
      width: 100%;
    }
    .hero {
      height: 400px;
    }
    .hero-text h2 {
      font-size: 36px;
    }
    .hero-text p {
      font-size: 16px;
    }
    .hero-overlay {
      padding-left: 30px;
    }
    .about-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .about-left, .about-right {
      text-align: center;
      padding-right: 6px;
    }
    .about-left h3 {
      font-size: 28px;
    }
    .about-left p {
      font-size: 15px;
    }
    .stat-box {
      flex: 1 1 45%;
    }
  }
  

  @media (max-width: 600px) {
    .hero {
      height: 300px;
    }
    .hero-text h2 {
      font-size: 24px;
    }
    .hero-text p {
      font-size: 14px;
    }
    .btn {
      padding: 10px 16px;
      font-size: 14px;
    }
    .about-header h2 {
      font-size: 28px;
    }
    .about-left h3 {
      font-size: 24px;
    }
    .stats {
      flex-direction: column;
      align-items: center;
    }
    .stat-box {
      width: 90%;
    }
    .about-right img {
      max-width: 100%;
    }
  }

  .custom-footer {
    background-color: #024972;
    color: #fff;
    padding: 60px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .footer-logo img {
    max-width: 160px;
    height: auto;
  }
  
  .footer-about,
  .footer-menu,
  .footer-contact,
  .footer-social {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #d3eaf6;
  }
  
  .footer-menu ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-menu li {
    margin-bottom: 8px;
  }
  
  .footer-menu a,
  .footer-contact a {
    color: #d3eaf6;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-menu a:hover,
  .footer-contact a:hover {
    color: #ffffff;
  }
  
  .footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .footer-social .social-icons a {
    color: #d3eaf6;
    font-size: 18px;
    margin-right: 15px;
    transition: color 0.3s ease;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
  }
  
  .footer-container h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
  }
  
 
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-social .social-icons {
      justify-content: center;
    }
  }
    
.booking-section {
  background: #e9f5f2;
  padding: 40px 20px;
  text-align: center;
}

.booking-header {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.booking-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.booking-left h2 {
  font-size: 2rem;
  font-weight: bold;
}

.house-icon {
  width: 80px;
  height: auto;
}

.book-btn {
  background-color: #2ba84a;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #249c42;
}

.testimonial-section {
  background-color: #7cb9da;
  padding: 60px 20px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.profile {
  margin-top: 20px;
}

.profile img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  object-fit: cover;
}

.profile h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #003c58;
}

.profile .role {
  font-size: 13px;
  color: #555;
}

.contact-container {
  padding: 40px 20px;
  background-color: #fff;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.fb { background-color: #3b5998; }
.tw { background-color: #1da1f2; }
.ig { background-color: #e1306c; }
.yt { background-color: #ff0000; }
.li { background-color: #0077b5; }

.contact-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.dholera-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff;
}

.dholera-section h2 {
  color: #50ca6d; 
  font-size: 28px;
  margin-bottom: 10px;
}

.dholera-section p {
  color: #3b3b8b; 
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 30px;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.dholera-btn {
  background-color: #005f73; 
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 8px;
  min-width: 160px;
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
  transition: background-color 0.3s ease;
}

.dholera-btn:hover {
  background-color: #032e36;
}


.overview-section {
  background-color: #f5f5f5;
  padding: 40px 20px;
}

.overview-card {
  background: #fff;
  padding: 30px 25px;
  width: 90%;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.overview-card h2 {
  color: #50ca6d;
  font-size: 24px;
  margin-bottom: 10px;
}

.overview-card p {
  text-align: center;
  font-size: 16px;
  color:  #0b1870;
  font-weight: 600;
}

.overview-card hr {
  margin: 20px 0;
  border: 0;
  height: 1px;
  background-color: #ccc;
}

.overview-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.overview-list {
  flex: 1;
  list-style: none;
  padding: 0;
}

.overview-list li {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.overview-list img {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}



.silent-features-section {
  background-color: #f5f5f5;
  padding: 40px 20px;
}

.features-card {
  background: #fff;
  padding: 30px 25px;
width: 90%;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.features-card h2 {
  color:#50ca6d;
  font-size: 24px;
  margin-bottom: 10px;
}

.features-card p {
  font-size: 17px;
  text-align: center;
  color: #2e2e77;
  font-weight: 600;
}

.features-card hr {
  margin: 20px 0;
  border: 0;
  height: 1px;
  background-color: #ccc;
}

.features-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.feature-list {
  flex: 1;
  list-style: none;
  padding: 0;
}

.feature-list li {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.feature-list img {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}


.project-vision-section {
  background-color: #f5f5f5;
  padding: 40px 20px;
}

.vision-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 30px;
 width: 90%;
  margin: 0 auto;
  border-radius: 6px;
  gap: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.vision-image {
  flex: 1;
  min-width: 300px;
}

.vision-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.vision-text {
  flex: 2;
}

.vision-text h3 {
  color: #50ca6d;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.vision-text p {
  font-size: 19px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}



.section-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 30px;
 width: 88%;
  margin: 0 auto;
  border-radius: 6px;
  gap: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.left-section {
  padding-left: 30px;
  flex: 1.2;
}

.left-section h2 {
  font-size: 20px;
  color:#50ca6d ;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.left-section h2 i::before {
  
  padding-left: 25px;
  font-size: 24px;
  margin-right: 10px;
}

.left-section ul {
  list-style: none;
  padding-left: 30px;
  margin: 0;
}

.left-section ul li {
  margin-bottom: 12px;
  padding-left: 40px;
  position: relative;
  font-size: 18px;
  color: #333;
}

.left-section ul li::before {
  content: "🔵";
  position: absolute;
  left: 0;
  font-size: 16px;
}

.right-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-section img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    align-items: center;
  }
  .right-section {
    margin-top: 20px;
  }
}







.contact-info {
  height: 250px;
  background-color: #024972;
  color: white;
  flex: 1;
  min-width: 280px;
  padding: 30px;
  border-radius: 5px;
}

.contact-info a {
  color: #9cd9ff;
  text-decoration: underline;
}

.contact-form {
  flex: 2;
  min-width: 300px;
}

.contact-form h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-form p {
  margin-bottom: 20px;
  color: #555;
}

form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input {
  flex: 1;
  min-width: 200px;
  border: none;
  border-bottom: 1px solid #333;
  padding: 10px 5px;
  outline: none;
  font-size: 14px;
}

textarea {
  resize: none;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #333;
  font-size: 14px;
  margin-bottom: 20px;
}

button {
  background-color: #202755;
  color: white;
  padding: 12px 20px;
  border: none;
  width: 180px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #030825;
}

.policy-note {
  margin-top: 10px;
  font-size: 12px;
  color: #555;
}

.policy-note a {
  color: #0077b5;
  text-decoration: underline;
}



/******** ABOUT US PAGE ********/

/* Hero Section */
.about-hero {
  
  background-size: cover;
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.about-hero h1 {
  font-size: 40px;
  color: #111;
  text-align: center;
  font-weight: bold;

  display: inline-block;
  padding: 10px 30px;
  border-radius: 6px;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 16px;
  color: #555;
}

.breadcrumb a {
  color: #0c7b93;
  text-decoration: none;
}

/* About Section */
.about-section {
  padding: 60px 0;
  background-color: #fff;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
  flex: 1;
}

.section-label {
  color: #27ae60;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

.about-content h2 {
  font-size: 36px;
  color: #0c3c60;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  
  color: #333;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    margin: 0 auto;
  }
}

.global-section {
  padding: 60px 0;
  background-color: #fff;
}

.global-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.global-left {
  flex: 1;
  min-width: 300px;
}

.global-left h2 {
  font-size: 32px;
  color: #0c3c60;
  margin-top: 30px;
}

.global-left p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.global-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  flex: 1;
}

.global-right img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .global-grid {
    flex-direction: column;
  }

  .global-left,
  .global-right {
    width: 100%;
  }

  .global-left h2 {
    font-size: 28px;
  }
}

.craft-future-section {
  padding: 60px 0;
  background-color: #fff;
}

.craft-future-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.craft-future-text {
  flex: 1;
  min-width: 300px;
}

.craft-future-text h2 {
  font-size: 38px;
  color: #0c4d7a;
  margin-bottom: 20px;
}

.craft-future-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.craft-future-images {
  flex: 1;
  position: relative;
  min-width: 300px;
}

.girl-image {
  width: 500px;
  max-width: 100%;
  z-index: 1;
  border-radius: 20px;
  position: relative;
}

.future-overlay-images {
  position: absolute;
  top: 0;
  left: 200px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.future-overlay-images img {
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .craft-future-grid {
    flex-direction: column;
    text-align: center;
  }

  .future-overlay-images {
    position: static;
    margin-top: 20px;
    flex-direction: row;
    justify-content: center;
  }

  .girl-image {
    margin: 0 auto;
  }
}



/********** DHOLERA CITY ********/

.market-potential-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333;
}

.market-potential-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.market-potential-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 30px;
}

.market-list {
  list-style-type: disc;
  padding-left: 20px;
}

.market-list li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.navbar ul {
  display: flex;
  gap: 15px;
  list-style: none;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
  }
  .navbar ul.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}


/******** CONTACT US PAGE ******/

.contact-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #f9f9f9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.contact-container h2 {
  text-align: center;
  color: #0c7b93;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.contact-form button {
  padding: 12px;
  background: #27ae60;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
.contact-info {
  margin-top: 40px;
  text-align: center;
}
.contact-info p {
  margin: 5px 0;
}

/********** PROPERTY PAGE *********/

.feature-card {
  flex: 1 1 250px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  display: inline-block;
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.icon-blue {
  background-color: #e0f2fe;
}

.icon-green {
  background-color: #dcfce7;
}

.feature-card img {
  width: 30px;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
  }
}


.properties-container {
  max-width: 1200px;
  margin: auto;
}

.properties-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.property-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.property-image {
  height: 180px;
  background-color: #e5e7eb;
  position: relative;
}

.property-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #0d9488;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.property-content {
  padding: 20px;
}
.property-content h3{
  font-weight: 500;
  padding-top: 10px;
}

.label {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-right: 10px;
  color: #065f46;
}

.label-residential {
  background-color: #d1fae5;
}

.label-commercial {
  background-color: #e0f2fe;
  color: #1e40af;
}

.label-plot {
  background-color: #fef9c3;
  color: #92400e;
}

.location {
  font-size: 14px;
  color: #6b7280;
}

.price {
  color: #047857;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 15px 0;
}

.details-button {
  background-color: #047857;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

.details-button:hover {
  background-color: #065f46;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.features {
  font-size: 14px;
  color: #374151;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.features span {
  display: flex;
  align-items: center;
}

/********* SINGLE PRODUCTS LIST ********/

#prodetails .single-pro-image{
  width: 40%;
  margin-right: 50px;
}

.small-img-group{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.small-img-col{
  flex-basis: 24%;
  cursor: pointer;
}

#prodetails .single-pro-details{
  width: 50%;
  padding-top: 30px;
}
#prodetails .single-pro-details h4{
padding: 12px 0 15px 0  ;
}

#prodetails .single-pro-details h2{
font-size: 26px;
}
#prodetails .single-pro-details select{
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
}

#prodetails .single-pro-details input{
width: 56px;
height: 47px;
padding-left: 10px;
font-size: 16px;
margin-right: 10px;
}

#prodetails .single-pro-details input:focus{
outline: none;
}

#prodetails .single-pro-details button{
background: #088178;
color: #fff;
}

#prodetails .single-pro-details span{
  line-height: 25px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .product-wrapper {
    flex-direction: column;
  }

  .single-pro-image,
  .single-pro-details {
    width: 100%;
  }

  .small-img-group {
    gap: 8px;
  }

  .small-img-col {
    flex-basis: 23%;
  }
}

@media (max-width: 480px) {
  .single-pro-details h2 {
    font-size: 20px;
  }

  .single-pro-details h4,
  .single-pro-details h5 {
    font-size: 16px;
  }

  .small-img-col {
    flex-basis: 48%;
  }
}

/* Main container styles */
#prodetails .container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  box-sizing: border-box;
}

/* Image section */
.single-pro-image {
  flex: 1 1 45%;
  min-width: 300px;
}

/* Small thumbnails */
.small-img-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.small-img-col {
  flex: 1 1 22%;
  max-width: 22%;
}

/* Details section */
.single-pro-details {
  flex: 1 1 45%;
  min-width: 300px;
}

.single-pro-details select,
.single-pro-details input,
.single-pro-details button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

button.normal {
  background-color: #047857;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button.normal:hover {
  background-color: #065f46;
}

/* Responsive Fix for Mobile: ≤767px */
@media (max-width: 767px) {
  #prodetails .container {
    flex-direction: column;
    padding: 15px;
  }

  .single-pro-image,
  .single-pro-details {
    width: 100%;
  }

  .small-img-group {
    justify-content: center;
  }

  .small-img-col {
    flex: 1 1 48%;
    max-width: 48%;
  }

  .single-pro-details h2 {
    font-size: 20px;
  }

  .single-pro-details h4,
  .single-pro-details h5 {
    font-size: 16px;
  }

  .single-pro-details span {
    font-size: 14px;
  }
}



/* Add this inside a <style> tag or your CSS file */
@media screen and (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .navbar.active {
    display: flex;
  }

  .nav-buttons {
    /* flex-direction: row; */
    gap: 10px;
    margin-top: 10px;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
}

/* On desktop, always show the navbar */
@media screen and (min-width: 769px) {
  .navbar {
    display: flex !important;
  }

  .hamburger {
    display: none;
  }
}



.header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo h1 {
  margin: 0;
  color: #0c7b93;
}

.logo label {
  color: #27ae60;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
}

#nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

#nav-menu li a {
  text-decoration: none;
  color: #0c7b93;
}

.nav-buttons a {
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  color: white;
}

.nav-buttons a:first-child {
  background-color: #27ae60;
  color: white;
}

.nav-buttons a:last-child {
  background-color: #0c7b93;
  color: white;
}







/* Responsive CSS */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .navbar.active {
    display: flex;
  }

  .nav-buttons {
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
    margin-top: 10px;
  }

  #nav-menu {
    flex-direction: column;
    gap: 15px;
  }
}


h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.faq-item {
  max-width: 1200px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fdfdfd;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

.partner-form-section {
  background-color: #f8f9fb;
  padding: 60px 20px;
}

.form-container {
  max-width: 700px;
  margin: auto;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
}

.form-container h2 {
  text-align: center;
  color: #0c7b93;
  margin-bottom: 10px;
}

.form-container p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  background-color: #0c7b93;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #095f72;
}






.channel-partner-main {
  padding: 60px 20px;
  background-color: #f8f9fb;
}

.info-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
max-width: 1400px;
  margin: auto;
}

.info-block {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
}

.info-block h2 {
  color: #0c7b93;
  margin-top: 25px;
}

.info-block ul,
.info-block ol {
  padding-left: 20px;
  color: #333;
  line-height: 1.6;
}

/* Use previous styles for .form-container and .form-group */



.container {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.faq-card {
  width: 40%;
  background-color: #133e69;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.faq-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 15px 20px;
  font-weight: 600;
  font-size: 1.1em;
  background-color: #e9ecef;
  color: #333;
}

.faq-answer {
  padding: 0 20px;
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-card.active .faq-answer {
  padding: 15px 20px;
  max-height: 500px;
}

@media (max-width: 768px) {
  .faq-card {
    width: 100%;
  }
}



.profile-container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.profile-header {
  text-align: center;
  margin-bottom: 30px;
}

.profile-header h1 {
  margin: 0;
  color: #2c3e50;
}

.profile-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.option-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.option-card:hover {
  background-color: #e0f7fa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.option-card a {
  text-decoration: none;
  color: #00796b;
  font-weight: 600;
  display: block;
}

@media (max-width: 600px) {
  .profile-header h1 {
    font-size: 22px;
  }
}


/********  SIGN UP PAGE *********/

.signup-container {
  max-width: 400px;
  margin: 60px auto;
  background: white;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.signup-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

.signup-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #555;
}

.signup-container input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.signup-container button {
  width: 100%;
  padding: 12px;
  background: #00796b;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.signup-container button:hover {
  background: #005f56;
}

.login-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.login-link a {
  color: #00796b;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 500px) {
  .signup-container {
    margin: 30px 15px;
    padding: 25px 20px;
  }
}

/****** LOGIN PAGE *******/

.login-container {
  max-width: 400px;
  margin: 60px auto;
  background: white;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

.login-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #555;
}

.login-container input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.login-container button {
  width: 100%;
  padding: 12px;
  background: #00796b;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.login-container button:hover {
  background: #005f56;
}

.signup-link {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.signup-link a {
  color: #00796b;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 500px) {
  .login-container {
    margin: 30px 15px;
    padding: 25px 20px;
  }
}


.cart-container {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}
.cart-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.cart-item img {
  width: 150px;
  height: auto;
  border-radius: 10px;
}
.cart-details {
  flex: 1;
}


.dholera-btn {
  background: linear-gradient(135deg, #006d77, #83c5be);
  color: white;
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  width: 200px;
}

.dholera-btn:hover {
  background: linear-gradient(135deg, #83c5be, #006d77);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.dholera-btn {
  background: linear-gradient(135deg, #017457, #108a51);
  color: white;
  text-decoration: none;
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  width: 220px;
  text-align: center;
}

.dholera-btn:hover {
  background: linear-gradient(135deg, #83c5be, #1e8641);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

/* Responsive for phones */
@media (max-width: 768px) {
  .button-container {
    justify-content: center;
  }
  .dholera-btn {
    width: 45%;
  }
}

/* For extra small devices (optional) */
@media (max-width: 480px) {
  .dholera-btn {
    width: 40%;
  }
}