/* Header area starts */

.navbar {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0px 20px;
}

@media only screen and (max-width: 992px) {
  .navbar {
    padding: 10px;
  }
}

.navbar-brand img {
  width: 160px;
  height: auto;
}

.nav-link {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 500;
  padding: 1rem 1.2rem !important;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .nav-link {
    font-size: 14px;
    padding: 1rem 0.6rem !important;
  }
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  /* background: linear-gradient(to right, #c49100, #f7ca4b); */
  background: linear-gradient(to right, #6b25c9, #9335ff);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 70%;
}

@media only screen and (max-width: 1200px) {
  .nav-link:hover::after {
    width: 20%;
  }
}

.call-button-wrapper {
  margin-left: 1rem;
}

.call-button {
  display: inline-flex;
  font-weight: 500;
  transition: all 0.3s ease;
  /* background: linear-gradient(to right, #c49100, #f7ca4b); */
  background: linear-gradient(to right, #6b25c9, #9335ff);
  color: #fff;
  border: none;
  padding: 12px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  min-width: 180px;
  justify-content: center;
}

.call-button:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 4px 15px rgba(196, 145, 0, 0.3); */
  box-shadow: 0 4px 15px rgb(131 62 224 / 30%);
}

.call-button i {
  margin-right: 8px;
  font-size: 21px;
  animation: ring 1.5s infinite;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
  }

  .nav-link {
    padding: 0.8rem 1rem !important;
    text-align: center;
  }

  .nav-link::after {
    bottom: 5px;
  }

  .call-button-wrapper {
    margin: 1rem auto;
    text-align: center;
  }

  .call-button {
    display: inline-flex;
    min-width: 200px;
    max-width: 250px;
  }
}

/* Navbar Toggler Styles */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Animation for navbar on scroll */
@media (min-width: 992px) {
  .navbar.scrolled {
    padding: 0.3rem 1rem;
  }

  .navbar-nav {
    display: flex;
    justify-content: center;
    white-space: nowrap;
  }

  .nav-link {
    white-space: nowrap;
    padding: 1rem 1.5rem;
    /* Adjust padding to suit spacing */
  }

  .call-button-wrapper {
    margin-left: auto;
  }

  .call-button {
    font-size: 14px;
  }
}

/* Adjust navbar and call button for larger screens */
@media (min-width: 1200px) {
  .nav-link {
    font-size: 16px;
    /* Increase font size if needed */
    padding: 1rem 2rem;
    /* Adjust spacing to prevent wrapping */
  }

  .call-button {
    min-width: 160px;
    /* Adjust button width */
  }
}

/* Header area ends */

/* Video Starts */
.video-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

video {
  width: 100%;
  height: auto;
  display: none;
  /* Hide both videos by default */
}

.desktop-video {
  display: block;
  /* Show desktop video by default */
}

.mobile-video {
  display: none;
  /* Hide mobile video by default */
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
  .desktop-video {
    display: none;
    /* Hide desktop video on mobile */
  }

  .mobile-video {
    display: block;
    /* Show mobile video on mobile */
  }
}

/* Video Ends */

/* hero area starts */
.custom-carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.custom-carousel {
  display: flex;
  transition: transform 1s ease-in-out;
}

