/* ========== Root Variables ========== */
:root {
  --color-primary: #302A60;
  --color-secondary: #170D56;
  --color-accent: #71C1EA;
  --color-text: #010101;
  --color-bg: #FFFFFF;
  --color-muted: #74777C;
  --color-link: #71C1EA;
}


/* ========== Reset & Global ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Fixed: Use overflow-x: clip if supported, or keep it simple */
  overflow-x: hidden; 
}

body {
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  /* IMPORTANT: Remove overflow-x: hidden from body to allow sticky to work */
  overflow-x: visible; 
  position: relative;
  width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--color-link);
}

/* contact */
.contact-bar {
  z-index: 1031;
}


/* ========== Navbar ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 10px 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  box-sizing: border-box;
}

.navbar-nav .nav-link {
  font-size: 1.3rem;
  font-weight: 400;
   color: var(--color-text);
  margin: 0 2px;
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.nav-link.active {
  border-bottom: 3px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 5px;
}

.custom-logo {
  width: 180px;
}

.download-gif {
  height: 50px;
  width: 50px;
}

.brochure-button {
  /* border: 2px solid #198754 ; */
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.brochure-button span {
  size: 16px;
}

.brochure-button .download-gif {
  width: 40px;
  height: 40px;
}

@media (max-width: 576px) {
  .navbar {
    padding: 10px 0px;
  }

  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}

@media (max-width: 1024px) {
  .custom-logo{
    width: 150px;
  }
  .navbar {
    padding: 10px 0px;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
  }
}

/* ========== Sections ========== */
.site-section {
  background-color: var(--color-bg);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .site-section {
    padding: 2rem 0;
  }
}



/* heading */

.advantages-heading {
  font-size: 2rem;
  font-weight: bold;
   color: var(--color-primary);
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 0.65rem;
}

.advantages-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
   background-color: var(--color-accent);
}

@media (max-width: 768px) {
  .advantages-heading {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 1.5rem;
  }
}

.banner{
position: relative
}

.banner-img {
  height: 65vh;
  object-fit: cover;
 
}

/* Info Bar Styling */
.info-bar {
  color: black;
position: absolute;
  top: 67vh;
  left:0;
  width:100%;
  z-index: 10;
    margin-bottom: 100px;
}

.info-bar-container {
 
  width:100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.info-card {
  flex: 1 1 160px;
  min-width: 150px;
  max-width: 220px;
 background-color: #F6FFFA;

  padding: 20px 10px;
  text-align: center;
  transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card i {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--color-accent);

}

.info-title {
  font-weight: 600;
  font-size: 1.12rem;
  margin-bottom: 4px;
   color: var(--color-primary);
}

.info-subtext {
  font-size: 0.95rem;

}

@media (max-width: 1024px) {
  .info-bar-container {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 10px;
    justify-content: flex-start;
  }

  .info-card {
    flex: 0 0 auto;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .info-bar-container {
    justify-content: flex-start;
  }
  .info-card {
    min-width: 140px;
    padding: 10px;
  }

  .info-title {
    font-size: 0.85rem;
  }

  .info-subtext {
    font-size: 0.75rem;
      color: var(--color-muted);
  }

  .info-card i {
    font-size: 20px;
  }
}


/*====== about ==== */
#about-section{
  margin-top: -6vh;
}

.project-details-box {
  background: #ffffff;
  display: flex;
  /* position: relative; */
  padding: 1.1rem;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  animation: fadeInUp 0.6s ease;
}

.project-content {
  flex: 1;
}

.project-title {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.project-content p {
  font-size: 1.05rem;
   color: var(--color-muted);
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 768px) {
#about-section{
  margin-top: 10vh;
}

  .project-details-box {
    flex-direction: column;
    padding: 1.5rem;
  }

  .project-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .project-content p {
    font-size: 0.95rem;
    text-align: justify;
  }
}

@media (max-width: 475px) {
  #about-section{
  margin-top: 6vh;
}
  .project-details-box {
    padding: 1.1rem;
  }
}

/* === Highlight Section  === */

.highlight-grid {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.highlight-item {
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  transition: transform 0.3s ease;

}

.highlight-item:hover {
  transform: translateY(-5px);
}


.highlight-icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem auto;
  transition: background-color 0.3s ease;
}

.highlight-icon-circle i {
  font-size: 2.8rem;
   color: var(--color-accent);
}

.highlight-item:hover .highlight-icon-circle {
  background-color: #e6e6e6;
}

.highlight-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}


