* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", serif;
}

/* header section  */
.header-section {
  position: absolute;
  width: 100%;
  z-index: 999;
}
.scrolled {
  background-color: #1323559a;
  position: fixed;
}
.header {
  width: 130rem;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0rem;
}
.jain-logo {
  width: 8%;
}
.jain-logo img {
  width: 100%;
  vertical-align: middle;
}
.nav-items {
  width: 76%;
  list-style: none;
  display: flex;
  gap: 10rem;
  justify-content: right;
}
.nav-items li a {
  text-decoration: none;
  font-size: 1.8rem;
  color: white;
  padding-bottom: 1rem;
}
.nav-items li a:hover {
  color: #eebc0d;
  border-bottom: 1px solid #eebc0d;
}
.arch-logo {
  width: 10%;
}
.arch-logo img {
  width: 100%;
  vertical-align: middle;
}
.open {
  width: 4rem;
  display: none;
}
.size-6 {
  color: #fff;
}
.close {
  width: 4rem;
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media (max-width: 1400px) {
  .header {
    width: 90%;
  }
}

@media (max-width: 1100px) {
  .nav-items {
    gap: 5rem;
    margin-right: 2rem;
  }
  .nav-items li a {
    font-size: 1.6rem;
  }
  .jain-logo {
    width: 10%;
  }
  .arch-logo {
    width: 15%;
  }
}

@media (max-width: 851px) {
  .header {
    width: 95%;
  }
  .nav-items {
    display: none;
  }
  .mob-items {
    display: flex;
    width: 55%;
    position: absolute;
    height: 90vh;
    top: 1rem;
    right: -2rem;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 3rem;
    font-weight: 600;
    font-size: 2rem;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    gap: 1rem;
    background-color: #132355e9;
    animation-name: mobile-menu;
    animation-duration: 1s;
  }
  .jain-logo {
    width: 15%;
  }
  .arch-logo {
    width: 20%;
  }

  @keyframes mobile-menu {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  .mob-items li a {
    padding: 0;
  }

  .header {
    justify-content: left;
    gap: 1rem;
  }

  .size-6 {
    display: block;
    margin-left: auto;
    cursor: pointer;
  }
}

/* banner section  */
.banner-section {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.banner-section img {
  width: 100%;
  height: 100vh;
}
.mob-banner {
  display: none;
}

.form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 110rem;
  margin: auto;
  position: absolute;
  bottom: 10rem;
}

.form-container input,
.form-container select {
  flex: 1;
  border: none;
  border-right: 1px solid #ccc;
  margin: 0 10px;
  font-size: 16px;
  padding: 10px;
  outline: none;
  background: none;
}
.form-container select {
  border-right: none;
}

.form-container input::placeholder,
.form-container select {
  color: #bbb;
}

.form-container select {
  appearance: none;
  cursor: pointer;
}

.form-container button {
  background: #fbc02d;
  border: none;
  padding: 0.8rem 20px;
  font-size: 1.4rem;
  color: white;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-container button:hover {
  background: #d8a805;
}

@media (max-width: 1030px) {
  .form-container {
    width: 80%;
  }
  .form-container input,
  .form-container select {
    border-right: none;
    border-bottom: 1px solid #ccc;
    width: 100%;
    margin-bottom:2rem;
  }
}

@media (max-width: 750px) {
  .banner-section {
    flex-direction: column;
  }
  .banner-section img {
    height: 90vh;
    object-fit: cover;
    aspect-ratio: 1;
  }
  .desk-banner {
    display: none;
  }
  .mob-banner {
    display: block;
  }
  .form-container {
    flex-direction: column;
    gap: 2rem;
    position: static;
    margin: 3rem auto;
    width: 90%;
    padding: 3rem 1rem;
    border-radius: 8px;
  }
  .form-container input,
  .form-container select {
    border-right: none;
    border-bottom: 1px solid #ccc;
    width: 100%;
  }
  .form-container button {
    font-size: 1.6rem;
  }
}
/* features section  */

.features-section {
  width: 130rem;
  margin: 5rem auto;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  gap: 2rem;
  animation-name: featureMov;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}
@keyframes featureMov {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.features-items {
  width: 30%;
  border: 1px solid #132455;
  padding: 1rem 2rem;
  border-radius: 15px;
  position: relative;
  transition: all 1s;
}
.features-items img {
  width: 5rem;
  padding-bottom: 1rem;
}
.features-items .overlay-img {
  display: none;
}
.features-head-text {
  font-size: 1.8rem;
  font-weight: 600;
  transition: all 1s;
}
.features-desc-text {
  font-size: 1.4rem;
  display: none;
  transition: all 1s;
  padding-top: 0.5rem;
}

.features-items:hover .features-desc-text,
.features-items:hover .features-head-text,
.features-items:hover .overlay-img {
  display: block;
  color: white;
}
.features-items:hover {
  background-color: #132455;
}
.features-items:hover .hidden-image {
  display: none;
}

@media (max-width: 1300px) {
  .features-section {
    width: 100%;
    flex-wrap: wrap;
  }
}
@media (max-width: 850px) {
  .features-items {
    width: 70%;
    gap: 1rem;
  }
}

@media (max-width: 550px) {
  .features-items {
    width: 90%;
  }
}

/* about section  */

.about-section {
  display: flex;
  max-width: 130rem;
  margin: 6rem auto;
  gap: 2rem;
  justify-content: center;
  position: relative;
}
.about-img-box {
  position: relative;
  width: 45%;
}

.about-text-box {
  width: 45%;
}

.background {
  position: absolute;
  right: 0;
  top: 0;
  width: 45rem;
  animation-name: moveLeftRight;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  z-index: -10;
}
@keyframes moveLeftRight {
  0% {
    transform: translate(-2rem, -2rem);
  }
  50% {
    transform: translate(2rem, 2rem);
  }
  100% {
    transform: translate(-2rem, -2rem);
  }
}

.foreground-1 {
  position: absolute;
  top: 3.6rem;
  right: 3.6rem;
  width: 45rem;
}
.foreground-2 {
  position: absolute;
  top: 12rem;
  left: -5rem;
  width: 26rem;
}
.back-box {
  width: 16rem;
  height: 10rem;
  background-color: #eebc0d;
  position: absolute;
  bottom: 8rem;
  left: -1rem;
  z-index: -1;
}

.percentage-bar {
  width: 24%;
  height: 0.8rem;
  background-color: #eebc0d;
}
.about-text-box {
  padding: 5rem 1rem;
}
.about-head-text {
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.about-desc-text {
  font-size: 1.6rem;
  line-height: 1.6;
}

.about-icon {
  display: flex;
  /* border: 2px solid red; */
  padding: 3.5rem;
  background-color: #fff8dc;
  position: relative;
  top: 12rem;
  right: 16rem;
  width: 120%;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.about-icons {
  text-align: center;
  transition: all 1.5s;
}
.about-icons-img,
.about-icons-img-hover {
  width: 5rem;
}
.about-icons-img-hover {
  display: none;
}
.about-icons-text {
  font-size: 1.4rem;
  margin-top: 1rem;
  font-weight: 500;
}
.about-icons:hover .about-icons-img-hover {
  display: inline;
  text-align: center;
}
.about-icons:hover .about-icons-img {
  display: none;
}
@media (max-width: 800px) {
  .about-section {
    flex-wrap: wrap;
  }
  .about-img-box {
    width: 95%;
    height: 68rem;
  }
  .about-text-box {
    width: 95%;
  }
  .background {
    width: 80%;
  }
  .foreground-1 {
    width: 75%;
    right: 1rem;
  }
  .foreground-2 {
    width: 40%;
    left: 0;
  }
  .back-box {
    width: 20%;
    left: 3rem;
    bottom: 8rem;
  }
  .about-text-box {
    padding: 2rem 1rem;
  }
  .percentage-bar {
    width: 18%;
  }
  .about-head-text {
    font-size: 2.5rem;
  }
  .about-icon {
    position: static;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }
  .about-icons {
    width: 40%;
  }
  .about-icons-img,
  .about-icons-img-hover {
    width: 30%;
  }
  .about-icons-text {
    font-size: 1.4rem;
  }
}
@media (max-width: 672px) {
  .about-section {
    flex-wrap: wrap;
  }
  .about-img-box {
    width: 95%;
    height: 58rem;
  }
}
@media (max-width: 640px) {
  .about-img-box {
    width: 95%;
    height: 56rem;
  }
  .back-box {
    width: 20%;
    left: 3rem;
    bottom: 8rem;
  }
}
@media (max-width: 596px) {
  .about-img-box {
    width: 95%;
    height: 52rem;
  }
}
@media (max-width: 500px) {
  .about-img-box {
    width: 95%;
    height: 52rem;
  }
}
@media (max-width: 480px) {
  .percentage-bar {
    width: 30%;
  }
  .about-img-box {
    width: 95%;
    height: 38rem;
  }
  .back-box {
    width: 30%;
    left: 2rem;
    bottom: 4rem;
  }
  .about-icons-text {
    font-size: 1.8rem;
  }
  .about-icons {
    width: 100%;
  }
}

/* amenities section  */

.amenities-section {
  /* background: linear-gradient(rgba(3, 11, 35, 0.5), rgba(9, 17, 41, 0.5)),
    url("./img/amenities/amenities_background.jpeg"); */
  background-image: url(img/amenities/blue_background.jpeg);
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  margin: 5rem auto;
  margin-top: 10rem;
  background-size: cover;
  padding: 4rem 1rem;
  /*border: 2px solid red;*/
}

.amenities {
  max-width: 130rem;
  margin: auto;
}
.amenities-title {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  color: #eebc0d;
  padding: 1rem;
}
.amenities-tab {
  display: flex;
  align-items: center;
  max-width: 80%;
  margin: auto;
  justify-content: center;
  gap: 2rem;
}

.amenities-items {
  width: 30%;
  /* overflow: hidden; */
  cursor: pointer;
  position: relative;
}
.amenities-tab img {
  width: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1;
}
.amenities-tab-desc {
  background-color: #132455;
  color: white;
  padding: 2rem;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
}
.amenities-items:hover .amenities-tab-desc {
  background-color: #eebc0d;
}
.btn span {
  position: absolute;
  background-color: white;
  transition: all 300ms ease-out;
}

.btn span:nth-child(odd) {
  width: 0;
  height: 1px;
}

.btn span:nth-child(even) {
  height: 0;
  width: 1px;
}

.btn span:nth-child(1) {
  top: -0.4rem;
  left: 0;
}

.btn span:nth-child(2) {
  top: 0;
  right: -0.4rem;
  width: 0.5px;
}

.btn span:nth-child(3) {
  bottom: -0.4rem;
  right: 0;
  height: 0.01rem;
}

.btn span:nth-child(4) {
  bottom: 0;
  left: -0.4rem;
}

.btn:hover span:nth-child(odd) {
  width: 100%;
}

.btn:hover span:nth-child(even) {
  height: 100%;
}
.amenities-icon {
  max-width: 75%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  padding: 4rem 1rem;
}
.amenities-icons {
  width: 20%;
  text-align: center;
  padding: 2rem;
  border: 2px solid white;
}
.amenities-icons-img-hover {
  display: none;
}
.amenities-icons:hover {
  border: 2px solid #eebc0d;
}
.amenities-icon-desc {
  font-weight: 500;
  font-size: 1.6rem;
  margin-top: 1rem;
  color: white;
}
.amenities-icons:hover .amenities-icons-img-hover {
  display: inline;
}
.amenities-icons:hover .amenities-icons-img {
  display: none;
}
.amenities-icons:hover .amenities-icon-desc {
  color: #eebc0d;
}

@media (max-width: 1008px) {
  .amenities-section {
    margin-top: 5rem;
  }
}

@media (max-width: 680px) {
  .amenities-section {
    margin-top: 5rem;
    padding: 4rem 0.6rem;
  }
  .amenities-title {
    font-size: 2.5rem;
  }
  .amenities-tab {
    max-width: 100%;
    flex-wrap: wrap;
  }
  .amenities-items {
    width: 90%;
  }
  .amenities-icon {
    max-width: 100%;
    gap: 2rem;
  }
  .amenities-icons {
    width: 45%;
  }
}

.highlights-section {
  max-width: 125rem;
  margin: 5rem auto;
}
.highlights-title {
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.mySwiper {
  /* border: 2px solid green; */
  /* padding: 0rem 2rem !important; */
}
.swiper-slide-items {
  border: 1px solid #132455;
  border-radius: 8px;
  padding: 1.2rem 1rem;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  display: flex !important;
  gap: 1rem;
  margin: 0rem auto;
}
.swiper-slide img {
  width: 75%;
}
.hightlights-icons-toggle {
  display: none;
}
.icon-head-text {
  font-weight: 600;
  font-size: 1.6rem;
}
.icon-head-text ~ p {
  font-size: 1.2rem;
}
.swiper-slide-items:hover .hightlights-icons-toggle {
  display: inline;
}
.swiper-slide-items:hover .hightlights-icons {
  display: none;
}
.swiper-slide-items:hover .icon-head-text {
  color: #eebc0d;
}
.swiper-slide-items:hover {
  border: 1px solid #eebc0d;
}
.swiper-pagination {
  position: static !important;
  margin-top: 1rem;
}
.swiper-pagination-bullet-active {
  background-color: #132455 !important;
}
@media (max-width: 750px) {
  .swiper-slide-items {
    width: 90%;
  }
}
/* layout section  */

.layout-section {
  max-width: 130rem;
  margin: 5rem auto;
  padding: 1rem;
}
.layout-title,
.location-title {
  text-align: center;
  font-weight: 600;
  font-size: 3rem;
  text-transform: uppercase;
}
.layout-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem;
}
.layout-items div {
  width: 30%;
  border: 2px solid #132455;
  overflow: hidden;
}

.layout-items div img {
  width: 100%;
  /* display: block; */
  transition: all 1s;
}

.layout-items div p {
  background-color: #132455;
  color: white;
  padding: 1.8rem;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}
.layout-items div:hover img {
  transform: scale(1.1);
}
.layout-items div:hover p {
  background-color: #eebc0d;
  /* border: 2px solid #eebc0d; */
}

@media (max-width: 550px) {
  .layout-title {
    font-size: 2.5rem;
  }
  .layout-items div {
    width: 100%;
  }
  .layout-section {
    padding: 0rem;
  }
}

/* location advantages section */
.location-section {
  padding: 4rem 2rem;
  text-align: center;
  background: url(img/amenities/blue_background.jpeg);
  /* background: linear-gradient(rgba(0, 0, 0, 0.329), rgba(0, 0, 0, 0.1)),
    url("./img/amenities/background.jpg"); */
  background-size: cover;
  background-position: center;
}

.location-title {
  font-size: 3rem;
  font-weight: 600;
  color: #ffc107;
  margin-bottom: 30px;
}

.location-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  position: relative;
  width: 25%;
  height: 50rem;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title {
  position: absolute;
  text-transform: capitalize;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #eebc0d;
  color: white;
  font-size: 2rem;
  padding: 3rem 4rem;
  /* border-radius: 4px; */
  z-index: 1;
  transition: opacity 0.3s ease;
  font-weight: 700;
}

.card:hover .card-title {
  opacity: 0; /* Hide the title when hovering */
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
  z-index: 2;
  text-align: left;
}

.card:hover .card-content {
  height: 50%;
  opacity: 1;
}

.card-content ul {
  list-style: none;
  line-height: 1.8;
}

.card-content ul li {
  padding-left: 20px;
  position: relative;
  line-height: 2.2;
  font-size: 1.2rem;
}

.card-content ul li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #ffc107;
  font-size: 12px;
}

@media (max-width: 768px) {
  .location-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}

/* gallery section */
.gallery-section {
  max-width: 130rem;
  margin: 5rem auto;
}

.project-gallery {
  padding: 1.5rem;
  background-color: #ffffff;
  text-align: center;
}

.project-gallery h2 {
  font-size: 3rem;
  border: 2px solid #eebc0d;
  border-bottom: none;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding: 1rem;
}

/* Grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 55rem 1fr;
  grid-template-rows: 30rem 30rem;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  /* border-radius: 8px; */
  cursor: pointer;
}
.gallery-item-bottom {
  margin-bottom: -10rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.1); /* Zoom effect */
}

/* Overlay effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 193, 7, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay .icon {
  font-size: 1.6rem;
  /* font-weight: 500; */
  color: #ffffff;
  border: 1px solid white;
  border-radius: 50%;
  height: 2.5rem;
  width: 2.5rem;
}

/* Lightbox styling */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
/* Lightbox navigation buttons */
.lightbox button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.lightbox .prev {
  left: 20px;
}

.lightbox .next {
  right: 20px;
}
.gallery-item-highlight {
  grid-row-start: span 2;
}
.gallery-last-item {
  margin-top: 10rem;
}

.lightbox button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .gallery-last-item {
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-bottom {
    margin-bottom: 0rem;
  }
}
.map-section {
  margin: 5rem auto;
}
.map-section iframe {
  width: 100%;
  height: 40rem;
}

@media (max-width: 700px) {
  .map-section iframe {
    height: 25rem;
  }
}
.contact-section {
  max-width: 130rem;
  position: relative;
  margin: auto;
  margin-top: -14rem;
}
.contact-items {
  display: flex;
  gap: 3rem;
  justify-content: center;
  /* align-items: center; */
}
.contact-item {
  width: 25%;
  text-align: center;
  padding: 4rem 2rem;
  background-color: white;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px,
    rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px,
    rgba(42, 51, 70, 0.04) 0px 2px 2px -1px,
    rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
    rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px,
    rgba(42, 51, 70, 0.03) 0px 10px 10px -5px,
    rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
  transition: all 1.5s;
}
.contact-item-img,
.contact-item-img-hover {
  width: 5rem;
}
.contact-item-img-hover {
  display: none;
}
.contact-item:hover .contact-item-img-hover {
  display: inline;
}
.contact-item:hover .contact-item-img {
  display: none;
}

.contact-title {
  font-weight: 600;
  font-size: 2rem;
  margin: 1rem 0rem;
}
.contact-item:hover .contact-title {
  color: #eebc0d;
}
.contact-desc {
  font-size: 1.4rem;
}
@media (max-width: 700px) {
  .contact-section {
    margin: 5rem auto;
  }
  .contact-items {
    flex-wrap: wrap;
  }
  .contact-item {
    width: 80%;
  }
}
.footer-section {
  margin-top: 5rem;
  background-color: #132455;
  padding-top: 5rem;
  /* overflow: hidden; */
}
.footer-desc {
  color: white;
  max-width: 80%;
  margin: auto;
  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 2rem;
}
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem;
}
.footer-logo {
  /* width: 50%; */
  width: 10rem;
}
.footer-logo img {
  width: 100%;
  object-fit: cover;
}

.social-icons {
  background-color: #d4af28;
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1.4rem;
  color: rgb(255, 204, 109);
  width: 100%;
  /* clip-path: polygon(50% 0%, 0% 100%, 100% 100%); */
  clip-path: polygon(48% 0%, -12% 100%, 112% 100%);
}

.fa-brands {
  color: rgb(255, 204, 109);
  font-size: 1.8rem;
  border-radius: 50%;
  margin-top: 2rem;
}
.social-icons p {
  font-size: 1.4rem;
  margin-top: 2rem;
  color: white;
}

@media (max-width: 760px) {
  .footer-section {
    /* padding-top: 3rem; */
    width: 100%;
  }
  .footer-logos {
    flex-wrap: wrap;
  }
  .footer-logo {
    width: 50%;
  }
  .footer-credai-logo {
    order: 3;
  }
  .footer-rera-logo {
    order: 2;
  }
  .social-icons {
    padding: 2rem;
  }
  .social-icons p {
    width: 100%;
    text-align: center;
    margin-top: 0rem;
  }
  .footer-desc {
    max-width: 90%;
  }
}

.fa-brands:hover {
  color: white;
}

section {
  opacity: 0; /* Initially invisible */
  transform: translateY(-50px); /* Initially off-screen */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0); /* Move into position */
}

