* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
        font-family: "Roboto", sans-serif;
    }

    .container {
      max-width: 1250px;
      margin: 0 auto;
      width: 100%;
      padding: 0 15px;
    }

    header {
      background: #fff;
      color: #000;
      padding: 5px 0;
	  padding-bottom:0px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 1000;
    }

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 22px;
      font-weight: bold;
      color: #000;
    }

    .nav-area {
      display: flex;
      align-items: center;
      gap: 20px;
      flex: 1;
      justify-content: flex-end;
    }

    .menu {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .menu li {
      position: relative;
    }

    .menu a {
      color: #000;
      text-decoration: none;
      padding: 8px 12px;
      display: flex;
      align-items: center;
      transition: color 0.2s ease;
	      font-size: 17px;
    }

    .menu a:hover {
      color: #ffd676;
    }

    .menu .has-submenu > a::after {
      content: "▼";
      font-size: 10px;
      margin-left: 5px;
      display: inline-block;
      transition: transform 0.3s ease;
      transform-origin: center;
      width: 10px;
      text-align: center;
    }
.menu a::before {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffd676;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu a:hover::before {
  transform: scaleX(1);
}

    .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #f9f9f9;
      display: none;
      flex-direction: column;
      min-width: 280px;
      z-index: 100;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      list-style: none;
      padding: 0;
    }

    .submenu li {
      list-style: none;
    }

    .submenu a {
      padding: 10px 15px;
      color: #000;
    }

    .submenu a:hover {
      background-color: #eee;
    }

    .has-submenu:hover .submenu,
    .has-submenu:has(.submenu:hover) .submenu {
      display: flex;
    }

    .has-submenu:hover > a::after {
      transform: rotate(180deg);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      margin-left: 15px;
      position: relative;
      z-index: 1100;
    }

    .hamburger .bar {
      height: 3px;
      width: 25px;
      background: #000;
      margin: 3px 0;
      transition: opacity 0.3s ease;
    }

    .hamburger .close-icon {
      display: none;
      font-size: 26px;
      line-height: 1;
      color: #000;
      margin-top: -3px;
    }

    .hamburger.active .bar {
      display: none;
    }

    .hamburger.active .close-icon {
      display: block;
    }

    .mobile-ctc {
      color: #000;
      white-space: nowrap;
     font-size: 17px;
	 background:#ffd676;
	 padding:10px;
	 border-radius:4px;
    }
	  .mobile-ctc a{
		  color:#000 !important;
		  text-decoration:none;
	  }

    /* Mobile Styles */
    @media (max-width: 767px) {
      .menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 60px 20px;
        gap: 15px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
      }

      .menu.active {
        right: 0;
      }

      .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #f9f9f9;
        display: none;
        flex-direction: column;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        width: 200px;
        z-index: 1001;
      }

      .menu li.show-submenu > .submenu {
        display: flex !important;
      }

      .has-submenu {
        position: relative;
      }

      .has-submenu:hover .submenu {
        display: none;
      }

      .has-submenu > a::after {
        transform: rotate(0deg);
      }

      .has-submenu.show-submenu > a::after {
        transform: rotate(180deg);
      }

      .hamburger {
        display: flex;
      }
    }
	
	
	
	
	
.spotlight-section {
  position: relative;
  height: 100vh;
  color: #fff;
  background-image: url('../images/sobha-apartments-in-bangalore.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.spotlight-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.spotlight-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.left-content {
  flex: 1;
  min-width: 300px;
}

.left-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.left-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #FFD700;
  color: #FFD700;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #FFD700;
  color: #000;
}

.right-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 330px;
}

.card {
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 10px 15px;
}

.card-content .label {
  color: #D4AF37;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 6px;
}

.card-content .text {
  font-weight: 600;
  font-size: 16px;
      text-transform: uppercase;
}


/* 🔧 Responsive Styles */
@media (max-width: 991px) {
  .spotlight-section {
    height: auto;
    min-height: 100vh;
    padding: 40px 0;
  }

  .spotlight-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .left-content,
  .right-cards {
    width: 100%;
  }

  .left-content h1 {
    font-size: 32px;
  }

  .right-cards {
    max-width: 100%;
  }
  .right-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
	        flex-direction: row;
  }

  .right-cards .card {
    width: calc(50% - 15px); /* 2 columns with 30px gap */
  }
}
@media (max-width: 767px) {
  .right-cards {
    flex-direction: column;
    gap: 20px;
  }

  .right-cards .card {
    width: 100%;
  }
}



