@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* Poore page ke liye reset */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* horizontal scroll hide */
}

/* Main ka background */
main {
  background-color: var(--bg-color-dark);
}
/* main {
  background-color: var(--bg-color-dark);
  overflow-x: hidden;
} */

/*-------------------- HERO START --------------------*/

.hero__video {
  width: 100%;
  height: 500px;
  object-fit: cover;
}


.hero .hero__banner {
  overflow: hidden;
}


.hero .hero__banner img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-size: cover;
}


@media (min-width: 768px) {
  .hero .hero__banner img {
    aspect-ratio: 2.4/1;
  }

 
}

.hero__search-container {
  position: absolute;
  bottom: 50%;
  left: 10%;
}


.hero__search-bar {
  background-color: white;
  border-radius: 100px;
  padding: 12px 12px;
  width: 612px;
  display: flex;
  gap: 10px;
}


.hero__search-bar .hero__search-input {
  border: none;
  width: 100%;
  background: transparent;
  padding: 10px;
  font-size: 1rem;
}


.hero__search-bar .hero__search-input:focus {
  outline: none;
}


.hero__search-bar .hero__select {
  border-right: 1px solid black;
  padding-right: 7px;
}


.hero__search-bar .hero__select .hero__select--select {
  width: fit-content;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  text-align: center;
}


.hero__search-bar .hero__select .hero__select--select:focus {
  outline: none;
}


@media (max-width: 992px) {
  .hero__search-container {
    display: none;
  }
}


/*-------------------- HERO END --------------------*/

/*-------------------- INFINITE SCROLL START --------------------*/

.logo-carousel {
  overflow: hidden;
  padding: 35px 0;
  background:#EF6026 ;
  white-space: nowrap;
  position: relative;
}

.logo-carousel::before,
.logo-carousel::after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logo-carousel::before {
  left: 0;
}

.logo-carousel::after {
  right: 0;
}

.logo-carousel:hover .logo-carousel__slide {
  animation-play-state: paused;
}

.logo-carousel__slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logo-carousel__slide--reverse {
  animation-direction: reverse;
}

