@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
* {
  font-family: "League Spartan", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}
    
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  z-index: 100;
  padding: 2px !important;
}
    
.navbar-brand img {
  max-height: 55px; 
}
    
@media(max-width: 1200px){
  .navbar-brand img {
    max-height: 40px; 
  }

  .navbar {
    padding: 0.2rem 0.2rem !important; 
    text-align: center;
  }

  .nav-link {
    font-size: 12px !important;
  }

}
  
.navbar-toggler{
  color: #000 !important;
  font-size: 1.3rem;
}
      
.navbar-nav {
  margin-left: auto;
}
    
.nav-link{
  font-size: 18px;
  color: #000;
}
  
.nav-link:hover{
  color: #6b4e2e;
}

/*---------------------Popup Form Code-------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  overflow: auto;
  backdrop-filter: blur(6px);
}

.popup-content {
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  margin: 5% auto;
  padding: 35px 30px;
  border-radius: 15px;
  max-width: 450px;
  position: relative;
  border: 1px solid #a13909;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 8px rgba(210, 165, 98, 0.2);
  transition: all 0.4s ease;
}

.close-icon {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #a13909;
  transition: color 0.3s ease;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #5e3a0d;
  font-size: 23px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.popup-content h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #e85a19;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.popup-content .labelpara {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #555;
  text-align: center;
  line-height: 1.5;
}

.popup-content .form-group {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.input-group-prepend .input-group-text {
  background: linear-gradient(135deg, #fff, #f0e1cb);
  border: none;
  border-radius: 6px 0 0 6px;
  padding: 12px;
  color: #a13909;
  display: flex;
  align-items: center;
}

.input-group-text i {
  font-size: 1.1rem;
}

.popup-content input {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 0 6px 6px 0;
  box-sizing: border-box;
  font-size: 16px;
  background: transparent;
  outline: none;
  color: #333;
}

.popup-content input:focus {
  box-shadow: 0 0 6px rgba(210, 132, 98, 0.7);
}

.submit-button {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #d06230, #a13909);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Cinzel", serif;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.submit-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
    padding: 25px 20px;
  }
}

@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 12px;
    font-weight: 700;
  }

  .popup-content input {
    font-size: 14px;
  }

  .submit-button {
    font-size: 14px;
    font-weight: 800;
    padding: 8px 10px;
  }
}

/*------------------------Home Page Section-----------------------*/
.for-desktop {
  display: block;
  width: 100%;
  height: 650px;  
}
  
.for-mobile {
  display: none;
  max-width: 768px !important; 
  width: 100%;   
  height: auto;   
}
  
@media (max-width: 768px) {
  .for-desktop {
    display: none;
  }

  .for-mobile {
    display: block;
  }
}

/*------------------------Overview Section-----------------------*/
#overview {
  background: linear-gradient(180deg, #fdfcf9 0%, #f8f3ea 100%);
  padding: 50px 20px;
}

#overview .overcontent {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  max-width: 100%;
}

#overview .img-column,
#overview .text-column {
  flex: 1;
}

#overview .imgwrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
}

#overview .imgwrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#overview .imgwrapper:hover img {
  transform: scale(1.05);
}

#overview .about {
  background: linear-gradient(135deg, #ffffff 0%, #f7efe3 50%, #f0e1cb 100%);
  padding: 55px 45px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #e54e0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

#overview .hr-lines {
  position: relative;
  display: inline-block;
  font-size: 22px;
  letter-spacing: 1px;
  color: #af3c07;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

#overview .hr-lines::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, #d4af37, #ffebc1);
  border-radius: 2px;
}

#overview .section-title {
  font-size: 30px;
  color: #5e3a0d;
  font-weight: 500;
  margin-bottom: 22px;
}