.about-section {
  padding: 60px 0;
}

.about-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-subtitle {
  color: #d6a127;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 16px;
}

.about-title {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #333;
}

.about-text a {
 
  text-decoration: none;
}

.read-more-btn {
  background: #000;
  color: #fff; /* white text */
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.read-more-btn:hover {
  background: #DBA622; /* hover background */
  color: #000;         /* black text on hover */
}

.about-image {
  flex: 1;
  text-align:center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin:0 auto;
  
}

@media (max-width: 767px) {
  .about-wrapper {
            flex-direction: column;
  }

  .about-text,
  .about-image {
    width: 100%;
  }
 .about-image img{width:100%}
  .about-title {
    font-size: 28px;
  }
}



.projects-section {
  padding: 60px 0;
  background: #f1f1f1;
}
.section-subtitle {
  font-size: 16px;
  color: #DBA622;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.section-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
  margin-bottom: 40px;
}
.projects-grid {
  column-count: 3;
  column-gap: 24px;
  margin-top: 40px;
}

.project-card {
  background: #fff;
  display: inline-block;
  margin: 0 0 24px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
 
  overflow: hidden;
  break-inside: avoid;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center;
}

.project-content {
  padding: 20px;
}

.project-location {
  font-size: 16px;
  color: #DBA622;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-title {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
  color: #222;
}

.project-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.read-more-btn:hover {
  background-color: #DBA622;
  color: #000;
}

@media (max-width: 1200px) {
  .projects-grid {
    column-count: 2;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .project-card {
    flex: 0 1 calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .projects-grid {
    gap: 20px;
  }

  .project-card {
    flex: 0 1 100%;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    column-count: 1;
  }
}



.talk-about-section {
  background-color: #000;
  color: #fff;
  padding: 60px 0;
}

.talk-about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.talk-left {
  flex: 1;
  min-width: 300px;
}

.talk-heading {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.talk-subtext {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 30px;
  max-width: 500px;
}

.talk-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.talk-btn:hover {
  background-color: #DBA622;
  color: #000;
  border-color: #DBA622;
}

.talk-right {
  flex: 1;
  min-width: 300px;
}

.talk-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
  .talk-about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .talk-left {
  min-width: 100%;
}
.talk-subtext {  min-width: 100%;}
.talk-right {

  min-width: 100%;
}
  .talk-heading {
    font-size: 32px;
  }

  .talk-btn {
    margin-top: 20px;
  }
}


.why-choose-section {
  background-color: #fff;
  padding: 60px 20px;
 
}

.why-choose-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.why-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.why-block {
  margin-bottom: 30px;
}

.why-block h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-block p {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
  margin-bottom:20px;
}

.sobha-popular-section {
  background-color: #fff;
  padding: 50px 20px;

}

.sobha-popular-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.sobha-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.sobha-desc {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

.highlight-link {
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
}

.highlight-link:hover {
  text-decoration: underline;
}

.sobha-footer {
  background-color: #0e0e0e;
  color: #fff;
  padding: 50px 0px;

}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  margin: 0 auto;
  gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-left h4,
.footer-right h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.footer-left{text-align:center;}
.footer-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}

.footer-center {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-direction: column;
}

.footer-icon svg {
    display: block;
    height: 3em;
    position: relative;
    width: 6em;
	fill: #fff;
	}
	.footer-contact{text-align:center}

.footer-contact .contact-link {
  font-size: 18px;
  font-weight: 600;
  color: #1e90ff;
  text-decoration: none;

  
}

.footer-contact .contact-desc {
  color: #fff;
  font-size: 16px;
  padding-bottom:5px;
  display:block;
}

.footer-contact .contact-number {
  color: #f0b310;
  font-weight: 600;
  font-size: 16px;
}
.footer-right{text-align:center;}
.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right ul li {
  margin-bottom: 8px;
}

.footer-right ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-right ul li a:hover {
  text-decoration: underline;
}

.copyright-wrapper {
  background-color: #fff;
  padding: 20px 0;
  font-size: 13px;
  text-align: center;
  color: #555;
  border-top: 1px solid #eee;
}

.copyright-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.copyright-text {
  margin: 0;
  color: #222;
}

.highlight-link {
  color: #ffd676;
  text-decoration: none;
}

.highlight-link:hover {
  text-decoration: underline;
}

.disclaimer-text {
  margin-top: 10px;
  color: #777;
  font-size: 12px;
  line-height: 1.6;
}



.innerpage-spotlight {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #fff;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.spotlight-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
  height: 100%;
}

.spotlight-left {
  flex: 3 1 22%;
  text-align: center;
}
.spotlight-left.text-left{
	text-align:left !important;
}
.spotlight-ul-div{
	margin-top:30px;
}
.spotlight-ul{
	list-style:none;
display:flex;
	flex-direction:row;
	    flex-wrap: wrap;
		gap:20px;
}
.spotlight-ul li{
width:calc(50% - 10px);
display:flex;
gap:10px;
    align-items: center;
}
.spotlight-ul li svg{
	width:25px;
	fill:#ffd676;
	    align-items: center;
}
.spotlight-left h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.spotlight-left p {
  font-size: 18px;
}
.highlight-icon{
	display:flex;
	align-items:center;
	gap:10px;
}
.highlight-icon.justify-content-center{justify-content:center;}
.highlight-icon svg {
 fill:#ffd676;
 width:20px;
}

.spotlight-form {
  flex: 1 1 22%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 8px;
}

.spotlight-form h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #ffc107;
  text-align: center;
}
/*
.spotlight-form input {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  border: none;
}
*/
.spotlight-form button {
  width: 100%;
  background-color: #ffd676;
  color: #000;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size:16px;
}

/* 🔁 Responsive Layout Below 767px */
@media (max-width: 767px) {
  .innerpage-spotlight {
    height: 100%;
    padding: 40px 0;
  }

  .spotlight-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: auto;
  }

  .spotlight-left,
  .spotlight-form {
    flex: 1 1 100%;
    width: 100%;
    text-align: center;
  }

  .spotlight-left h1 {
    font-size: 32px;
  }
}


    .innerpage-about-section {
      padding: 60px 20px;
      background: #fff;
      position: relative;
    /*  overflow-x: hidden;
  overflow-y: visible;*/
    }

    .about-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  

}

    

    .about-content {
       width: 65%;
    display: flex;
    flex-direction: column;
	    align-items: flex-start;
	overflow:hidden;
    }

    .about-content h2 {
      margin-bottom: 20px;
    }

    .about-content p {
      margin-bottom: 20px;
	  line-height:26px;
    }

    .about-sidebar {
         width: 35%;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    }

    .sticky-box {

      background: #fff;
      padding: 20px;
      border-radius: 0px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
	      position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    top: 0px;
	    border: 1px solid #ffd676;
    }

    .sidebar-heading {
      margin-bottom: 10px;
      font-size: 18px;
      font-weight: 600;
      color: #000;
    }

    .sidebar-logo {
      width: 100%;
      max-width: 200px;
      margin: 0 auto 10px;
      display: block;
    }

    .sidebar-contact {
      font-weight: bold;
      font-size: 16px;
      color: #000;
    }

    .property-expert {
      margin-bottom: 30px;
    }

    .booking-form-section {
      margin-top: 20px;
    }

    .form-description {
      margin: 10px 0;
      font-size: 16px;
      color: #333;
    }

    .visit-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }

    .visit-form input {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }

    .visit-form button {
      background-color: #ffd676;
      border: none;
      padding: 12px;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
	  font-size: 16px;
    }

    .visit-form button:hover {
      background-color: #e5b849;
    }

    .project-info-box {
      display: flex;
      flex-wrap: wrap;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
      padding: 20px;
      border-radius: 0px;
      gap: 15px 30px;
      margin-bottom: 20px;
	   border: 1px solid #ffd676;
    }

    .project-info-box div {
      width: 45%;
      font-weight: bold;
      font-size: 15px;
    }

    .icon {
      margin-right: 8px;
    }

    .swiper-slide {
      background: #f1f1f1;
      padding: 20px;
      text-align: center;
      font-size: 18px;
      border-radius: 0px;
    }

    .swiper-slide img {
      width: 100%;
      border-radius: 0px;
    }

    .innerpage-floor-plan {
      overflow: hidden;
      margin-top: 30px;
	  width:100%;
    }

    @media (max-width: 767px) {
      .about-container  {
        flex-direction: column;
      }

      .about-content,
      .about-sidebar {
       width:100%;
      }

      .sticky-box {
        position: relative;
        top: auto;
        margin-top: 30px;
      }
    }