/* Modal (hidden by default) */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #13235581;
  overflow: auto;
  padding-top: 15rem;
}

/* Modal content */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  transition: transform 0.25s ease;
}

/* Close button (new class btn-close) */
.btn-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 4rem;
  cursor: pointer;
}

.btn-close:hover,
.btn-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Caption */
#caption {
  margin: 10px auto;
  text-align: center;
  font-size: 18px;
  color: white;
}

/* Layout section */
.layout-section {
  padding: 20px;
  text-align: center;
}

.layout-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.layout-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.layout-item {
  width: 30%;
  cursor: pointer;
}

.layout-item img {
  width: 100%;
  height: auto;
}

/* Zoom buttons */
.zoom-btn {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.chat-button {
  position: fixed;
  right: 0.5rem;
  display: inline-block;
  bottom: 3rem;
  filter: drop-shadow(1px 1px rgb);
  z-index: 1000;
}

.chat-button img {
  /* width: 20%;
      w */
  width: 100px;
  border-radius: 50%;
  /* box-shadow: 1px 5px 5px red; */
}
.error-message {
  color: red;
  font-size: 14px;
  display: none;
}
@media (max-width: 767px) {
  .chat-button {
    position: fixed;
    right: 0.5rem;
    display: inline-block;
    bottom: 6rem;
    filter: drop-shadow(1px 1px rgb);
    z-index: 1000;
  }
}