.logo-carousel__slide .logo-carousel__image {
  height: 50px;
  margin: 0 40px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*-------------------- INFINITE SCROLL END --------------------*/

/*-------------------- FORM SECTION START --------------------*/

/* #f76428 */

.contact-section_container {
  background: rgb(247, 100, 40);
  /* background: linear-gradient(
    90deg,
    rgba(247, 100, 40, 1) 0%,
    rgb(255, 173, 92) 50%
  ); */
  background-color:#2B2728;
}

.contact-section {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.2rem;
  margin: 0 auto;
  gap: 20px;
}

@media (min-width: 768px) {
  .contact-section {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem 3.5rem;
  }
}

.contact-section_content {
  flex: 1;
  max-width: 500px;
  color:#ffffff;
}

.contact-section_content h2 {
  font-size: 21px;
  margin-right:7rem;
  margin-bottom: 1rem;
  font-weight: 500;
  text-wrap: balance;
  color:#ffffff;
}

.contact-section_content p {
  font-size: 13px;
  margin-bottom: 2rem;
  max-width: 45ch;
}

@media (max-width: 768px) {
  .contact-section_content {
    text-align: center;
    max-width: 100%;
  }

  .contact-section_content h2 {
    font-size: 2.5rem;
  }

  .contact-section_content p {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .contact-section_content h2 {
    font-size: 1.5rem;
  }
}

.contact-section_image {
  width: 100%;
  max-width: 300px;
  margin-bottom: 2rem;
  margin-right:7rem;
}

.contact-section_form {
  flex: 1;
  padding: 2rem 0;
  border-radius: 8px;
  color: #333;
  max-width: 600px;
}

.contact-section_form .one-liner {
  display: flex;
  gap: 5px;
  width:90%;
}

.contact-section_form input,
.contact-section_form textarea,
.contact-section_form select {
  width: 90%;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: none;
}

.contact-section_form textarea {
  max-width: 90%;
  min-width: 50%;
  height: 100px;
}

.contact-section_form input:focus,
.contact-section_form textarea:focus,
.contact-section_form select:focus {
  outline: none;
}

.contact-section_form button {
  width: 90%;
  padding: 0.75rem;
  background-color:#ffffff;
  color:#2B2728;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

.contact-section_form .disclaimer {
  font-size: 0.8rem;
  margin-top: 1rem;
  text-align: center;
  color:#ffffff;
}

.contact-section_form .disclaimer a {
  color: white;
}

/*-------------------- FORM SECTION END --------------------*/

/*-------------------- Advanced Carousel START --------------------*/

.carousel-container {
  padding-top: 30px;
  padding-bottom:60px;
}

.carousel-header {
  width: 85%;
  margin: auto;
  max-width: 1450px;
}

.carousel-header .carousel-headding {
  -webkit-letter-spacing: "0px";
  -moz-letter-spacing: "0px";
  -ms-letter-spacing: "0px";
  letter-spacing: "0px";
  -webkit-text-decoration: none;
  text-decoration: none;
  text-align: inherit;
  white-space: normal;
  font-size: 42px;
  font-weight: normal;
  color: #333333;
  display: block;
  margin-bottom: 12px;
}

@media (max-width: 375px) {
  .carousel-header .carousel-headding {
    font-size: 24px;
  }
}

.carousel-header .carousel-header_desc {
  -webkit-letter-spacing: "0px";
  -moz-letter-spacing: "0px";
  -ms-letter-spacing: "0px";
  letter-spacing: "0px";
  -webkit-text-decoration: none;
  text-decoration: none;
  text-align: inherit;
  white-space: normal;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  color: #333333;
  display: block;
}

.carousel-container .carousel {
  width: 100%;
  height: auto;
}

.carousel-block {
  position: relative;
  display: block;
  /* overflow: hidden; */
  margin: 0;
  padding: 0;
}

.carousel-block .carousel-content {
  margin-top: 34px;
  height: 360px;
  width: 270px;
  margin-right: 24px;
}

.carousel-block .carousel-content > a {
  text-decoration: none;
}

.carousel-block .carousel-content .carousel-content_head {
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 24px;
  box-shadow: 0 4px 30px 0 rgba(4, 32, 66, 0.6);
  cursor: pointer;
  width: 270px;
  height: 340px;
}

.carousel-block .carousel-content .carousel-content_head:hover {
  box-shadow: none;
}

.carousel-content_head .carousel-content_head_img {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  position: relative;
  object-fit: cover;
}

.carousel-content_head .carousel-content_head_img img {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  position: absolute;
  object-fit: cover;
  border-radius: 24px;
}

.carousel-background {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(4, 32, 66, 0) 0%,
    rgba(4, 32, 66, 0.6) 100%
  );
  border-radius: 24px;
}

.carousel-content_head_heading {
  position: relative;
  bottom: 10px;
  position: absolute;
  bottom: 20px;
  padding: 0 20px;
}

.carousel-content_head_heading .h1 {
  -webkit-letter-spacing: "0px";
  -moz-letter-spacing: "0px";
  -ms-letter-spacing: "0px";
  letter-spacing: "0px";
  -webkit-text-decoration: none;
  text-decoration: none;
  text-align: inherit;
  white-space: normal;
  font-size: 20px;
  font-weight: normal;
  color:orangered;
  display: block;
}

.carousel-content_head_heading .h2 {
  -webkit-letter-spacing: "0px";
  -moz-letter-spacing: "0px";
  -ms-letter-spacing: "0px";
  letter-spacing: "0px";
  -webkit-text-decoration: none;
  text-decoration: none;
  text-align: inherit;
  white-space: normal;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  -webkit-letter-spacing: 5px;
  -moz-letter-spacing: 5px;
  -ms-letter-spacing: 5px;
  letter-spacing: 5px;
  color: #ffffff;
  display: block;
  padding-top: 8px;
}

.carousel-content_foot {
  margin-top: 20px;
}

.carousel-content_foot .h1 {
  margin-bottom:100px;
  -webkit-letter-spacing: "0px";
  -moz-letter-spacing: "0px";
  -ms-letter-spacing: "0px";
  letter-spacing: "0px";
  -webkit-text-decoration: none;
  text-decoration: none;
  text-align: top;
  white-space: normal;
  font-size: 30px;
  font-weight: normal;
  line-height: 20px;
  display: block;
}
.h9{
  color:#ffffff;
}

.carousel-content_foot .h2 {
  border-top: 10px;
  -webkit-letter-spacing: "0px";
  -moz-letter-spacing: "0px";
  -ms-letter-spacing: "0px";
  letter-spacing: "0px";
  -webkit-text-decoration: none;
  text-decoration: none;
  text-align: inherit;
  white-space: normal;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
  -webkit-letter-spacing: 1px;
  -moz-letter-spacing: 1px;
  -ms-letter-spacing: 1px;
  letter-spacing: 1px;
  color: orangered;
  display: block;
  margin-top: 12px;
}

.slick-prev {
  position: absolute;
  bottom: -50px;
  right: 100px;
  border: none;
  width: 50px;
  height: 30px;
  border-radius: 15px;
  background-color: var(--bg-color-primary);
  color: white;
  margin-right: 12px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slick-prev > div {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 100%;
  transform: translateX(4px);
}

.slick-next {
  position: absolute;
  bottom: -50px;
  right: 40px;
  border: none;
  width: 50px;
  height: 30px;
  border-radius: 15px;
  background-color: var(--bg-color-primary);
  color: white;
  margin-right: 12px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.slick-next > div {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 100%;
  transform: translateX(-4px);
}

/*-------------------- Advanced Carousel END --------------------*/

/*-------------------- VIDEO SLIDER START --------------------*/

.video-slider {
  margin-top: 60px;
  margin-bottom:60px;
  background-color:#ffffff;
}

.video-slider video {
  max-width: 200px;
  height: auto;
  border-radius: var(--border-radius-medium);
}

.video-slider_content {
  margin-left: 20px;
  border: #33333322 solid 1px;
  border-radius: var(--border-radius-medium);
}

.video-slider_content video {
  border-bottom: #33333322 solid 1px;
}

.video-slider_content .video-slider__title {
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
  padding: 0 5px;
  max-width: 240px;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*-------------------- VIDEO SLIDER END --------------------*/


/**carousal cards content**/
.h3{
  word-spacing: -2px;
  -webkit-letter-spacing: "0px";
  -moz-letter-spacing: "0px";
  -ms-letter-spacing: "0px";
  letter-spacing: "0px";
  -webkit-text-decoration: none;
  text-decoration: none;
  white-space: normal;
  font-size: 22px;
  font-weight: normal;
  color:white;
  display: block;
  padding-bottom: 2px;
}

.h4{
  -webkit-letter-spacing: "0px";
  -moz-letter-spacing: "0px";
  -ms-letter-spacing: "0px";
  letter-spacing: "0px";
  -webkit-text-decoration: none;
  text-decoration: none;
  white-space: normal;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  -webkit-letter-spacing: 5px;
  -moz-letter-spacing: 5px;
  -ms-letter-spacing: 5px;
  letter-spacing: 5px;
  color: #ffffff;
  display: block;
  padding-top: 4px; 
}


/**Above Footer Slider Css***/

/**Flexbox container before the slider reviews**/
.flexbox {
  display: flex;
  width: 100vw;
  height: 100vh; /* Full viewport height */
  padding-bottom: 0px;
  
}


.column {
  flex: 1; /* Each takes up equal space */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.image-column {
  background: url('/assets/images/testimonialpic.webp') center/cover no-repeat; /* Full coverage image */
}
.image-columns {
  background: url('/assets/images/footerImage.webp') center/cover no-repeat; /* Full coverage image */
}


.text-column {
  background-color:white;
  color:#2B2728;
 
}

.text-container {
  display: flex;
  flex-direction: column; /* Stack elements */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  text-align: center;
  width: 100%;
}

.text-container div:first-child {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 70px;
}


.text-container div:last-child {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  max-width: 80%;
  text-align:justify;
  margin-bottom:50px;
}


/* Responsive: Stack into rows on mobile */
@media (max-width: 768px) {
  .flexbox {
      flex-direction: column;
  }

  .column {
      width: 100%;
      height: 50vh; /* Each takes half the screen */
  }

}

/*This section is for index container section**/
.sec{
  height:500px;
  width:100%;
}


/***Testimonial Page***/

.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 40px 0;
  height:500px;

}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 10px;
  height: 470px;
  padding-bottom: 20px;
}


.card {
  border-radius: 15px;
  background:linear-gradient(to right,#000,#000);
  height: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease; /* Add transition for smooth effect */
  border: 2px solid transparent; /* Default border is transparent */
}

/* Hover effect */
.card:hover {
  transform: translateY(-10px); /* Slightly move the card upwards */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
  border-color: #2B2728; /* Add blue border color on hover */
}

/* Optional: Hover effect for the image and name */
.card:hover .card-image .card-img {
  transform: scale(1.05); /* Slightly scale the image */
}

.card:hover .name {
  color: #ffffff; /* Change text color on hover */
}

.card:hover .description {
  color: #ffffff; /* Change text color on hover */
}


.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 2px;
  padding: 10px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
  width: 50%;
  background-color: #ffffff;
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #ffffff;
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #ffffff;
}
.card-image{
  position: relative;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #2B2728;
}
.name{
  font-size: 17.97px;
  font-weight: 500;
  color: #ffffff;
  padding-bottom:50px;
  
}


.description{
  margin-top:30px;
  font-size: 15px;
  color: #ffffff;
  text-align: justify;
  padding:9px;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #2B2728;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: #2B2728;
}
.swiper-navBtn{
  color: #2B2728;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: orangered;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 20px;
}
.swiper-button-next{
  right: 50;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #2B2728;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #2B2728;
}
@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

/* Container for the text */
.text-container {
  font-size: 1rem;
  text-align: center;
  /* animation: fadePopOut 3s ease-in-out forwards; */
}

/* Keyframes for the fade and pop-out effect */
@keyframes fadePopOut {
  0% {
    opacity: 0;
    transform: scale(0.5) translateX(-50%); /* Start small and centered */
  }
  50% {
    opacity: 1;
    transform: scale(1) translateX(0); /* Fade in and return to normal size */
  }
  100% {
    opacity: 1; /* Keep opacity at 1 to remain visible */
    transform: scale(1) translateX(0); /* No movement after final frame */
  }
}



/* Text inside card */
.text-containers {
  font-size: 1rem;
  text-align: center;
  opacity: 0; /* Initially hidden */
  animation: fadeInText 1.5s ease-in-out forwards 0.6s; /* Fade-in effect for text */
}

/* Animation for the text */
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px); /* Start below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Move to original position */
  }
}

.typing {
  overflow: hidden;
  white-space: nowrap;
  width: 0; /* Start with hidden text */
  font-family: 'Poppins-500', sans-serif;
  font-size: 15px;
  padding-bottom: 30px;
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease-in-out;
}

/* Add typing effect when 'show' class is added */
.typing.show {
  animation: typing 3s steps(30) forwards;
  opacity: 1;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%; /* Expands the width to show the text */
  }
}


/* Initially set the element to be invisible */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInAnimation 2s 1s forwards; /* 2s duration, "forwards" keeps the final state */
  will-change: opacity;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


/* Define the fadeIn animation */
@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@keyframes bounce {
  0% { transform: translateY(0); }
  30% { transform: translateY(-10px); }
  50% { transform: translateY(5px); }
  70% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.bounceEffect{
  animation: bounce 0.6s ease-in-out;
  will-change: opacity;
}

@keyframes rotateIn {
  from {
    transform: rotate(-10deg);
    opacity: 0;
  }
  to {
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateCardPara{
  animation: rotateIn 0.8s ease-in-out;
  will-change: opacity;
  transform: rotate(-10deg);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.rotateCardPara.show {
  opacity: 1;
  transform: rotate(0);
}