.swiper-slide {
  background: #eee;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  border-radius: 0px;
}
.swiper-slide img{
width:100%;
}
.innerpage-floor-plan{
overflow:hidden;
}


.amenities-section {
  margin-top: 50px;
}

.amenities-section h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #222;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-item {
  background: #fff;
  padding: 20px;
  border-radius: 0px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
   border: 1px solid #ffd676;
}

.amenity-item:hover {
  transform: translateY(-5px);
}

.amenity-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.amenity-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-top:15px;
}

/* Responsive */
@media (max-width: 991px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*
@media (max-width: 575px) {
  .amenities-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}*/
.amenity-item svg{width:50px;
fill: #DBA622;
    transition: fill 0.3s; 
	margin-bottom:15px;}
	
	.brochure-btn {
  display: inline-block;
  background-color: #ffd676;
  color: #000;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  margin-top:30px;
  cursor:pointer;
}

.brochure-btn:hover {
  background-color: #e5b849;
}

.gallery-section {
  padding: 60px 20px;
  background: #f1f1f1;
  overflow: hidden;
}

.gallery-section .swiper-slide {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.gallery-section .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}



.faq-map-section {
  padding: 60px 20px;
  background-color: #f1f1f1;
}

.faq-map-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.faq-map-left,
.faq-map-right {
  flex: 1 1 50%;
}

.faq-map-left iframe {
  width: 100%;

  min-height: 400px;
    max-height: 400px;
  border-radius: 8px;
}
.talk-about-link{
	color:#fff;
}
img{max-width:100%;}
.faq-map-left img{
	width: 100%;
	margin-bottom:20px;

}
.faq-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.faq-accordion .faq-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  display: none;
  font-size: 16px;
  color: #000;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .faq-map-container {
    flex-direction: column;
  }

  .faq-map-left, .faq-map-right {
    flex: 1 1 100%;
  }

  .faq-map-left iframe {
    min-height: 300px;
  }
}