@media (max-width: 1024px) {
  .highlight-grid {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .highlight-item {
    flex: 0 0 auto;
    min-width: 170px;
    max-width: 200px;
  }

  .highlight-icon-circle {
    width: 90px;
    height: 90px;
  }

  .highlight-icon-circle i {
    font-size: 2.5rem;
  }

}

@media (max-width: 768px) {
 .highlight-item {
    min-width: 130px;
  }
  .highlight-icon-circle i {
    font-size: 2.3rem;
  }


}

@media (max-width: 435px) {
   .highlight-item {
    min-width: 130px;
    max-width: 160px;
    padding: 0.5rem 0.7rem;
  }

 .highlight-icon-circle {
    width: 80px;
    height: 80px;
  }

  .highlight-icon-circle i  {
    font-size: 2.2rem;
  }


}


/* Price */
#price-section {
    background-color: #fff;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.price-section-info {
position: relative;
   border: 1px solid var(--color-primary);
  border-radius: 10px;
  overflow: visible;
background-color: #F6FFFA;
  width: calc(25% - 20px);
  min-width: 200px;
  max-width: 330px;
  transition: transform 0.3s ease;  
  box-sizing: border-box;
   margin-bottom: 20px;
}

.price-section-info p {
  outline: 1px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 5px;
  padding: 4px 35px;
  width: fit-content;
  font-weight: 700;
  margin: auto;
  margin-top: -20px;
  font-size: 18px;
  margin-bottom: -15px;
  position: relative;
   background: var(--color-primary);
  color: #fff;
  z-index: 99; 
  box-sizing: border-box;
}

.floor-card-details {
  padding: 20px 15px;
  text-align: center; 
  border-radius: 10px;
 
}

.type-section {
  border-bottom: 1px dashed grey;
  font-size: 19px;
   overflow: hidden;
  color: var(--color-text);
   box-sizing:border-box;
   padding:10px ; 
}

.type-section i {
   color: var(--color-accent);
}

.para-price p {
  text-align: center;
  margin-bottom: 20px;
}

.gradient-button {
 background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: #fff;
  width: 60%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  margin: 15px auto 0 auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-align: center;
  display: block;
  text-decoration: none;
}

.gradient-button:hover {
  transform: translateY(-3px);
  color: white;
}



@media (max-width: 1024px) {

  .price-section-info {
    font-size: 90%;
     width: calc(33.33% - 20px);
  }

  /* .gradient-button {
    padding:10px 7px;
  }
  .type-section {
    padding: 10px 0px;
    font-size: 16px;
  } */
}


@media (max-width: 768px) {
 .price-section-info {
     width: calc(50% - 20px);
     flex-grow: 1;
  }

.gradient-button {
    padding:10px 5px;
  }

  .type-section {
    padding: 10px 0px;
    font-size: 16px;
  }


}

@media (max-width: 480px) {
  .price-section-info {
     width: 100%;
     flex-grow: 1;
  }

}



/* ===== FULL WIDTH LOCATION MAP RESPONSIVE ===== */

#location-section {
  padding-left: 40px;   /* Desktop par wide padding */
  padding-right: 40px;
  width: 100%;
  box-sizing: border-box;
}

.master-plan-container {
  width: 100%;
  max-width: 900px;    
  margin: 0 auto;
  /* padding ko 0 kiya taaki container full width le sake */
  padding: 0; 
}

.image-wrapper-master-plan {
  position: relative;
  width: 100%;
  height: 280px;        
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.image-wrapper-master-plan iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.image-wrapper-master-plan img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ⭐ MOST IMPORTANT LINE */
}

/* plans */

#floor {
  padding: 50px 0;
  background: #f9f9f9;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  padding: 0;
}

.gallery-filter li {
  list-style: none;
  cursor: pointer;
  padding: 10px 30px;
  margin: 0;
  border: none;
  background: none;
  font-weight: 500;
  font-size: 20px;
  color: #333;
 
  position: relative;
  border: 2px solid transparent;
  border-color: #e0e0e0;
}
.gallery-filter li:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.gallery-filter li:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.gallery-filter li.active {
 border: 2px solid var(--color-accent);
  color: var(--color-accent);
  
}

.gallery-filter li:hover {
  border-bottom: 2px solid var(--color-accent);
}

.img-holder {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}

.img-holder img {
  width: 100%;
  height: auto;
  display: block;
}

.img-holder img:hover{
  transform: translateY(-3px); 
}

.centered-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.centered-img .img-holder {
  max-width: 600px;
  width: 100%;
  max-height: 400px;
  height: 100%;
  margin: auto;
}

