/* Hero Section */
.element-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 733px;
}
.hero-container {
  position: relative;
  width: 95%;
  height: 100%;
  margin: 0 60px;
  border-radius: 26.67px;
  background-color: #eaf9ff;
  border: 1.33px solid #e2e2e2;
  box-shadow: 0px 0px 32px #0000000f;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
.hero-content {
  position: relative;
  width: 50%;
  padding: 146px 0 0 70px;
}
.hero-title-container {
  position: relative;
  margin-bottom: 20px;
}
.hero-title {
  font-family: "Playfair Display", Helvetica;
  font-weight: 700;
  color: #1b2774;
  font-size: 40px;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.rotating-words-container {
  position: absolute;
  min-width: 282px;
  height: 60px;
  top: 3px;
  left: 514px;
  background-color: #1b2774;
  overflow: hidden;
}
.rotating-words-container .rotating-word {
  height: 60px;
  text-align: center;
  font-family: "Playfair Display", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 38.1px;
  line-height: 57.2px;
  white-space: nowrap;
  animation: slideUp 10s infinite;
}
@keyframes slideUp {
  0%,
  20% {
    transform: translateY(0%);
  }
  25%,
  45% {
    transform: translateY(-100%);
  }
  50%,
  70% {
    transform: translateY(-200%);
  }
  75%,
  95% {
    transform: translateY(-300%);
  }
  100% {
    transform: translateY(0%);
  }
}
.hero-container h3 {
  font-family: "Playfair Display", Helvetica;
  color: #1b2774;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.hero-description {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #1b2774;
  font-size: 20px;
  line-height: 30px;
  max-width: 717px;
  margin-bottom: 50px;
}
.discover-button {
  height: 46px;
  width: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b2774;
  font-family: "Inter", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid #1b2774;
  cursor: pointer;
  position: relative;
  /* overflow: hidden; */
  z-index: 1;
  transition: color 0.3s ease;
}
.discover-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1b2774;
  z-index: -1;
  transform: scale(0);
  transform-origin: top left;
  transition: transform 0.4s ease;
}
.discover-button:hover::before {
  transform: scale(1);
}
.discover-button:hover {
  color: #fff;
}
.discover-button:hover::before {
  transform: scale(1);
}
.mobileDiscover {
  display: none;
}
/* hero slider */
.hero-images {
  width: 42%;
  padding-right: 90px;
  height: 100%;
}
.discoverButton:after {
  content: "";
  position: absolute;
  right: -11px;
  top: -11px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background-color: #eaf9ff;
  border-bottom: 1px solid #1b2774;
}
.discoverButton:before {
  content: "";
  position: absolute;
  left: -11px;
  bottom: -11px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background-color: #eaf9ff;
  border-top: 1px solid #1b2774;
}
/* About Us Section */
.element-about-us {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-container {
  width: 94%;
  margin: 100px 0;
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
.about-video {
  width: 890px;
  height: 678px;
  border-radius: 26px;
  border: 2px solid #2593d1;
  overflow: hidden;
  position: relative;
}
.about-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content {
  width: 738px;
  display: flex;
  flex-direction: column;
}
.section-title {
  margin: 40px 0 26px;
  font-family: "Playfair Display", Helvetica;
  font-size: 48px;
  font-weight: 400;
  color: #1b2774;
  line-height: 150%;
}
.section-text {
  margin: 0;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}
.section-text b {
  font-weight: 500;
}
.read-more {
  margin: 0;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 106px;
  background: linear-gradient(
    180deg,
    rgba(8, 54, 180, 1) 0%,
    rgba(135, 233, 249, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  position: relative;
}
.read-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #2593d1;
  transition: width 0.3s ease-in-out;
}
.read-more:hover {
  background: linear-gradient(
    180deg,
    rgba(8, 54, 180, 1) 0%,
    rgba(8, 54, 180, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.read-more:hover::after {
  background-color: rgba(8, 54, 180, 1);
}
.stats-container {
  display: flex;
  gap: 13px;
  margin-top: 100px;
}
.stat-item {
  position: relative;
  width: 200px;
  height: 172px;
  padding-left: 47px;
  border-left: 4px solid;
  border-image: linear-gradient(
      180deg,
      rgba(8, 54, 180, 1) 0%,
      rgba(135, 233, 249, 1) 100%
    )
    1;
}
.stat-number {
  display: block;
  font-family: "Playfair Display", Helvetica;
  font-weight: 400;
  color: #1b2774;
  font-size: 64px;
  line-height: 96px;
  margin-top: -20px;
}
.stat-label {
  display: block;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #1b2774;
  font-size: 20px;
  line-height: 30px;
  max-width: 169px;
}
/* Services Section */
.element-services {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.services-container {
  width: 95%;
  margin-bottom: 100px;
}
.services-cards {
  display: flex;
  align-items: flex-start;
}
.section-title.centered {
  text-align: center;
  margin-bottom: 40px;
}
.services-container .section-title {
  margin: 0;
  margin-bottom: 45px;
}
.service-card {
  width: 32%;
  height: 413px;
  padding: 40px;
  display: flex;
  margin: 0 10px;
  overflow: hidden;
  position: relative;
  border-radius: 13px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1px solid #2593d1;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 0 transparent;
  transition: color 0.6s ease, background-color 0.6s ease;
}
.service-card:hover {
  color: #ffffff;
}
.iconWrapper {
  top: -76px;
  right: -60px;
  width: 280px;
  height: 280px;
  display: flex;
  border-radius: 50%;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-color: #2592d117;
  z-index: 0;
  transition: top 1s ease, right 1s ease, width 1s ease, height 1s ease,
    border-radius 1s ease, background 1s ease;
}
.service-card:hover .iconWrapper {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 0%;
  background: linear-gradient(180deg, #2593d1 0%, #00669f 100%);
}
.iconCircel {
  top: -45px;
  right: -28px;
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: flex;
  background-color: #2592d125;
  padding: 2rem 2.7rem 0 2.5rem;
  transition: opacity 0.2s ease-in;
}
.iconCircel .cardIcon1 {
  width: 112px !important;
}
.iconCircel .cardIcon2 {
  width: 113px !important;
}
.iconCircel .cardIcon3 {
  width: 105px !important;
}
.serviceContentBox {
  width: 100%;
  z-index: 2;
}
.service-title {
  margin: 0;
  font-family: "Playfair Display", Helvetica;
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  margin-bottom: 20px;
}
.service-description {
  margin: 0;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  min-height: 80px;
}
.service-card:hover .iconCircel {
  opacity: 0;
}
.iconCircelHover {
  position: absolute;
  top: 64px;
  padding: 0;
  opacity: 0;
  width: 110px;
  display: flex;
  height: 110px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #2593d1;
  transition: opacity 0.7s ease-in;
  z-index: 10;
}
.service-card:hover .iconCircelHover {
  opacity: 1;
}
.iconCircelHover .cardIcon1 {
  width: 61px !important;
  filter: brightness(0) invert(1);
}
.iconCircelHover .cardIcon2 {
  width: 64px !important;
  filter: brightness(0) invert(1);
}
.iconCircelHover .cardIcon3 {
  width: 60px !important;
  filter: brightness(0) invert(1);
}

/* Impact Section */
.element-impact {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/impact-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  z-index: 9;
}
.element-impact:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 700px;
  height: 483px;
  background: url("../images/bg-1.webp") no-repeat;
  background-size: auto 101%;
  z-index: 0;
}
.element-impact:after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  width: 700px;
  height: 515px;
  background: url("../images/bg-2.webp") no-repeat;
  background-size: auto 100%;
  z-index: 0;
}
.impact-container {
  width: 92%;
  margin: 100px 0;
  display: flex;
}
.impact-content {
  width: 717px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-right: 149px;
}
.impact-content .section-title {
  margin: 0;
}
.impact-content .section-text {
  color: #1b2774;
}
.impact-items {
  flex: 1;
  margin: 10px 0 0 30px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  max-width: 866px;
}
.impact-item {
  position: relative;
  width: 417px;
  padding: 17px 28px;
  border-left: 1px solid #ffffffab;
  margin-bottom: 30px;
  min-height: 245px;
}
.impact-item::before {
  content: "";
  position: absolute;
  width: 4px;
  min-height: 52px;
  top: 19px;
  left: -2px;
  background: linear-gradient(180deg, #0836b4 2.56%, #87e9f9 100%);
}
.impact-item:nth-child(3),
.impact-item:nth-child(4) {
  margin-bottom: 12px;
}
.impact-item:nth-child(3)::before,
.impact-item:nth-child(4)::before {
  height: 92px;
}
.impact-title {
  margin: 0;
  font-family: "Playfair Display", Helvetica;
  font-weight: 400;
  color: #1b2774;
  font-size: 32px;
  line-height: 48px;
  margin-bottom: 18px;
}
.impact-text {
  margin: 0;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #050300;
  font-size: 18px;
  line-height: 27px;
}
.discover-button-filled {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 150%;
  height: 61px;
  width: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #ffffff;
  border: 1px solid #1b2774;
  cursor: pointer;
  position: relative;
  /* overflow: hidden; */
  z-index: 1;
  transition: color 0.3s ease;
}
.discover-button-filled::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #1b2774;
  z-index: -1;
  transform: scale(1);
  transform-origin: top left;
  transition: transform 0.4s ease;
}
.discover-button-filled:hover::before {
  transform: scale(0);
}
.discover-button-filled:hover {
  color: #1b2774;
}
.discoverFilledMob {
  display: none;
}

.discoverFilledButton:after {
  content: "";
  position: absolute;
  right: -11px;
  top: -11px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background-color: #eaf9ff;
  border-bottom: 1px solid #1b2774;
}
.discoverFilledButton:before {
  content: "";
  position: absolute;
  left: -11px;
  bottom: -11px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background-color: #eaf9ff;
  border-top: 1px solid #1b2774;
}
/* Testimonials Section */
.element-testmonials {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testmonialsContainer {
  width: 95%;
  margin-top: 25px;
}
.testmonialsContainer .section-title {
  margin-bottom: 20px;
}
.company-logos {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
}
.company-logos img {
  width: 68px;
  height: 68px;
}
.testimonials-slider {
  width: 100%;
}
.testimonial-card {
  height: 333px;
  display: flex;
  margin: 0 10px;
  color: #1b2774;
  padding: 32px 28px;
  flex-direction: column;
  border-radius: 13.33px;
  transition: all 0.3s ease;
  border: 2px solid #1b2774;
  justify-content: space-between;
  background: linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
  transition: background 0.5s ease, color 0.5s ease;
}
.testimonials-slider .owl-item.center .testimonial-card {
  background: linear-gradient(180deg, #2593d1 0%, #00669f 100%);
  color: #ffffff;
  border: 2px solid #2593d1;
}
.testimonial-text {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 40px;
}
.testimonial-author {
  margin-top: auto;
}
.author-name {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 5px;
}
.author-title {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

/* Contact Form Section */
.element-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
}
.form-container {
  width: 92%;
  margin: 100px 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.form-image {
  flex: 1;
  max-width: 866px;
  height: 679px;
  border: 2px solid #2593d1;
  border-radius: 53px;
  overflow: hidden;
}
.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-content {
  flex: 1;
  max-width: 717px;
  display: flex;
  flex-direction: column;
}
.form-content h2 {
  margin: 0;
  margin-bottom: 26px;
  font-size: 40px;
}
.email-form {
  margin-top: auto;
}
.input-container {
  position: relative;
  width: 100%;
  height: 80px;
}
.email-input {
  width: 100%;
  height: 100%;
  padding: 0 33px;
  border: 1.5px solid #00669f;
  border-radius: 13.5px;
  font-family: "Inter", Helvetica;
  font-size: 20px;
  color: #000000;
}
.email-input::placeholder {
  color: #000000;
}
.email-input:focus {
  outline: none;
}
.submit-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 100%;
  border-radius: 14px;
  background: linear-gradient(180deg, #2593d1 0%, #00669f 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.submit-button:hover {
  width: 110px;
  transition: 0.3s;
}
.form-disclaimer {
  font-family: "Inter", Helvetica;
  font-weight: 300;
  font-style: italic;
  color: #333333;
  font-size: 18px;
  line-height: 150%;
  margin-top: 13px;
}
.btnList {
  width: 100%;
  height: auto;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 30px;
}
.btnList .discover-button-filled {
  width: auto;
  font-size: 18px;
  font-weight: 500;
  height: 46px;
  text-transform: uppercase;
  padding: 0 40px;
}
.btnList .discoverButton::before,
.btnList .discoverButton::after,
.btnList .discoverFilledButton::after,
.btnList .discoverFilledButton::before {
  background-color: #fff;
}
.btnList .discoverFilledButton::after {
  background-color: #fff;
}

/* -------------- */
