* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  cursor: default;
}
body {
  background-color: rgb(245, 245, 245);
  font-size: 18px;
  line-height: 1.6;
  font-family: "Baloo 2", cursive;
}

/**tank you page**/

body.thank-you-page {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.thank-you-container {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
}

:root {
  --primary: #e1795e; /* your primary brand color */
  --secondary: #ffffff; /* white */
  --pill-bg: #fdfdfd; /* soft white */
  --pill-hover-bg: #e1795e; /* hover background */
  --pill-hover-text: #ffffff;
}
h1 {
  color: var(--secondary);
  text-shadow: #000 2px 2px 4px;
}
p {
  color: #000042;
}
h2 {
  color: #e1795e;
}

/********** button*************/

.btn1 {
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn1:hover {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}

/********** hero-section ************/

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
  }
}


.hero-section .item,
#mobileHeroCarousel .carousel-item > div {
  background: center / cover no-repeat;
  height: 600px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  transform: translateY(-70px);
}

/**** Profile-card ****/

.home-details h3 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
  color: var(--primary);
}

.home-details ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  margin: 10px 0;
  color: #000042;
  font-size: 14px;
}

.apartments-list {
  padding: 50px 0;
  background: #f5f5f5;
  text-align: center;
}

.project-card- {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.project-card-:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.home-details {
  padding: 15px;
}

/******** counter icons **********/

.icon-section {
  background-color: var(--primary);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--primary);
}

.icon-item {
  flex: 1 1 200px;
  padding: 8px;
}

.icon-img {
  width: 50px;
  margin-bottom: 10px;
}

.icon-label {
  font-weight: 600;
  font-size: 10px;
}
/*** Arrow ***/

/************ gallery *************/
.gallery-item {
  height: 100%;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
} */

/***** === GLITCHBOX STYLES === ***/
#glitchBox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex; /* Keep this as default layout */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/** Lightbox Image **/
#glitchBox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 0; /* No rounded corners */
  box-shadow: none; /* Remove glow/3D effect */
}

@keyframes glitch {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(2px, -2px);
  }
  60% {
    transform: translate(-1px, 1px);
  }
  80% {
    transform: translate(1px, -1px);
  }
}

.nav-link:hover {
  background-color: var(--primary);
  color: #fff !important;
}

/*********** service ***********/

/* Base nav pill style */
.nav-pills .nav-link {
  background-color: var(--pill-bg) !important;
  color: var(--primary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  transition: all 0.3s ease;
  padding: 0.4rem 1rem;
  font-weight: 500;
}

/** Hover effect **/
.nav-pills .nav-link:not(.active):hover {
  background-color: var(--pill-hover-bg) !important;
  color: var(--pill-hover-text) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/** Active pill style **/
.nav-pills .nav-link.active {
  background-color: var(--pill-hover-bg) !important;
  color: var(--pill-hover-text) !important;
  border: 1px solid var(--pill-hover-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/********** our process **********/

.circle-step {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  overflow: hidden;
  padding: 23px;
  background-color: #fff;
}

.circle-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* shifts image downward */
  background-color: #fdfdfd;
}

/********** review **********/

.review-card {
  background-color: #fff;
  color: #000;
  padding: 1rem;
  border-radius: 0.5rem;
  min-height: 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.google-logo {
  height: 24px;
  object-fit: contain;
  margin-left: 8px;
}

/*** questions ***/
.accordion-button:not(.collapsed) {
  background-color: #fff3ef;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 121, 94, 0.4);
  border-color: var(--primary);
}

/******** CTA Section *********/
.cta-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
    url("images/cta_3.webp") center/cover no-repeat fixed;
  text-align: center;
  color: #fff;
}

.cta-heading {
  color: #fff;
  text-shadow: 2px 2px #000;
  font-weight: bold;
  margin-bottom: 15px;
}

/* CTA Button */
.btn1 {
  background-color: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s;
}

.btn1:hover {
  background-color: #eee;
  color: var(--primary);
  transform: translateY(-2px);
}

/* service */
@media (max-width: 767.98px) {
  #serviceTab .nav-item {
    flex: 0 0 48%;
    max-width: 48%;
  }

  #serviceTab .nav-link {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
}

/********** form **********/
@media (min-width: 768px) {
  #contact .row.align-items-start {
    align-items: center !important;
  }
}
.accordion-button {
  padding: 10px 20px !important;
}

.accordion-body {
  padding: 10px 20px !important;
}

/******** footer *********/
.footer {
  background-color: #e1795e;
  color: #000042;
  padding: 20px 0;
}

/* whatsapp and call button */
.call-buton .cc-calto-action-ripple {
  z-index: 99999;
  position: fixed;
  right: 2rem;
  bottom: 3rem;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  -webkit-animation: 0.6s linear infinite cc-calto-action-ripple;
  animation: 0.6s linear infinite cc-calto-action-ripple;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 2.2rem;
}

@-webkit-keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2),
      0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2),
      0 0 0 10px rgba(37, 211, 102, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2),
      0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2),
      0 0 0 20px rgba(37, 211, 102, 0);
  }
}

@keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2),
      0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2),
      0 0 0 10px rgba(37, 211, 102, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2),
      0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2),
      0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/* Mobile */
@media only screen and (max-width: 768px) {
  #contact-button {
    display: block;
  }

  .modal-sm {
    max-width: 400px !important;
  }
}

/*************** Contact Button ****************/
/* Base button style already defined for .cc-calto-action-ripple stays the same */

/* WhatsApp button positions */
.whatsapp-btn .cc-calto-action-ripple {
  left: 2rem;
  right: auto;
  background-color: #28a745;
}

/* Call button positions */
.call-btn .cc-calto-action-ripple {
  right: 2rem;
  left: auto;
  background-color: #dc3545;
}

/* Desktop override: move both to right side stacked vertically */
@media (min-width: 768px) {
  .whatsapp-btn .cc-calto-action-ripple {
    left: auto;
    right: 2rem;
    bottom: 6rem; /* stack higher up */
    margin-bottom: 20px;
  }

  .call-btn .cc-calto-action-ripple {
    right: 2rem;
    bottom: 3rem;
  }
}
/* carousal */
.carousel-section {
  margin: 30px 0;
  text-align: center;
}
.carousel-section h2 {
  margin-bottom: 20px;
}
.item img {
  width: 100%;
  border-radius: 10px;
}
.caption {
  margin-top: 8px;
  font-weight: bold;
}
.owl-dots {
  display: none !important;
}