.centered-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.room-size {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 123, 255, 0.8);
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 3px;
}

.single-room-dimention {
  display: none;
}

.img-wrap {
  padding: 10px;
}

@media (max-width: 576px) {
  .gallery-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-filter li {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 5px 15px;
  }
  
}

/* ===============================
   AMENITIES – CLEAN CIRCLE STYLE
   =============================== */

#amenities-section .amenity-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  text-align: center;
  transition: transform 0.3s ease;
}

#amenities-section .amenity-card:hover {
  transform: translateY(-6px);
}

#amenities-section .amenity-card img {
  width: 140px !important;
  height: 140px !important;
  border-radius: 50% !important;
  object-fit: cover;
  display: block;
  margin: 15px auto 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* Tablet */
@media (max-width: 768px) {
  #amenities-section .amenity-card img {
    width: 120px !important;
    height: 120px !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  #amenities-section .amenity-card img {
    width: 100px !important;
    height: 100px !important;
  }
}

/* ===== GALLERY – BOOTSTRAP SAFE FIX ===== */
/* ===============================
   REAL ESTATE GALLERY  FINAL CSS
================================ */

/* Card */
.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image */
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover; /* no stretch */
  display: block;
  transition: transform 0.45s ease;
}

/* Hover Effect */
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

/* Caption Overlay */
.gallery-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

/* Category Title */
.category-title {
  font-weight: 700;
  font-size: 18px;
  color: #302a60;
  border-left: 4px solid #71c1ea;
  padding-left: 12px;
  margin-bottom: 12px;
}

/* Tablet */
@media (max-width: 768px) {
  .gallery-card img {
    height: 160px;
  }

  .gallery-card span {
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .gallery-card img {
    height: 140px;
  }

  .category-title {
    font-size: 16px;
  }
}


/* =============================
   PREMIUM CONTACT FORM UPGRADE
   ============================= */

.contact-modal-content {
  border-radius: 18px;
  border: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

/* Header */
#contactModal .modal-header {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  padding: 1.2rem 1.5rem;
  border: none;
}

#contactModal .modal-title {
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: #fff;
}

/* Body */
#contactModal .modal-body {
  background: #fff;
  padding: 2rem 1.75rem;
}

/* Inputs */
#contactModal .form-control {
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#contactModal .form-control::placeholder {
  color: #999;
}

#contactModal .form-control:focus {
 border-color: var(--color-accent);
  box-shadow: 0 0 0 0.15rem rgba(113, 193, 234, 0.25);
}

/* Validation */
.was-validated .form-control:invalid {
  border-color: #dc3545;
}

.was-validated .form-control:valid {
  border-color: #198754;
}

/* Close Button */
#contactModal .btn-close-white {
  filter: invert(1);
  opacity: 0.9;
}

/* Footer */
#contactModal .modal-footer {
  border-top: none;
  padding: 1.5rem;
}

/* Submit Button */
#contactModal .btn-success {
   background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  border: none;
  border-radius: 30px;
  padding: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

#contactModal .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Mobile */
@media (max-width: 576px) {
  #contactModal .modal-dialog {
    margin: 1rem;
  }

  #contactModal .modal-body {
    padding: 1.5rem 1.25rem;
  }
}
/* =============================
   FORM COMPACT + MOBILE FIX
   ============================= */

/* Reduce spacing */
#contactModal .modal-body {
  padding: 1.25rem 1.25rem;
}

#contactModal .form-control {
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

/* Footer always visible */
#contactModal .modal-footer {
  position: sticky;
  bottom: 0;
  background: #fff;
  z-index: 10;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -6px 15px rgba(0,0,0,0.08);
}

/* Button height fix */
#contactModal .btn-success {
  padding: 0.65rem;
  font-size: 1rem;
}

/* MOBILE FIX */
@media (max-width: 576px) {
  #contactModal .modal-dialog {
    margin: 0.5rem;
  }

  #contactModal .modal-content {
    max-height: 95vh;
    display: flex;
    flex-direction: column;
  }

  #contactModal .modal-body {
    overflow-y: auto;
    max-height: calc(95vh - 120px);
  }
}



