@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url(./animate.css);
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body{
  font-family: 'Fira Sans', sans-serif;
 
  scroll-behavior: smooth;
}

:root{
  --primary-color: #ff2052;
  --secondary-color: #5b21b6;
  --dark-color: #333;
  --light-color: #fff;
  --gray-color: #848080;
  /* --main-gradient :linear-gradient(to right, #ff416c, #7c3aed); */
  --main-gradient :linear-gradient(to right, #ff2052, #5b21b6);
}
.gray-color{
  color: var(--gray-color) ;
}
.main{
  position: relative;
}
.header{
  position: absolute;
  z-index: 100;
  width: 100%;
}

.header-logo{
  width: 150px;
  display: block;
}

.menu-open{
  display: block;
  padding: 5px;
  background: #333333;
}
.side-menu{
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 101;
  width: 100%;
  height: 100%;
  background: #33333396;
  transition: all 0.3s ease-in-out;
}
.side-menu-list-box{
  padding: 20px;
  width: 420px;
  height: 100%;
  background: var(--light-color);
  position: absolute;
  top: 0;
  right: -320px;
  transition: all 0.9s ease-in-out;
}

.linkList{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.linkList li{
  margin-bottom: 5px;
}

.linkList li a{
  text-decoration: none;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
  box-sizing: border-box;
}
.linkList li a::after{
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background: var(--dark-color);
  bottom: -5px;
  left: 0;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.linkList li a:hover::after{
  width: 100%;
}
.swiper-button-next, .swiper-button-prev{
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #f5f5f5;
  color: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}
.slide-content{
  position: relative;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.slide-content-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background:linear-gradient(274deg, rgba(0,0,0,0.9047268565629377) 0%, rgba(1,3,3,0.6246148117450105) 56%, rgba(10,43,56,0) 94%);
}
.slide-content-overlay-top{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(354deg, rgba(255,255,255,0) 0%, rgba(0, 0, 0, 0.438) 80%);
}
.slider-content-text h1{
  color: var(--light-color);
  font-size: 50px;
  font-weight: 600;
}
.slider-content-text-h1-span{
  color: var(--primary-color);
  /* color: #f5bf03; */
}
.slider-content-text p{
  font-size: 20px;
  font-weight: 200;
  /* letter-spacing: 2px; */

}

.main-button{
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  color:var(--light-color);
  border: none;
  border-radius: 4px;
  background: var(--main-gradient);
  cursor: pointer !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:all 0.3s ease-in-out !important;
  text-decoration: none;
}

.main-button:hover{
  color: var(--light-color);
}
.business-name{
  font-size: 14px;
  color: var(--dark-color);
  padding: 2px 18px;
  background: linear-gradient(274deg, rgba(1,3,3,0) 0%, rgba(255,255,255,1) 27%, rgba(255,255,255,1) 76%, rgba(10,43,56,0) 100%);
}

.main-button:hover {
  background: linear-gradient(to right, #ff2052, #5b21b6);
  gap: 10px;
}
.swiper-slide.swiper-slide-active .slider-content-text{
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  animation-delay: 0.6s;
}

.pills-section{
  gap: 2px;
  padding: 10px;
  z-index: 1;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff !important;
  background-color: transparent !important;
}
.tab-pills-button{
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease-in-out;
  border-radius: 50px !important;
  color: var(--dark-color);
  position: relative;
}

.tab-pills-button.active::after{
  width: 20px;
}
.tab-pills-button p{
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
}
.pills-icons{
  display: flex;
  justify-content: center;
  align-items: center; 
  padding: 10px;
  background: #5a5656;
  color: var(--light-color);
  border-radius: 50px;
  font-size: 12px;
  transition: all 0.6s ease-in-out;
}
.tab-pills-button:hover .pills-icons,
.tab-pills-button.active .pills-icons{
  background: transparent;
}
.tab-pills-button:hover,
.tab-pills-button.active{
  background:var(--main-gradient);
  color: var(--light-color) !important;
}
.tab-img img{
  width: 100%;
  height: 100%;
  object-fit:cover;
  border-radius: 20px;
}

.tab-content-line {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-h-p span{
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
.tab-content-line h3{
  font-size: 35px;
  font-weight: 500;
  color: var(--dark-color);
}
.tab-discription{
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
  /* max-width: 350px; */
}

.tab-content-list{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tab-content-list li{
  display: flex;
  gap:10px;
  align-items: center;
  color: var(--dark-color);
  font-weight: 500;
  font-size: 14px;
}
.tab-content-list li .fa-check{
  background: var(--main-gradient);
  color: var(--light-color);
  padding: 3px;
  border-radius: 50%;
  font-size: 10px;
}
.section{
  border-bottom: 1px solid #aaaaaa59;
}
.tab-message-box{
  background: var(--main-gradient);
  color: var(--light-color);
  padding: 20px 30px;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
}

.category-heading{
  font-size: 38px;
  position: relative;
}
.category-heading::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background: var(--main-gradient);
  bottom: -10px;
  left: 0;
}

.item-bg{
  filter: drop-shadow(4px 6px 9px #00000082);
}

.category-section{
  color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
}
.category-section h2{
  font-size: 40px;
  font-weight: 500; 
  letter-spacing: 2px;
}

.category-section p{
  font-size: 16px;
  font-weight: 300;
  padding-top: 10px;
}

.main-shaps ul{
  list-style: none;
  gap: 10px;
  position: absolute;
  top: 20px;
  left: 0;
}
.main-shaps ul li{
  border-radius: 4px;
  background-color: var(--light-color);
  box-shadow: 0 0 10px #00000024;
  color: var(--dark-color);
  
}
.main-shaps ul li p{
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: normal;
}
.shaps-bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  aspect-ratio: 1/1;
  border-radius: 10px;
}
.overimg{
  position: absolute;
  right: 0;
  bottom: -3rem;
  width: 150px;
  height: 150px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000024;
  overflow: hidden;
}
.overimg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.gap-10{
  gap: 10px;
}

.dark-text{
  color: var(--dark-color);
} 

.image-container {
  margin-top: 50px;
  position: relative;
}
.image-card {
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mb-nn4{
  margin-bottom: 4rem;
}

.round-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.round-img{
  position: relative;
  
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 15px;
}
.round-img::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/Group_2-removebg-preview.png) no-repeat center;
  background-size: cover;
  border-bottom: none;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
}

.about-section h2{
  font-size: 40px;
  font-weight: 500;
  color: var(--dark-color);

}
.about-section p {
  font-size: 16px;
  font-weight: 400;
  /* letter-spacing: 2px; */
  padding-top: 10px;
  color: var(--gray-color);
}

.about-section img{
  border-radius: 5px;
}

.icon-f{
  width: 62px;
  height: 62px;
  border: 1px dashed #fff;
  padding: 10px;
  border-radius: 50%;
}
.icon-d-text{
  width: calc(100% - 62px);
}

.color-blue-bg{
  background-color: #042a68;
  color: var(--light-color);
}
.fff{
  color: var(--light-color);
  text-decoration: none;
 
}
span.fff{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  padding-top: 10px;
}
.fff:hover{
  color: var(--light-color);
 
}

.border-tb{
  border-top:1px solid #fff ;
  border-bottom:1px solid #fff ;
}
.video-btn-shadow {
  width: 58px; /* w-[58px] */
  aspect-ratio: 1 / 1; /* aspect-square */
  border-radius: 50%; /* rounded-full */
  background-color: #ffffff7a; /* bg-white */
  font-size: 18px; /* text-[18px] */
  color: #007bff; /* text-etBlue (replace with actual color code) */
  display: flex; /* flex */
  align-items: center; /* items-center */
  justify-content: center; /* justify-center */
  position: absolute; /* absolute */
  top: 50%; /* top-[50%] */
  left: 50%; /* left-[50%] */
  transform: translate(-50%, -50%); /* -translate-y-[50%] -translate-x-[50%] */
  text-decoration: none; /* no-underline */
  color: var(--dark-color);
}
.video-btn-shadow {
  animation: shadow 2s ease-in infinite;
}

.form-head h3 {
  font-size: 40px; /* text-[40px] */
  font-weight: 500; /* font-medium */
  color: #000; /* text-etBlack (Replace with actual color code) */
  margin-bottom: 7px; /* mb-[7px] */
}
.form-head{
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
}
.form-head p{
  color: var(--gray-color);
} 
.form-group{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--dark-color);
}
.form-group .form-control{
  padding: 10px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #949494;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
}
.form-control:focus {
  color: #212529;
  background-color: transparent;
  border-color: #949494;
  outline: 0;
  box-shadow: none;
}
.schwan-group-content{
  position: relative;
}

.schwan-group-content p{
  position: relative;
  z-index: 2;
}

.schwan-group-content::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/logo/The-Schwan-India-Logo.png) no-repeat center;
  background-size: contain;
  opacity: 0.3;
  top: 0;
  left: 0;
}
.whatsapp{
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  border: none;
  width: 40px;
  height: 40px;
}
#scrollBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 1000;
  border: none;
  border-radius: 50px;
  box-shadow: 0 0 10px #00000046;
  background: var(--main-gradient);
}

.audio-img{
  position: relative;
    display: block;
    -webkit-mask-image: url(../img/icon/02.png);
    mask-image: url(../img/icon/02.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: 100% 100%;
    -webkit-mask-position: center center;
    mask-position: center center;
    overflow: hidden;
    visibility: visible;
}
.audio-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.event-img {
  position: relative;
  transform-style: preserve-3d;
    transform: perspective(1000px);
}
.event-img img{
  border-radius: 50%;
  border: 10px solid var(--light-color);
  aspect-ratio: 1/1;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  object-fit: cover;
}
.event-img .img-2 {
  position: absolute;
  right: -50px;
  bottom: -50px;
  box-shadow: none;
}
.event-img .img-3 {
  position: absolute;
  right: -30px;
  top: -30px;
  box-shadow: none;
}
.re-images img{
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000024;
}
.top-titil span{
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
.heptagon{
  aspect-ratio: 1/1;
  border: 10px solid var(--light-color);
}
.box-2{
  width: 180px;
  height: 180px;
  position: absolute;
  top: 5rem;
  left: 0;
  z-index: 1;
}
.box-1{
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -2rem;
  right: 0;
}
.yoga-g{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.villa-box{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 1/1;
}
.model-bg{
  background-color: #fff ;
  border-radius: 10px;
}
.model-bg iframe{
  border-radius: 10px;
}
.model-close{
  position: absolute;
  right: -24px;
  top: -24px;
  color: #ffffff !important;
}
.btn-close{
  background: none;
}

.error{
    color: #f00e;
    font-size: 11px;
 
}
@keyframes shadow {
  0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.50), 0 0 0 0 rgba(255, 255, 255, 0.50);
  }

  100% {
      box-shadow: 0 0 0 30px transparent, 0 0 0 15px transparent;
  }
}