.swiper-button-next, .swiper-button-prev{color:#ffd676 !important; font-weight:bold;}



.contact-sec {
	position: relative;
	
	width: 100%;

	padding-top: 80px;
	padding-bottom: 80px;

	background:#fff;
}

.contact-inner {
	display: flex;
	flex-direction: row;
	gap: 20px;

	margin-top: 30px;
}

.contact-info {
	width: 50%;
	padding-right: 30px;
}

.contact-form {
	width: 50%;

}

.heading {
	font-size: 34px;
	text-align: center;
	margin-bottom: 30px;
	font-weight: 600;
	line-height: 40px;

}

.contact-info-box {
	display: flex;
	flex-direction: row;
	gap: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
	padding: 20px;
	box-shadow: 0 3px 24px rgba(0, 0, 0, .08);
	border-radius: 10px;

}

.contact-icon img {
	width: 35px;
	padding-top: 5px;
}

.contact-dec {
	font-size: 15px;
}

.contact-dec h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.contact-dec p {
	margin-bottom: 5px;
}

.contact-dec a {
	color: #ffd676
}

.bottom-form-div {
	box-shadow: 0 3px 24px rgba(0, 0, 0, .08);
	padding: 30px 30px;
	border-radius: 10px;

}

.bottom-form-div .form-title {
	margin-bottom: 20px;
	text-align: center;
	font-weight: 600;
	font-size: 20px;
}

.error {
	margin: 8px 0px;
	display: none;
	color: red;
	position: absolute;
	left: 3px;
	font-size: 12px;
	float: left;
	bottom: -24px;
	margin-left: 11px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}


input[type=number] {
	-moz-appearance: textfield;
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    height: 40px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.textarea {
    height: 80px;
    font-family: "Poppins", serif;
}
.top-form-btn {
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px 5px 5px 5px;
    min-height: 40px;
    width: 100%;
    border: none;
    background: #ffd676;
    transition: .5s;
    cursor: pointer;
}
.top-form-btn:hover {
    background: #000;
    color: #fff;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #f7a117;
    outline: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background: white;
  padding: 20px;
  margin: 10% auto;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}
button{outline:none;border:0; cursor:pointer;}
.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  cursor: pointer;
}
.popup-form{margin-top:20px;}
.popup-title{text-align:center; font-size:20px;}

  .pricing-section{
	      padding: 60px 20px;
    background: #f9f9f9;
 

  }
  .heading-h2 {
      font-size: 30px;
      font-weight: 600;
      color: #333;
      margin-bottom: 40px;
	  text-align:center;
    }

    .pricing-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
	  text-align:center;
    }

    .pricing-card {
      border: 2px solid #2b2d42;
      border-radius: 14px;
      padding: 30px 20px;
      width: 300px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }

    .pricing-card h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: #000;
    }

    .pricing-card p {
      font-size: 18px;
      margin: 0 0 20px;
      color: #000;
    }

    .pricing-line {
      border-top: 1px solid #aaa;
      margin: 20px 0;
    }

    .pricing-card .price {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 20px;
      color: #000;
    }

    .pricing-card button {
      background-color: #ffe082;
      color: #000;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
	   font-size: 17px;
    }

    .pricing-card button:hover {
      background-color: #ffca28;
    }
	.text-center{text-align:center;}
	
	.eael-data-table {
    width: 100%;
    height: auto;
    margin: 0;
    border-collapse: separate;
    border: none;
}
.eael-data-table thead tr th {
    color: #fff;
    background-color: #C8A964;
	    text-align: center;
}
 .eael-data-table tbody>tr:nth-child(2n+1) td {
    color: #000;
}
.eael-data-table tbody>tr:nth-child(2n) td {
    color: #000;
    background: #C8A96470;
}
.eael-data-table tbody tr td {
    padding: 20px 15px;
    font-size: 16px;
text-align: center;
    line-height: 1;
    border-width: 2px;
    border-style: none;
    background-clip: padding-box;
}
.eael-data-table tr {
    border-style: none;
}
.eael-data-table thead tr th {
    padding: 20px 15px;

    font-size: 16px;
    font-weight: 600;

    line-height: 1;
    color: #fff;
    border-color: #000;
    border-width: 2px;
    border-style: none;
    background-clip: padding-box;
}
.project-highight .amenities-grid{
	margin-top:35px;
}
.project-highight .amenity-item p{
	font-size:20px;
	text-transform:uppercase;
}
.project-highight .amenity-item p.small{
	font-size:16px;
}