/* image */
.toggle {
  position: fixed;
  top: 40%;
  right: 0;
  transform-origin: right center;
  color: white;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.toggle img {
  width: 180px;
  height: auto;
  transform: rotate(-90deg);
  position:relative;
  left:18px;
}

@media (max-width : 768px) {
  .toggle img {
  width: 55px;
   }
}



.site-footer {
  margin-top: auto; 
  background-color: var(--color-secondary);
  padding: 1rem;
  color: #fff;
  font-size: 14px;
  text-align: center; 
}

.footer-content {
  max-width: 100%;
}

.disclaimer {
    color: #fff;
  font-size: 13px;
  margin: 0;
}


@media (max-width: 576px) {
  .site-footer {
    padding: 0.7rem;
  }

  .disclaimer {
    font-size: 12px;
    text-align: justify;
  }
}

   /*IMAGE- Modal Styles */
    #imageModal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      /*background-color: rgba(0,0,0,0.8);*/
      background-color: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
    }

    .modal img {
      max-width: 90%;
      max-height: 90%;
    }

    .close-btn {
      position: absolute;
      top: 0px;
      right: 10px;
      color: white;
      font-size: 40px;
      /* font-weight: bold; */
      cursor: pointer;
      z-index: 10000;
    }

 /* =========================================
   ENQUIRY BUTTON – VERTICAL DESKTOP + MOBILE
   ========================================= */

.toggle {
  position: fixed;
  z-index: 9999;
  cursor: pointer;
}

/* COMMON IMAGE */
.toggle img {
  display: block;
  height: auto;
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
  .toggle {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
  }

  .toggle img {
    width: 180px;
    transform: rotate(-90deg);
  }
}

/* ===== MOBILE (VERTICAL ONLY) ===== */
@media (max-width: 768px) {
  .toggle {
    top: 45%;              /* center-ish */
    right: -32px;          /* thoda bahar */
    transform: translateY(-50%);
  }

  .toggle img {
    width: 120px;          /* thodi chhoti */
    transform: rotate(-90deg);
     left: 0px;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .toggle {
    top: 50%;
    right: -30px;
  }

  .toggle img {
    width: 105px;
  }
}
/* ===============================
   AMENITIES – FORCE PERFECT CIRCLE
   =============================== */
/* ===============================
   AMENITIES – CLEAN CIRCLE STYLE
   =============================== */

#amenities-section .amenity-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  text-align: center;
  transition: transform 0.3s ease;
}

#amenities-section .amenity-card:hover {
  transform: translateY(-6px);
}

#amenities-section .amenity-card img {
  width: 140px !important;
  height: 140px !important;
  border-radius: 50% !important;
  object-fit: cover;
  display: block;
  margin: 15px auto 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* Tablet */
@media (max-width: 768px) {
  #amenities-section .amenity-card img {
    width: 120px !important;
    height: 120px !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  #amenities-section .amenity-card img {
    width: 100px !important;
    height: 100px !important;
  }
}
/* =========================================
   ENQUIRY BUTTON  BLINK + PULSE (SAFE)
   ========================================= */


/* ===============================
   HERO H1  BELOW INFO CARDS
================================ */

.hero-heading {
  margin-top: 140px;   /* info-cards absolute hain, isliye gap */
  text-align: center;
  padding: 20px 15px;
}


.hero-heading h1 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.hero-heading p {
  font-size: 16px;
  color: var(--color-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-heading {
    margin-top: 110px;
  }

  .hero-heading h1 {
    font-size: 24px;
  }

  .hero-heading p {
    font-size: 14px;
  }
}
/* ===============================
   ENQUIRY BUTTON  FINAL FIX
================================ */

.toggle {
  animation: none !important;
}

.toggle::before {
  display: none !important;
}

.toggle img {
  box-shadow: 0 10px 22px rgba(0, 0, 0, -0.3);
  animation: enquiryPulseImg 1.6s infinite ease-in-out;
}

/* Image-based pulse (rotation safe) */
@keyframes enquiryPulseImg {
  0% {
    transform: rotate(-90deg) scale(1);
  }
  50% {
    transform: rotate(-90deg) scale(1.08);
  }
  100% {
    transform: rotate(-90deg) scale(1);
  }
}
/* ===============================
   SCROLL TO TOP BUTTON
================================ */

#scrollTopBtn {
  position: fixed;
  bottom: 55px;          /* enquiry button se upar */
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: none;         /* default hidden */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#scrollTopBtn:hover {
  transform: translateY(-4px);
}

/* Mobile tweak */
@media (max-width: 768px) {
  #scrollTopBtn {
    bottom: 80px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    
  }
}
/* ===============================
   ENQUIRY BUTTON – SIZE REDUCTION
   =============================== */

/* Desktop */
@media (min-width: 769px) {
  .toggle img {
    width: 140px;   /* ↓ was 180px */
  }
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  .toggle img {
    width: 90px;    /* ↓ was 120px */
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .toggle img {
    width: 86px;    /* ↓ was 105px */
  }
}