#overview p {
  line-height: 1.5;
  font-size: 18px;
  color: #2c2c2c;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  #overview {
    padding: 40px 20px;
  }

  #overview .overcontent {
    flex-direction: column !important;
    gap: 25px;
  }

  #overview .about {
    margin-top: 0;
    padding: 40px 30px;
    height: auto;
  }

  #overview .imgwrapper {
    height: auto;
  }

  #overview .section-title {
    font-size: 26px;
  }

  #overview p {
    font-size: 17px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  #overview {
    padding: 25px 15px;
  }

  #overview .overcontent {
    gap: 20px;
  }

  #overview .about {
    padding: 35px 25px;
  }

  #overview .section-title {
    font-size: 22px;
  }

  #overview .imgwrapper img {
    width: 100%;
    height: auto;
  }

  #overview p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 500px) {
  #overview {
    padding: 20px 10px;
  }

  #overview .overcontent {
    gap: 15px;
  }

  #overview .about {
    padding: 25px 18px;
  }

  #overview .section-title {
    font-size: 20px;
  }

  #overview .imgwrapper img {
    width: 100%;
    height: auto;
  }

  #overview p {
    font-size: 16px;
    line-height: 1.5;
  }
}

/*-------------------Duet Overview------------------*/
#overview-duet {
  background: linear-gradient(180deg, #fdfcf9 0%, #f8f3ea 100%);
  padding: 50px 20px;
}

#overview-duet .overcontent {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  max-width: 100%;
}

#overview-duet .img-column,
#overview-duet .text-column {
  flex: 1;
}

#overview-duet .imgwrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
}

#overview-duet .imgwrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#overview-duet .imgwrapper:hover img {
  transform: scale(1.05);
}

#overview-duet .about {
  background: linear-gradient(135deg, #ffffff 0%, #f7efe3 50%, #f0e1cb 100%);
  padding: 55px 45px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #e54e0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

#overview-duet .hr-lines {
  position: relative;
  display: inline-block;
  font-size: 22px;
  letter-spacing: 1px;
  color: #af3c07;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
}

#overview-duet .hr-lines::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, #d4af37, #ffebc1);
  border-radius: 2px;
}

#overview-duet .section-title {
  font-size: 30px;
  color: #5e3a0d;
  font-weight: 500;
  margin-bottom: 22px;
}

#overview-duet p {
  line-height: 1.5;
  font-size: 18px;
  color: #2c2c2c;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  #overview-duet {
    padding: 40px 20px;
  }

  #overview-duet .overcontent {
    flex-direction: column !important;
    gap: 25px;
  }

  #overview-duet .about {
    margin-top: 0;
    padding: 40px 30px;
    height: auto;
  }

  #overview-duet .imgwrapper {
    height: auto;
  }

  #overview-duet .section-title {
    font-size: 26px;
  }

  #overview-duet p {
    font-size: 17px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  #overview-duet {
    padding: 25px 15px;
  }

  #overview-duet .overcontent {
    gap: 20px;
  }

  #overview-duet .about {
    padding: 35px 25px;
  }

  #overview-duet .section-title {
    font-size: 22px;
  }

  #overview-duet .imgwrapper img {
    width: 100%;
    height: auto;
  }

  #overview-duet p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 500px) {
  #overview-duet {
    padding: 20px 10px;
  }

  #overview-duet .overcontent {
    gap: 15px;
  }

  #overview-duet .about {
    padding: 25px 18px;
  }

  #overview-duet .section-title {
    font-size: 20px;
  }

  #overview-duet .imgwrapper img {
    width: 100%;
    height: auto;
  }

  #overview-duet p {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  #overview-duet .overcontent {
    flex-direction: column !important;
    gap: 25px;
  }

  #overview-duet .img-column {
    order: 1;
  }
  
  #overview-duet .text-column {
    order: 2;
  }
}

/*---------------------Configuration Section---------------------*/
.configuration-sec {
  background: linear-gradient(135deg, #fffaf2 0%, #f8f0e4 100%);
  padding: 60px 20px;
  color: #5e3a0d;
}

.config-heading {
  text-align: center;
}

.config-heading h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5e3a0d;
}

.config-heading .underline {
  width: 70px;
  height: 3px;
  background: #af3c07;
  border-radius: 5px;
  margin: 0 auto 40px auto;
}

.config-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.config-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e5d4b1;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.config-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.config-type {
  font-size: 22px;
  font-weight: 500;
  color: #333;
}

.config-area {
  font-size: 20px;
  color: #55452e;
  font-weight: 500;
  margin-left: 10px;
}

.config-btn {
  background: #cb4609;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.config-btn:hover {
  background: #af3c07;
}