.fourRow {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top:30px;
}

.fourCol {
  flex: 1 1 calc(25% - 15px); /* 25% width minus some for gap */
  box-sizing: border-box;
  background: #DBA622;
  padding: 10px;
  text-align: center;
}
.fourCol h3{
	margin-bottom:10px;
	font-size:18px;
}
/* Optional: Responsive handling for smaller screens */
@media (max-width: 1024px) {
  .fourCol {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .fourCol {
    flex: 1 1 100%;
  }
}

.fourCol img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.openModalBtn{cursor:pointer;}
.plan-section h2{font-size:30px;}


.fivesecRow {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom:30px;
}

.fiveCol {
  flex: 1 1 calc(20% - 16px); /* 20% per column minus gap compensation */
  box-sizing: border-box;
  background: #f9f9f9;
  padding: 10px;
  text-align: center;
}

/* Responsive layout: 3 columns on medium screens */
@media (max-width: 1024px) {
  .fiveCol {
    flex: 1 1 calc(33.33% - 14px);
  }
}

/* 2 columns on smaller screens */
@media (max-width: 768px) {
  .fiveCol {
    flex: 1 1 calc(50% - 10px);
  }
}

/* 1 column on very small screens */
@media (max-width: 480px) {
  .fiveCol {
    flex: 1 1 100%;
  }
}

.fiveCol img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.floating-chat-offer {
    position: fixed;
    right: 10px;
    bottom: 100px;
    width: 45px;
    z-index: 11;
}
.floating-chat-offer .offer-group {
    position: relative;
}
.floating-chat-offer .chat-group {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: relative;
}
