@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* GLOBAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1600px;
  margin: auto;
}

/* HERO */
.hero {
  background: #63a5cd;
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-top: 90px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  min-height: 85vh;
}

.hero-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button1 {
  display: inline-block;
  background-color: #bf9a41;
  padding: 12px 20px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  transition: 0.3s;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
}

/* Arrow icon size */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;   /* change this value */
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #bf9a41;
}

.box-text h3{
    font-family: "DM Sans", sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    font-weight: 500;
    min-height: 83px;
}

.box-text{
  border: 1px solid #c3c3c3;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}



/* hover effect */
.button1:hover {
  background-color: #a8842f;
  transform: translateY(-2px);
}
/* SHAPES */

.bg-shape {
  position: absolute;
  opacity: 0.15;
  animation: rotateShape 25s linear infinite;
  pointer-events: none;
}

.circle {
  border: 1px solid #9cd6d6;
  border-radius: 50%;
}

.circle.big {
  width: 260px;
  height: 260px;
  top: 120px;
  left: -100px;
}

.circle.h6 {
  width: 120px;
  height: 120px;
  top: 200px;
  right: 280px;
}

.circle.dashed {
  width: 220px;
  height: 220px;
  border: 1px dashed #9cd6d6;
  bottom: 80px;
  right: -100px;
}

.square {
  border: 1px solid #9cd6d6;
  width: 60px;
  height: 60px;
  transform: rotate(45deg);
}

.square.one {
  top: 180px;
  left: 40%;
}
.square.two {
  bottom: 150px;
  left: 25%;
}
.square.three {
  top: 100px;
  right: 15%;
}

@keyframes rotateShape {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* HERO TEXT */

.hero-text {
  font-family: "DM Sans", sans-serif;
  max-width: 800px;
}

.hero-text h6 {
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 500;
}

.hero-text h1 {
  font-family: "DM Sans", sans-serif;
  line-height: 110%;
  text-align: left;
  font-size: 74px;
  font-weight: 700;
  margin: 20px 0;

  /* reveal mask */
  display: inline-block;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);

  /* animation */
  animation: textRevealFade 2.5s ease forwards;
}

/* highlight word */
.hero-text h1 span {
  color: #0c4c50;
}

/* animation */
@keyframes textRevealFade {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.hero-text p {
  font-size: 18px;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  color: #fff;
  line-height: 140%;
  margin-bottom: 30px;
}


.hero-btns {
  display: flex;
  gap: 20px;
}

.btn {
  font-family: "DM Sans", sans-serif;
  background: #0c4c50;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* HERO IMAGE */

.hero-img {
  position: relative;
}

.hero-img img {
  width: 520px;
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

.exp-box {
  font-family: "DM Sans", sans-serif;

  position: absolute;
  bottom: 60px;
  left: -50px;
  background: #bf9a41;
  padding: 20px 28px;
  border-radius: 8px;
  font-weight: 500;
}

.exp-box span {
  font-family: "DM Sans", sans-serif;

  font-size: 28px;
  font-weight: 700;
  display: block;
}


@media only screen and (max-width:1460px) {

  .hero-text h1 {
    font-size: 58px;
  }

  .hero-text {
    max-width: 600px;
  }

  .exp-box {
      left: 40px;
  }

}

@media only screen and (max-width:900px) {

  .hero-wrap {
      flex-direction: column-reverse;
  }

  .hero-img img {
      width: 400px;
      margin-top: 35px;
  }

  .hero-text h6 {
  text-align: center;
}

  .hero-text h1 {
      text-align: center;
  }

  .hero-text p {
      text-align: center;
  }

  .btn {
      margin: 16px auto;
  }

  .hero-text h1 {
        font-size: 38px;
    }



}