@media (max-width: 991px) {
  .configuration-sec {
    padding: 50px 30px;
  }

  .config-heading h2 {
    font-size: 32px;
  }

  .config-heading .underline {
    margin-bottom: 30px;
  }

  .config-list {
    max-width: 100%;
    padding: 0 10px;
    gap: 16px;
  }

  .config-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px;
    border-radius: 40px;
  }

  .config-type {
    font-size: 20px;
  }

  .config-area {
    font-size: 16px;
    margin-left: 0;
  }

  .config-btn {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .configuration-sec {
    padding: 40px 25px;
  }

  .config-heading h2 {
    font-size: 28px;
    text-align: center;
  }

  .config-heading .underline {
    margin: 0 auto 25px auto;
  }

  .config-item {
    padding: 20px;
    gap: 10px;
    border-radius: 32px;
    text-align: center;
    align-items: center;
  }

  .config-type {
    font-size: 18px;
  }

  .config-area {
    font-size: 15px;
  }

  .config-btn {
    font-size: 14px;
    width: 100%;
    padding: 10px 0;
  }
}

@media (max-width: 575px) {
  .configuration-sec {
    padding: 30px 10px;
  }

  .config-heading h2 {
    font-size: 24px;
    text-align: center;
  }

  .config-heading .underline {
    margin: 0 auto 20px auto;
  }

  .config-list {
    gap: 20px;
  }

  .config-item {
    padding: 18px;
    border-radius: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .config-type {
    font-size: 20px;
  }

  .config-area {
    font-size: 18px;
  }

  .config-btn {
    font-size: 16px;
    padding: 9px 0;
    width: 100%;
  }
}

/*----------------------Amenities Section--------------------*/
#amenities-sec {
  background: linear-gradient(135deg, #ffffff 0%, #f7efe3 50%, #f0e1cb 100%);
  padding: 50px 20px;
}

.container-amenities {
  max-width: 1200px;
  margin: 0 auto;
}

.amenities-title {
  text-align: center;
  font-size: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #5e3a0d;
  margin-bottom: 30px;
}

.tabs {
  text-align: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tab-btn {
  background: transparent;
  color: #5e3a0d;
  border: none;
  padding: 10px 25px;
  margin: 0 8px;
  font-size: 19px;
  font-weight: 500;
  border: 1px solid #af3c07;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: #5c2207;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tab-btn.active {
  background: linear-gradient(135deg, #e54e0a, #af3c07);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.amenities-list ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-list li {
  position: relative;
  padding-left: 25px;
  font-size: 21px;
  font-weight: 500;
  color: #333;
  line-height: 2;
  transition: color 0.3s;
}

.amenities-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #e54e0a;
  font-size: 22px;
  line-height: 1;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  #amenities-sec {
    padding: 30px 20px;
  }
  
  .amenities-title {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .tab-btn {
    padding: 8px 18px;
    font-size: 16px;
    margin: 5px;
  }

  .amenities-list ul {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }

  .amenities-list li {
    font-size: 19px;
    padding-left: 20px;
  }

  .amenities-list li::before {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  #amenities-sec {
    padding: 30px 20px;
  }

  .amenities-title {
    font-size: 25px;
    margin-bottom: 18px;
  }

  .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
  }

  .tab-btn {
    flex: 1;
    max-width: 140px;
    padding: 8px 10px;
    font-size: 15px;
    border-radius: 40px;
  }

  .amenities-list ul {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }

  .amenities-list li {
    font-size: 14px;
    padding-left: 18px;
  }

  .amenities-list li::before {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  #amenities-sec {
    padding: 30px 20px;
  }

  .amenities-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
  }

  .tab-btn {
    flex: 1;
    max-width: 140px;
    padding: 8px 8px;
    font-size: 14px;
    border-radius: 35px;
  }

  .amenities-list ul {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
  }

  .amenities-list li {
    font-size: 12px;
    padding-left: 15px;
  }
}

