body {
  margin: 0;
  /* font-family: "Inter", sans-serif; */
  /* font-family: "Raleway", sans-serif; */
  font-family: "Montserrat", sans-serif;
  position: relative;
}

/* button style */
button {
  cursor: pointer;
}

/* global.css */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Horizonatal Scroller. Mouse Smooth Scolling */
.horizontal-scroller {
  overflow-x: auto;
  cursor: default;
  user-select: none;
}

/* Custom Scroller */
.custom-scroll::-webkit-scrollbar {
  width: 4px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: #DC2626;
  border-radius: 10px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #b91c1c;
}

/* Marquee For Div Section Movement. */
.marquee-track {
  display: flex;
  justify-content: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track.reverse {
  animation: marquee-reverse 25s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-reverse {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}





/* Coworking Detials page  */
.scroll-x {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 14px;
  scroll-behavior: smooth;
}

.scroll-x::-webkit-scrollbar {
  height: 25px;
}

.scroll-x::-webkit-scrollbar-track {
  background: linear-gradient(to bottom,
      transparent 13px,
      #000 13px,
      #000 14px,
      transparent 14px);
}

.scroll-x::-webkit-scrollbar-thumb {
  background: #2A2A2A;
  border-radius: 22px;
  min-height: 25px;
}


/* ############################################################## */
/* COMMON USE HEADINGS */
/* ############################################################## */
.section-title {
  color: #111827;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.4 !important;
}

.section-description {
  font-size: 14px;
  font-weight: 400;
  color: #4B5563;
  text-align: center;
  line-height: 1.8 !important;
  /* max-width: 384px; 
    margin-left: auto;
    margin-right: auto; */
}

/* SM Screeen */
@media (min-width: 640px) {
  /* .section-title {
    font-size: 1px;
  } */
}

/* Md Screen */
@media (min-width: 768px) {
  .section-title {
    font-size: 34px;
    margin-bottom: 6px;
    line-height: 38px;
  }
}

/* Lg Screen */
/* @media (min-width: 1024px) {
  .section-title {
    font-size: 35px;
    margin-bottom: 16px;
  }
} */



/* Swiper bullet design */
.swiper-pagination {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  /* gray */
  opacity: 1;
  transition: all 0.3s ease;
}

/* Active dot */
.swiper-pagination-bullet-active {
  background: #CA0000;
  /* red */
  width: 14px;
  height: 14px;
}


/* Check and remove */
.glass-box {
  background: rgba(217, 217, 217, 0.1);

  box-shadow:
    inset -13px 13px 13px rgba(255, 255, 255, 0.1),
    inset 13px -13px 13px rgba(165, 165, 165, 0.1);

  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}


/* ############################################################## */
/* FAQ ACCORDIAN */
/* ############################################################## */
.faq-accordion-btn {
  margin: 10px 0;
  border: 1px solid transparent;
  background: #F9FAFB;
  color: #000000;
  transition: all 0.3s ease;
}

.faq-accordion-btn-active {
  background: #363636;
  color: #ffffff;
}




/* ############################################################## */
/* NAVBAR */
/* ############################################################## */

.dropdown-item {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}

.dropdown:hover .dropdown-item {
  animation: dropItem 250ms ease forwards;
  animation-delay: calc(var(--i) * 80ms);
}

@keyframes dropItem {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Button Hover Bottom Red Underline */
.hover-line {
  position: relative;
  padding-bottom: 2px;
}

.hover-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  z-index: 60;
  background-color: #DC2626;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 800ms ease;
}

.hover-line:hover::after {
  transform: scaleX(1);
}

.active::after {
  transform: scaleX(1) !important;
}



/* ############################################################## */
/* Home Page */
/* ############################################################## */
.banner {
  background-color: #2D2D2D;
  max-width: 466px;
  border-radius: 37px;
  padding: 16px 18px;
  margin: auto;
}

/* Home Page CTA */
.card-img {
  width: 230px;
  height: 230px;

  background-image: url("public/images/cta-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 16px;
  position: relative;
}

.card-wrapper {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 1024px) {
  .banner {
    width: 100%;
    max-width: 1236px;
    margin: auto;
    aspect-ratio: 112 / 27;

    background-color: transparent;
    background-image: url("public/images/cta_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .card-img {
    width: 295px;
    aspect-ratio: 37 / 34;

    background-image: url("public/images/cta-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 16px;
    max-width: 240px;

    position: absolute;
    right: 15.5%;
    left: auto;
    transform: none;
  }

  .card-wrapper {
    position: absolute;
    top: -38%;
    right: 15.5%;
    left: auto;
    transform: none;
  }
}

@media (min-width: 1096px) {
  .card-img {
    max-width: 265px;
  }

  .card-wrapper {
    top: -20%;
  }
}

@media (min-width: 1225px) {
  .card-img {
    max-width: 285px;
    right: 15.35%;
  }
}

/* Number Animation in Home Page */
@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

.animation-counter {
  /* font-family: "Inter", sans-serif; */
  font-family: "Montserrat", sans-serif;
}

.number-animation {
  --num: 0;
  counter-reset: num var(--num);
}

.number-animation::before {
  content: counter(num);
}

@keyframes counter {
  from {
    --num: 0;
  }

  to {
    --num: var(--target);
  }
}

.animate-counter {
  animation: counter 2s ease-out forwards;
}



/* ############################################################## */
/* Coworking Details Page */
/* ############################################################## */

/* Center Highlight Section - Coworking/managespace Details page */
.ch-tab {
  border: 1px solid #C7C7C7;
  color: #4B5563;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: default;
}

.ch-tab--active {
  background-color: #414141;
  color: white;
  border: none;
  /* border-color: #2A2A2A; */
}


/* ############################################################## */
/* Daypass Details Page */
/* ############################################################## */
.location-tab {
  border: 1px solid #00000024;
  color: #484848;
  background-color: transparent;
  transition: all 0.3s ease;
}

.location-tab--active {
  background-color: #CA0000;
  color: white;
  border-color: #00000024;
}



/* ############################################################## */
/* About Us Page */
/* ############################################################## */
.our-vision-card {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #F8F8F8;
}

/* spreading background */
.our-vision-card-spread {
  position: absolute;
  inset: 0;
  background: #2d2d2d;
  clip-path: ellipse(45px 15px at 50% 100%);
  transition: clip-path 0.7s cubic-bezier(.4, 0, .2, 1);
  z-index: 0;
  border-radius: 15px;

}

/* hover spread */
.our-vision-card:hover .our-vision-card-spread {
  clip-path: ellipse(150% 150% at 50% 100%);
  border-radius: 15px;

}

.our-vision-card-content {
  position: relative;
  z-index: 1;
}

.fade-up {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ############################################################## */
/* Blog */
/* ############################################################## */
.blog-title {
  color: #111827;
  font-size: clamp(36px, 5vw, 40px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
  /* line-height: 36px; */
}

.blog-description {
  font-size: 15px;
  font-weight: 400;
  color: #4B5563;
  text-align: left;
  line-height: 30px;
  margin-bottom: 10px;
  /* max-width: 384px; 
    margin-left: auto;
    margin-right: auto; */
}

.blog-h2 {
  color: #111827;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
  margin: 26px 0 6px;
  line-height: 36px;
}

.blog-h3 {
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  margin: 24px 0 6px;
  line-height: 36px;
}

.blog-h4 {
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin: 16px 0 0px;
}

.red-list {
  list-style: none;
  padding: 0;
  margin: 15px;
}

.red-list li {
  position: relative;
  padding: 0 0 0 43px;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Red bullet */
.red-list li::before {
  content: "";
  /* REQUIRED */
  position: absolute;
  left: 15px;
  top: 4px;
  /* transform: translateY(-50%); */

  width: 18px;
  height: 18px;

  background-image: url("public/images/Beginest_arrow.svg");
  /* try absolute path */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  /* important */

  border-radius: 50%;
}

.custom-ol {
  list-style: decimal;
  margin: 15px;
  padding-left: 25px;
}

.custom-ol li {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}

.custom-ol li::marker {
  color: #d32f2f;
  font-weight: 700;
}

@media (max-width: 480px) {
  .red-list {
    margin: 10px 10px;
  }

  .red-list li {
    padding-left: 20px;
  }

  .red-list li::before {
    left: 0px;
    top: 4px;
    transform: none;
  }
}



/* ############################################################## */
/* Chat Button */
/* ############################################################## */
#chatButton {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

#chatButton.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}



/* Banner Text */
.banner-text {
  /* font-size: 8px; */
  font-weight: 700;
  color: #ffffff;
  /* text-align: center; */
}

@media (max-width: 639px) {
  .banner-text {
    font-size: 22px;
  }
}

@media (max-width: 601px) {
  .banner-text {
    font-size: 21px;
  }
}

@media (max-width: 577px) {
  .banner-text {
    font-size: 20px;
  }
}

@media (max-width: 553px) {
  .banner-text {
    font-size: 19px;
  }
}

@media (max-width: 529px) {
  .banner-text {
    font-size: 16px;
  }
}

@media (max-width: 459px) {
  .banner-text {
    font-size: 15px;
  }
}

@media (max-width: 435px) {
  .banner-text {
    font-size: 14px;
  }
}

@media (max-width: 411px) {
  .banner-text {
    font-size: 13px;
  }
}

@media (max-width: 388px) {
  .banner-text {
    font-size: 12px;
  }
}

@media (max-width: 364px) {
  .banner-text {
    font-size: 11px;
  }
}

@media (max-width: 341px) {
  .banner-text {
    font-size: 10px;
  }
}

@media (max-width: 317px) {
  .banner-text {
    font-size: 9px;
  }
}

@media (max-width: 293px) {
  .banner-text {
    font-size: 8px;
  }
}

.blog-content-container a {
  text-decoration: underline;
  color: #CA0000;
}

.blog-image-wrapper {
    width: 90%;
    max-width: 56rem;
    margin: 0 auto;
}

.blog-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
    object-fit: cover;
}