.custom-slide {
  min-width: 100%;
  height: auto;
  position: relative;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.custom-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

/* Refined zoom animation for active slide */
.custom-slide.active img {
  animation: zoomInOut 7s ease-in-out infinite;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background-color 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.custom-prev {
  left: 20px;
}

.custom-next {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .custom-prev {
    left: 10px;
  }

  .custom-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-btn {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}

/* hero area ends */

/* Overview Starts */

#overview {
  background-image: url("assets/images/mission-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff;
  margin-top: -4px;
}

.overview {
  background-attachment: fixed;
}

.overview-trinity {
  margin-top: 20px;
  margin-bottom: 40px;
}

.overview h2 {
  font-family: "Orelo Standard";
  font-size: 54px;
}

.overview h3 {
  font-family: "Orelo Standard";
  font-size: 34px;
  color: #d5ac55;
}

.overview-text {
  font-size: 18px;
  font-weight: 250;
  font-family: "GT Walsheim Pro";
}

.overview-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.overview-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}


.overview-image img {
  /* margin-top: 20px; */
  /* height: 520px; */
  width: 100%;
  border-radius: 10px;
}

@media only screen and (max-width: 468px) {
  .overview-image img {
    height: 450px;
  }
}

.overview button {
  background: linear-gradient(#d4aa52, #d4aa52 50%, #000 50%, #000);
  background-size: 100% 200%;
  background-position: 0 0;
  color: #fff;
  font-size: 18px;
  border-radius: 26px;
  padding: 12px 16px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-position 0.3s ease, color 0.3s ease;
  /* Transition for background and color */
}

button:hover {
  background-position: 0 100%;
  color: #fff;
}

.headings h2 {
  font-family: "Orelo Standard";
  /* font-family: 'GT Walsheim Pro'; */
  font-size: 42px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

/* .headings {
            display: inline-block;
            border-bottom: 1px solid #000;
            position: relative;
            padding: 0 26px;
            margin-bottom: 40px;
        }

        .skills {
            text-align: center;
        }

        .headings::after {
            height: 12px;
            width: 12px;
            right: 0;
            bottom: -7px;
            position: absolute;
            content: "";
            border-radius: 50%;
            background: #000;
        }

        .headings::before {
            height: 12px;
            width: 12px;
            left: 0;
            bottom: -7px;
            position: absolute;
            content: "";
            border-radius: 50%;
            background: #000;
        } */

/* Overview Ends */

/* Price List Section Starts */

/* .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem;
    } */

.pricing-section {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 60px;
}

.pricing-table {
  font-family: "GT Walsheim Pro";
  background-color: white;
  padding: clamp(1rem, 2vw, 2rem);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 60%;
  min-width: 280px;
}

.pricing-table h2 {
  /* font-size: clamp(1.25rem, 2vw, 1.5rem); */
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 1rem;
  display: inline-block;
  border: 2px solid #d5ac55;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: #d5ac55;
}

.pricing-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table-bordered {
  min-width: 100%;
}

.pricing-table-bordered table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table-bordered th,
.pricing-table-bordered td {
  padding: clamp(0.5rem, 1.5vw, 0.75rem);
  text-align: left;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  border: 1px solid #ddd;
}

.row-content tr:nth-child(odd) {
  background-color: #f8f8f8;
}

.price-btn {
  background-color: #3c5583;
  color: white;
  border: none;
  padding: 0.75rem 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  /* font-size: clamp(0.75rem, 1.2vw, 0.875rem); */
  white-space: nowrap;
  transition: background-color 0.3s;
  width: 100%;
  max-width: 200px;

  background: linear-gradient(#d4aa52, #d4aa52 50%, #000 50%, #000);
  background-size: 100% 200%;
  background-position: 0 0;
  transition: background-position 0.3s ease, color 0.3s ease;
  color: #fff;
  /* font-size: 18px;
            border-radius: 26px;
            padding: 12px 16px; */
  border: none;
}

.price-btn:hover {
  background-position: 0 100%;
  color: #fff;
}

.costing-details {
  text-align: center;
  flex: 1 1 35%;
  min-width: 280px;
  background-color: white;
  padding: clamp(1rem, 2vw, 2rem);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: 8px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enquire-btn {
  padding: 15px;
  background-color: transparent;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 20px;
  border-radius: 8px;
}

.cost-btn {
  font-family: "GT Walsheim Pro";
  background-color: #3c5583;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  /* font-size: clamp(0.875rem, 1.5vw, 1rem); */
  width: 100%;
  transition: background-color 0.3s;
  background: linear-gradient(#d4aa52, #d4aa52 50%, #000 50%, #000);
  background-size: 100% 200%;
  background-position: 0 0;
  transition: background-position 0.3s ease, color 0.3s ease;
  color: #fff;
  /* font-size: 18px;
            border-radius: 26px;
            padding: 12px 16px; */
  border: none;
}

.cost-btn:hover {
  background-position: 0 100%;
  color: #fff;
}

/* Hover Effects */
.image-container:hover .overlay {
  opacity: 1;
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Touch Device Optimizations */
@media (hover: none) {
  .overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
  }
}

/* Print Styles */
@media print {
  .price-btn,
  .cost-btn,
  .overlay {
    display: none;
  }
}

/* Price List Section Ends */

/* Floor Plan Area Starts */
.fp-main-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.fp-main-container h2 {
  font-family: "GT Walsheim Pro";
  color: #d5ac55;
}

.fp-page-header {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #d5ac55;
  border-radius: 25px;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 400;
}

.fp-section-heading {
  font-family: "Orelo Standard";
  /* font-family: 'GT Walsheim Pro'; */
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.fp-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.fp-card-wrapper,
.fp-master-wrapper {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #fff;
}

.fp-card-wrapper:hover,
.fp-master-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fp-image-heading {
  font-family: "GT Walsheim Pro";
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #d5ac55;
}

.fp-plan-img,
.fp-master-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: blur(3px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-color: rgba(0, 0, 0, 0.76);
  height: 300px;
}

.fp-master-img:hover,
.fp-plan-img.zoomed {
  transform: scale(1.05);
}

.fp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  opacity: 0;
  cursor: pointer;
}

.fp-card-wrapper:hover .fp-overlay,
.fp-master-wrapper:hover .fp-overlay {
  opacity: 1;
}

.fp-overlay-content {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 15px;
  border-radius: 8px;
}

.fp-plan-type {
  font-family: "GT Walsheim Pro";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #d5ac55;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.fp-cta-button {
  font-family: "GT Walsheim Pro";
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 12px 24px;
  border: none;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(#d4aa52, #d4aa52 50%, #000 50%, #000);
  background-size: 100% 200%;
  background-position: 0 0;
  transition: background-position 0.3s ease, color 0.3s ease;
}

.fp-cta-button:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease-in;

  background-position: 0 100%;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .fp-page-header {
    font-size: 20px;
  }

  .fp-grid-layout {
    gap: 15px;
  }

  .fp-plan-img,
  .fp-master-img {
    height: 250px;
  }

  .fp-image-heading {
    font-size: 18px;
  }

  .fp-overlay-content {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .fp-main-container {
    padding: 10px;
  }

  .fp-page-header {
    font-size: 18px;
  }

  .fp-plan-img,
  .fp-master-img {
    height: 200px;
  }

  .fp-image-heading {
    font-size: 16px;
  }

  .fp-overlay-content {
    font-size: 16px;
  }
}

/* Floor Plan Area Ends */

/* Location Map Starts */
.location-container {
  max-width: 1240px;
  margin: auto;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.location-header {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.map-card {
  flex: 1 1 45%;
  position: relative;
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  min-width: 300px;
}

.map-card iframe {
  width: 100%;

  border: 0;
}

.map-card iframe,
.map-card img {
  width: 100%;
  height: 400px;
  /* Fixed height to prevent shrinking */
  border: 0;
  display: block;
}

.map-title {
  font-family: "GT Walsheim Pro";
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.map-button {
  font-family: "GT Walsheim Pro";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #d5ac55;
  color: white;
  text-align: center;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 18px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .map-section {
    flex-direction: column;
    gap: 20px;
  }

  .map-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .location-header {
    font-size: 20px;
  }

  .map-title {
    font-size: 16px;
  }

  .map-button {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .location-header {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .map-title {
    font-size: 14px;
  }

  .map-button {
    font-size: 13px;
    padding: 10px;
  }
}

/* Location Map Ends */

/* Location Grid Section Starts */
.wrap {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
  padding: 1em;
  margin-bottom: 40px;
}

/* Medium screens: 2 columns */
@media screen and (min-width: 600px) and (max-width: 1200px) {
  .wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

/* Large screens: 3 columns */
@media screen and (min-width: 1200px) {
  .wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    /* max-width: 1500px; */
    /* Optional: prevents cards from getting too wide */
    /* margin: 0 auto; */
  }
}

@media screen and (min-width: 1000px) {
  .wrap {
    grid-template-columns: repeat(3, 1fr);
    /* Changed from 4 to 3 */
    grid-gap: 20px;
    padding: 1em;
  }
}

.article {
  display: flex;
  flex-direction: column;
  height: 260px;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  padding: 0;
  transform: rotateX(0deg) rotateY(0deg);
  transition: all 0.2s linear;
  will-change: transform;
}

.article img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6);
}

.overlay {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.3) 20%,
    rgba(0, 0, 0, 0.4) 50%
  );
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  /* background: #3c3c3c63; */
  /* background: rgba(60, 60, 60, 0.7); */
  background: rgb(35 35 35 / 56%);
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  z-index: 1;
}

.article h3 {
  font-family: "GT Walsheim Pro";
  font-size: 1.1em;
  /* font-family: 'Oswald', sans-serif; */
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 1em;
  pointer-events: none;
  /* transform: translateY(-20px); */
  transition: all 0.3s;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.article h3:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 2em;
  margin-right: 0.5em;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  /* background: linear-gradient(to right, #c49100, #f7ca4b); */
  background: linear-gradient(to right, #6b25c9, #9335ff);
}

.article h3 span:first-child {
  color: #ffffff;
}

.article h3 span.distance {
  font-size: 0.8em;
  color: #f7ca4b;
}

.wrap-cat {
  position: relative;
  z-index: 2;
  padding: 1em;
}

.article span.cat {
  letter-spacing: 2px;
  font-weight: bold;
  /* font-family: 'Lato', sans-serif; */
  position: relative;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .wrap {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    padding: 1em;
  }

  .article:hover h3 {
    transform: translateY(-20px);
  }

  .article span.cat {
    color: transparent;
  }

  .article span.cat::before,
  .article span.cat::after {
    content: attr(data-hover);
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    max-width: 0%;
    transition: max-width 300ms ease-out;
  }

  .article span.cat::before {
    color: yellow;
    transition-delay: 100ms;
  }

  .article span.cat::after {
    color: white;
  }

  .article:hover span.cat:after,
  .article:hover span.cat:before {
    max-width: 100%;
  }

  .article:hover span.cat:after {
    transition-delay: 300ms;
  }
}

.loc-grid-section {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Location Grid Section Ends */

/* Gallery Section Starts */

.gallery-section {
  display: flex;
  align-items: center;
  width: 100%;
  /* Let it adapt to screen size */
  max-width: 1226px;
  /* Constrain width on larger screens */
  margin: 0 auto;
  margin-bottom: 40px;
}

.gallery {
  text-align: center;
  box-shadow: 0px 0px 50px 0px rgba(157, 157, 157, 0.3);
  margin: 0 auto;
  padding: 30px;
  border-radius: 12px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
  /* padding: 20px; */
  max-width: 100%;
  margin-top: 50px;
}

/* Between 600px and 1200px (3 images) */
@media (max-width: 1200px) and (min-width: 600px) {
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 images */
  }
}

/* Below 600px (1 image) */
@media (max-width: 600px) {
  .image-grid {
    grid-template-columns: repeat(1, 1fr);
    /* 1 image */
  }
}

.image-item {
  position: relative;
  overflow: hidden;
  box-shadow: 9px -11px 20px 0px #b5b2b2;
  border-radius: 8px;
}

.image-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
  border: 10px solid #ffffff;
  border-radius: 8px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  box-shadow: 9px -3px -1px 0px #b5b2b2;
  padding:0px;
  /* padding: 12px; */
  transition: transform 0.3s ease;
  background-color: #ffffff;
}

.image-item img:hover {
  transform: translateY(-3px);
}

/* Modified loading animation */
.image-item.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 1;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Remove loading state once image is loaded */
.image-item.loaded::before {
  display: none;
}

/* Gallery Section Ends */

/* Sidebar button starts */
.enquiry-sidebar-btn {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right;
  /* background: linear-gradient(to right, #c49100, #f7ca4b); */
  background: linear-gradient(to right, #6b25c9, #9335ff);
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
}

.enquiry-sidebar-btn:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) rotate(-90deg) translateX(-4px);
}

/* Sidebar button ends */

/* Whatsapp Icon Starts */
/*Whatsapp*/

button.wh-ap-btn {
  position: relative;
  outline: none;
  width: 60px;
  height: 60px;
  border: 0;
  background-color: #2ecc71;
  color: #fff;
  padding: 0;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn:hover {
  opacity: 1;
  background-color: #20bf6b;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wh-api {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

.wh-fixed {
  margin-right: 15px;
  margin-bottom: 15px;
}

.wh-fixed > a {
  display: block;
  text-decoration: none;
}

/* button.wh-ap-btn::before {
            content: "Chat with me";
            display: block;
            position: absolute;
            margin-left: -130px;
            margin-top: 16px;
            height: 26px;
            background-color: #2ecc71;
            color: #ffffff;
            font-weight: 400;
            font-size: 18px;
            border-radius: 3px;
            width: 0;
            opacity: 0;
            padding: 0;
            transition: opacity 0.4s, width 0.4s, padding 0.5s;
            padding-top: 7px;
            border-radius: 30px;
            box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
        } */

.wh-fixed > a:hover button.wh-ap-btn::before {
  opacity: 1;
  width: auto;
  padding-top: 7px;
  padding-left: 10px;
  padding-right: 10px;
  width: 100px;
}

/* animacion pulse */
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-size: 32px;
  vertical-align: sub;
}

.whatsapp-pulse {
  width: 60px;
  height: 60px;
  right: 10px;
  bottom: 10px;
  background: #10b418;
  position: fixed;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 99;
  display: inline-block;
  line-height: 65px;
}

.whatsapp-pulse:before {
  position: absolute;
  content: " ";
  z-index: -1;
  bottom: -15px;
  right: -15px;
  /*background-color: #10b418;*/
  width: 90px;
  height: 90px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  -webkit-animation: pulse 1s ease-out;
  animation: pulse 1.8s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }

  25% {
    -webkit-transform: scale(0.3);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.6;
  }

  75% {
    -webkit-transform: scale(0.9);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  25% {
    transform: scale(0.3);
    opacity: 1;
  }

  50% {
    transform: scale(0.6);
    opacity: 0.6;
  }

  75% {
    transform: scale(0.9);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Whatsapp Icon Ends */

/* Contact Section Starts */

.contact-form {
  margin-top: 40px;
}

.contact-num {
  width: 200px;
  font-size: 14px;
  /* background: linear-gradient(to right, #c49100, #f7ca4b); */
  background: linear-gradient(to right, #6b25c9, #9335ff);
  padding: 14px 10px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-num:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 4px 15px rgba(196, 145, 0, 0.3); */
  box-shadow: 0 4px 15px rgb(131 62 224 / 30%);
  color: #000;
}

.contact-num i {
  margin-right: 8px;
  margin-left: 0;
  font-size: 18px;
  animation: ring 1.5s infinite;
  vertical-align: middle;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(15deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.contact-num a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}

.form-logo {
  margin-top: 20px;
}

.get-in-touch {
  font-family: "GT Walsheim Pro";
  padding: 20px;
}

.get-in-touch img {
  width: 206px;
}

.get-in-touch-form {
  font-family: "GT Walsheim Pro";
  padding: 20px;
}

.get-in-touch-form .star {
  color: #ff0000;
}

.get-in-touch-button {
  text-align: left;
  margin-top: 20px;
}

.get-in-touch-button button {
  background-color: #d5ac55;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  width: 30%;
  background: linear-gradient(#d4aa52, #d4aa52 50%, #000 50%, #000);
  background-size: 100% 200%;
  background-position: 0 0;
  transition: background-position 0.3s ease, color 0.3s ease;
  color: #fff;
  border: none;
}

.get-in-touch-button button:hover {
  background-position: 0 100%;
  color: #fff;
}

/* Contact Section Ends */

/* Popup form starts */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-overlay.active {
  display: flex;
  /* animation: fadeIn 0.3s ease-out; */
  animation: fadeIn 0.3s;
}

.popup-content {
  font-family: "GT Walsheim Pro";
  background-color: white;
  padding: 26px;
  border-radius: 18px;
  width: 440px;
  margin: 20px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  /* animation: fadeInDown 0.5s ease-out forwards; */
  animation: fadeInDown 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(0px);
  }

  to {
    opacity: 1;
    transform: translateY(30);
  }
}

.popup-content .star {
  color: #ff0000;
}

/* Rest of your existing styles */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  color: #181818;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.close-btn:hover {
  background-color: #d1d1d1;
}

.popup-content form {
  display: flex;
  flex-direction: column;
}

.popup-content label {
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 3px;
  font-size: 18px;
  color: #000000;
}

.popup-content input {
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 8px 18px;
  outline: none;
}

.popup-content button {
  margin-top: 10px;
  margin-bottom: 10px;
  background: linear-gradient(#d4aa52, #d4aa52 50%, #000 50%, #000);
  background-size: 100% 200%;
  background-position: 0 0;
  color: #fff;
  font-size: 18px;
  border-radius: 18px;
  padding: 9px 12px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-position 0.3s ease, color 0.3s ease;
}

button:hover {
  background-position: 0 100%;
  color: #fff;
}

/* popup form close*/

/* country code */
.intl-tel-input,
.iti {
  width: 100%;
}

.iti__country-list {
  white-space: normal;
}

.intl-tel-input,
.iti {
  width: 100%;
}

.iti__dial-code {
  color: #000000;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 326px) {
  .iti__country-list {
    width: 250px;
  }
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
  width: 100%;
}

.form-control {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 18px;
  font-size: 1rem;
  line-height: 1.4;
  color: #475f7b;
  background-color: #fff;
  border: 1px solid #dfe3e7;
  border-radius: 0.267rem;
  -webkit-transition: border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* .form-control:focus {
            color: #475F7B;
            background-color: #FFF;
            border-color: #5A8DEE;
            outline: 0;
            box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
        } */

.iti__flag-box,
.iti__country-name {
  color: #000;
  margin-right: 6px;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
}

.intl-tel-input,
.iti {
  width: 100%;
  margin-bottom: 10px;
}

/* Popup form ends */

/* footer area starts */

footer {
  background-image: url("assets/images/mission-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-color: #262626; */
  color: #d5d5d5;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-family: "GT Walsheim Pro";
}

footer h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 26px;
}

.privacy-link {
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
}

.disclaimer-text-wrapper {
  position: relative;
  max-height: 100px;
  /* Limit the height of the text */
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.disclaimer-text {
  margin: 0 50px;
  line-height: 1.6;
}

/* Fade effect for bottom of the disclaimer text */
.fade-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgb(38 38 38 / 0%) 0%, #471a5fc4 100%);
}

.read-more-btn {
  color: #ffffff;
  /* background: linear-gradient(to right, #c49100, #f7ca4b); */
  background: linear-gradient(to right, #6b25c9, #9335ff);
  border-radius: 12px;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 10px;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.text1 p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.text1 p:last-child {
  margin-bottom: 20px;
}

/* Responsive changes */
@media only screen and (max-width: 468px) {
  .disclaimer-text {
    margin: 0 10px;
  }
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full viewport height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
  /* Subtle overlay */
}

.AIPL-main-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image covers container without distortion */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /* Places image behind content */
  filter: brightness(0.8) contrast(1.2);
  /* Enhances image vibrancy */
  transition: transform 0.5s ease-out, filter 0.3s ease;
  /* Smooth transitions */
  animation: subtleZoom 10s infinite alternate ease-in-out;
  /* Subtle zoom animation */
}

/* Parallax effect on hover */
.video-container:hover .AIPL-main-background {
  transform: scale(1.05);
  /* Slight zoom on hover */
  filter: brightness(0.9) contrast(1.3);
  /* Brighten on hover */
}

/* Content overlay styling */
.content-overlay {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  /* Vertically center content */
  z-index: 1;
  /* Above background image */
  max-width: 500px;
  /* Limit width for readability */
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  /* Semi-transparent background for contrast */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  /* Subtle shadow */
  color: #fff;
  /* White text for contrast */
  animation: slideIn 1s ease-out;
  /* Slide-in animation */
}

/* Typography */
.content-overlay h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f9d423;
  /* Accent color for title */
}

.content-overlay h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0.9;
}

.content-overlay h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f9d423;
  /* Accent color for BHK info */
}

.content-overlay p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  opacity: 0.85;
}

/* Subtle zoom animation keyframes */
@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.03);
  }
}

/* Slide-in animation for content */
@keyframes slideIn {
  0% {
    transform: translateY(-50%) translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .video-container {
    height: 80vh;
    /* Adjust height for smaller screens */
  }

  .content-overlay {
    left: 3%;
    max-width: 90%;
    /* Adjust for smaller screens */
    padding: 15px;
  }

  .content-overlay h1 {
    font-size: 1.8rem;
  }

  .content-overlay h2 {
    font-size: 1.2rem;
  }

  .content-overlay h3 {
    font-size: 1.1rem;
  }

  .content-overlay p {
    font-size: 0.95rem;
  }

  .AIPL-main-background {
    filter: brightness(0.7) contrast(1.1);
    /* Slightly darker for mobile */
  }
}

/* High-resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .AIPL-main-background {
    image-rendering: crisp-edges;
    /* Optimize for high-DPI displays */
  }
}

/* Fallback for older browsers */
.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /* Fallback overlay for better contrast */
  z-index: -2;
}

/* footer area ends */

/*header area starts*/

/* Navbar container animation */
.collapse.navbar-collapse {
  animation: slideDown 0.6s ease;
  background-color: transparent;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar list */
.navbar-nav {
  display: flex;
  gap: 25px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* Navbar links */
.nav-link {
  position: relative;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 12px;
  display: inline-block;
}

.nav-link:hover {
  color: #007bff;
  transform: scale(1.05);
}

.nav-link::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: #007bff;
  transition: width 0.3s ease;
  margin-top: 4px;
}

.nav-link:hover::after {
  width: 100%;
}

/* Call button wrapper */
.call-button-wrapper {
  margin-left: 20px;
}

/* Call button styling + animation */
.call-button {
  background-color: #28a745;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  animation: pulse 1.5s infinite;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #218838;
}

.call-button i {
  margin-right: 8px;
}

/* Pulse animation for call button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .call-button-wrapper {
    margin-top: 10px;
    text-align: center;
  }
}

.tabs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  font-family: "GT Walsheim Pro";
}

/* Desktop Styles */
.vertical-tabs {
  display: flex;
  gap: 24px;
}

.tab-buttons {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-around;
  text-align: center;
  align-items: center;
}

.tab-buttons button {
  color: #000;
  border: 1px solid #d1d1d1;
}

.tab-button {
  padding: 16px;
  background: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease-in;
}

.tab-button:hover {
  background: #f7f9fa;
}

.tab-button span {
  transition: color 0.3s ease-in-out;
}

.tab-button span:hover {
  color: #424242;
}

.tab-button.active {
  background: #f3e8ff;
  border-left: 4px solid #9333ea;
}

.tab-button.active .tab-description {
  color: #424242;
}

.tab-icon {
  font-size: 24px;
}

.tab-title {
  font-family: "GT Walsheim Pro";
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.tab-description {
  color: #666;
  font-size: 16px;
}

.tab-content {
  width: 66.666%;
  background: #f9fafb;
  padding: 24px;
  border-radius: 8px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tab-panel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Mobile Carousel Styles */
.custom-carousel {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: white;
}

.custom-carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.custom-carousel-slide {
  min-width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-carousel-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.custom-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.custom-carousel-nav:hover {
  color: #000000;
}

.custom-carousel-prev {
  left: 0px;
}

.custom-carousel-next {
  right: 0px;
}

.custom-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.custom-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
  transition: all 0.3s ease;
}

.custom-carousel-dot.active {
  width: 32px;
  background: #9333ea;
  border-radius: 4px;
}

.brand-video-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

video {
  width: 100%;
  height: auto;
  display: none;
}

.main-video {
  display: block;
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
  .vertical-tabs {
    display: none;
  }

  .custom-carousel {
    display: block;
  }
}

.faqs {
  font-family: "GT Walsheim Pro";
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.faq-wrapper {
  width: 100%;
}

.faqs h2 {
  font-family: "Orelo Standard";
  font-size: 42px;
  font-weight: 600;
  margin: 20px auto;
}

.question-container {
  background-color: white;
  color: black;
  border: 1px solid #eaeaea;
  box-shadow: 0px 10px 30px rgba(28, 51, 84, 0.08);
  margin: -1px 0;
}

.question {
  font-size: 18px;
  font-weight: 450;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-align: start;
}

.question::after {
  content: "\002B";
  font-size: 22px;
  font-weight: 400;
  position: absolute;
  right: 20px;
  transition: 0.4s;
}

.question.active::after {
  transform: rotate(180deg);
  content: "\2212";
}

.answercount {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  font-size: 18px;
  color: #363636;
  padding-top: 30px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: start;
  border-top: 1px solid #eaeaea;
}

.answer p {
  font-size: 19px;
}

.question.active + .answercount .answer {
  border-top: 1px solid #eaeaea;
}

/* Media query for screens smaller than 768px */
@media screen and (max-width: 767px) {
  .faq-wrapper {
    width: 100%;
  }

  .question {
    font-size: 1rem;
  }

  .answer {
    font-size: 1rem;
  }
}

.back-to-top {
  position: fixed;
  bottom: 108px;
  right: 34px;
  background-color: transparent;
  color: #7428d5;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  border: none;
  z-index: 1000;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
}

.progress-ring__circle {
  stroke: #7428d5;
  stroke-width: 2;
  fill: transparent;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.back-to-top span {
  position: relative;
  z-index: 1000;
  color: #7428d5;
  font-size: 26px;
}

/* .back-to-top span:hover {
            color: #7428D5;
        } */

.back-to-top:hover span {
  color: #7428d5;
}

.privacy-link:hover {
  color: #f9d423;
}
.banner-content{
  margin: 0px;
}