/*-----------------------Project Gallery Section-------------------*/
.project-gallery-sec {
  background: linear-gradient(135deg, #ffffff 0%, #f7efe3 50%, #f0e1cb 100%);
  padding: 50px 20px;
}

.gallery-heading h2 {
  font-size: 36px;
  color: #5e3a0d;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.underline {
  width: 80px;
  height: 3px;
  background: #e54e0a;
  margin: 0 auto 30px;
  border-radius: 10px;
}

.gallery-layout {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-left, .gallery-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-left-bottom, .gallery-top {
  display: flex;
  gap: 20px;
}

.gallery-main {
  display: block;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  border: 1px solid #d07402;
  transition: all 0.4s ease;
}

.gallery-small {
  display: block;
  flex: 1;
  overflow: hidden;
  border: 1px solid #d07402;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}

.gallery-main img, .gallery-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-main:hover img, .gallery-small:hover img {
  transform: scale(1.07);
}

.gallery-main:hover, .gallery-small:hover {
  box-shadow: 0 10px 35px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .gallery-layout {
    flex-direction: column;
  }

  .gallery-left, .gallery-right {
    flex: none;
  }
}

@media(max-width: 768px){
  .gallery-main img, .gallery-small img {
    width: 100%;
    height: 150px;
  }

  .gallery-left, .gallery-right {
    gap: 10px;
  }

  .gallery-left-bottom, .gallery-top {
    gap: 10px;
  }

  .project-gallery-sec {
    padding: 30px 20px;
  }

  .gallery-heading h2 {
    font-size: 25px;
    margin-bottom: 5px;
  }
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.gallery-tab {
  padding: 8px 25px;
  border: 1px solid #e54e0a;
  border-radius: 25px;
  background: #fff;
  color: #5e3a0d;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-tab.active {
  background: #e54e0a;
  color: #fff;
}


/*--------------------------Unit PLans Section-----------------------*/
.plan-unit-section {
  background: linear-gradient(135deg, #ffffff 0%, #f7efe3 50%, #f0e1cb 100%);
  padding: 60px 50px;
}

.unitpla-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #5e3a0d;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.unitpla-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #e54e0a;
  margin: 12px auto 0;
  border-radius: 2px;
}

.unit-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  position: relative;
  background-color: #fff;
  border: 1px solid #e54e0a;
  padding: 20px;
  transition: transform 0.3s ease;
}

.unit-card:hover {
  transform: translateY(-8px);
}

.unit-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  filter: blur(1px);
}

.unit-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #a13909;
  color: #fff;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 16px;
}

.btn-view-plan {
  display: block;
  margin: 10px auto 0;
  background-color: #9f3d0f;
  color: #fff;
  padding: 6px 16px;
  border: none;
  border-radius: 20px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-view-plan:hover {
  background-color: #6f2503;
  color: #fff;
}

@media(max-width: 768px){
  .plan-unit-section {
    padding: 20px 20px;
  }

  .unit-image {
    width: 100%;
    height: 200px;
  }

  .unitpla-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

@media(max-width: 600px){
  .plan-unit-section {
    padding: 20px 20px;
  }

  .unitpla-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/*------------------------Location Advantage------------------*/
.location-advantages {
  background: linear-gradient(135deg, #ffffff 0%, #f7efe3 50%, #f0e1cb 100%);
  padding: 50px 20px;
}

.location-heading {
  font-size: 36px;
  color: #5e3a0d;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.location-heading .underline {
  display: block;
  width: 70px;
  height: 4px;
  background: #e67e22;
  margin: 15px auto 0;
  border-radius: 2px;
}

.location-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.map-side {
  flex: 1;
}

.map-img {
  width: 100%;
  height: 100%;
  border: 1px solid #535353;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.details-side {
  flex: 1.2;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.detail-box {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #a13909;
  padding: 20px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.detail-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.icon-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 6px;
}

.subtext {
  font-size: 14px;
  color: #777;
  font-style: italic;
  margin-bottom: 15px;
}

.detail-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-box ul li {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f5793f;
  padding-bottom: 6px;
}

.detail-box ul li span:last-child {
  color: #000;
  font-size: 14px;
  font-style: italic;
}


@media (max-width: 1199px) {
  .location-heading {
    font-size: 32px;
  }
  .detail-box {
    padding: 18px;
  }
  .map-img {
    border-radius: 8px;
  }
}

@media (max-width: 991px) {
  .location-advantages {
    padding: 40px 15px;
  }

  .location-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-heading {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .location-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .location-wrapper {
    align-items: center;
  }

  .detail-box {
    padding: 18px;
  }

  .icon-title {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .location-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .location-wrapper {
    gap: 20px;
    align-items: center;
  }

  .map-img {
    border-radius: 6px;
  }

  .detail-box ul li {
    font-size: 15px;
  }

  .icon-title {
    font-size: 18px;
  }
}

/*-------------------Contact Section-------------------*/
/* .contact-section {
  background-color:#f9f0e2;
  padding: 60px 20px;
  color: #333;
}

.contact-section h3 {
  font-size: 36px;
  color: #5e3a0d;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contactformcnt {
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #e34e09;
  color: #fff;
}

.contact-btn {
  background-color: #a13909;
  color: #fff;
  padding: 6px 20px;
  border-radius: 5px;
}

.below-contact-content {
  font-size: 18px;
  color: #111;
}

.below-contact-content a {
  color: #111;
}

.below-contact-content a:hover {
  color: #111;
}

.dispara {
  color: #333;
  font-size: 16px;
}

.maharera-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.maharera-row .d-flex {
  display: flex;
  align-items: center;
  gap: 8px;
}

.maharera-row img {
  height: 70px;
  width: auto;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .below-contact-content {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-section h3 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
  }

  .below-contact-content .mb-2 {
    display: block;
    margin-bottom: 1rem;
    text-align: center;
  }

  .below-contact-content .d-flex {
    flex-direction: column !important;
    align-items: center !important;
  }

  .below-contact-content img {
    margin-top: 8px;
    height: 75px !important;
    width: auto;
  }

  .below-contact-content .mt-3 {
    margin-top: 1.5rem !important;
    text-align: center;
  }

  .contact-section {
    padding: 20px 15px;
  }

  .contact-btn {
    width: 100%;
  }

  .maharera-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 10px;
    margin-bottom: 10px;
  }
} */

.contact-section {
  background-color: #f9f0e2;
  padding: 60px 20px;
  color: #333;
}

.contact-section h3 {
  font-size: 36px;
  color: #5e3a0d;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contactformcnt {
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid #e34e09;
  color: #333;
}

.contact-btn {
  background-color: #a13909;
  color: #fff;
  padding: 6px 20px;
  border-radius: 5px;
}

.below-contact-content {
  font-size: 18px;
  color: #111;
}

.below-contact-content a {
  color: #111;
}

.below-contact-content a:hover {
  color: #111;
}

.dispara {
  color: #333;
  font-size: 16px;
}

.rera-row {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 30px !important;
  flex-wrap: nowrap !important;
  margin-top: 15px;
  margin-bottom: 10px;
}

.rera-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #333;
  font-size: 16px;
  white-space: nowrap;
}

.rera-item img {
  height: 70px;
  width: auto;
  border: 1px solid #e34e09;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px !important; 
  }
}

@media (max-width: 768px) {
  .below-contact-content {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-section h3 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
  }

  .rera-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .rera-item {
    flex-direction: column !important;
    text-align: center !important;
  }

  .rera-item img {
    height: 80px;
  }

  .contact-section {
    padding: 20px 15px;
  }

  .contact-btn {
    width: 100%;
  }
}


/*-----------------------------------whatsapp and call-----------------------*/
#desktop-view {
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  z-index: 9999; 
}
  
.icn {
  margin: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  animation: zoomIcons 0.6s ease-in-out infinite; 
}
  
@keyframes zoomIcons {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); 
  }
  100% {
    transform: scale(1);
  }
}
  
.icn:hover {
  animation-play-state: paused; 
}
  
@keyframes gradient {
  0%{
    background-position: 0 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0 50%;
  }
}
  
@media(max-width: 768px){
  .icn{
    width: 20px;
    height: 20px;
  }
}
  
@media(max-width: 991px){
  #desktop-view{
    display: none;
  }
}
  
/*-------------------------mobile section contact-----------------------*/
.mob-action {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #933e17;
  box-shadow: 0 1px 6px 2px rgb(0 0 0 / 40%);
  z-index: 1030;
}
  
.mob-action ul {
  display: flex;
  flex-direction: row;
  align-content: center;
  list-style: none;
  padding: 0;
  margin: 10px 0;
  justify-content: space-around;
  align-items: center;
}
  
.mobile-view {
  display: none;
} 
  
/*------------------------media screen for mobile view----------------------*/
@media (max-width: 991px) {
  .mobile-view {
    display: block;
  } 
}
  
  
 