.mouse-scroll-icon {
  position: absolute;
  width: 25px;
  height: 35px;
  bottom: 89px;
  right: 133px;
  border: 2px solid #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.mouse-scroll-icon .wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 10px;
  background-color: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouse-bob 1.9s infinite ease-in-out;
}
@keyframes mouse-bob {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.about-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.about-hero-section .hero-bg .img-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(125% 10% at 50% 102%, transparent 50%, #fff 51%);
  mask-image: radial-gradient(125% 10% at 50% 102%, transparent 50%, #fff 51%);
}
.about-hero-section .hero-bg .hero-content {
  width: 1280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  z-index: 10;
}
.about-hero-section .hero-bg .hero-content img {
  margin-bottom: 43px;
}
.about-hero-section .hero-bg .hero-content span {
  font-size: 96px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}
.about-hero-section .hero-bg .hero-content span::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-color: #E87722;
  border-radius: 50%;
  position: absolute;
  bottom: 15px;
  right: -39px;
}
.about-hero-section .hero-bg .hero-content .title-butn {
  padding-top: 35px;
  display: flex;
  align-items: center;
}
.about-hero-section .hero-bg .hero-content .title-butn .title {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 22px;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.decorative-dots {
  position: absolute;
  right: 0;
  top: 105px;
}
.header-section {
  text-align: center;
  position: relative;
  padding-top: 142px;
  padding-bottom: 192px;
}
.header-section .quote-icon {
  display: inline-block;
  position: absolute;
  left: 160px;
  top: 0;
}
.header-section .quote-icont {
  position: absolute;
  right: 160px !important;
  bottom: 0 !important;
}
.header-section .main-title {
  color: #002EA6;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
}
.header-section .sub-desc {
  color: #050505;
  font-size: 20px;
  margin: 0 auto;
  line-height: 32px;
}
.feature-block {
  padding: 80px 0;
}
.feature-block.bg-light {
  background-color: #F2F7FF;
}
.feature-block.bg-white {
  background-color: #fff;
}
.feature-block .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.feature-block .image-wrapper {
  display: flex;
  justify-content: center;
}
.feature-block .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
}
.feature-block .text-wrapper {
  width: 660px;
}
.feature-block .text-wrapper .icon-badge {
  margin-bottom: 47px;
}
.feature-block .text-wrapper h2 {
  font-size: 32px;
  color: #002EA6;
  margin-bottom: 38px;
}
.feature-block .text-wrapper p {
  font-size: 18px;
  color: #333333;
  text-align: justify;
  line-height: 1.8;
}
.feature-block .text-wrapper p strong {
  color: #002EA6;
}
.feature-block.reverse-layout .container {
  flex-direction: row-reverse;
}
.goals-section {
  background-color: #fff;
  padding-top: 140px;
  padding-bottom: 120px;
}
.goals-section .section-header {
  text-align: center;
  margin-bottom: 90px;
}
.goals-section .section-header .sec-title {
  color: #002EA6;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}
.goals-section .section-header .sec-subtitle {
  font-size: 20px;
  color: #050505;
}
.goals-section .goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.goals-section .goal-card {
  width: 620px;
  height: 250px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: -5px 0px 20px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-left: 50px;
}
.goals-section .goal-card .card-info {
  flex: 1;
  padding-right: 20px;
}
.goals-section .goal-card .card-info h3 {
  color: #002EA6;
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.goals-section .goal-card .card-info h3::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #002EA6;
  margin-top: 5px;
  transition: width 0.3s ease;
}
.goals-section .goal-card .card-info p {
  width: 340px;
  font-size: 18px;
  color: #333333;
  line-height: 1.8;
}
.goals-section .goal-card .card-icon {
  flex-shrink: 0;
  padding-right: 79px;
  padding-top: 30px;
}
.goals-section .goal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 64, 152, 0.1);
  border-color: rgba(0, 64, 152, 0.1);
}
.goals-section .goal-card:hover .card-info h3::after {
  width: 100%;
}
.goals-section .goal-card:hover::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #002EA6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.goals-section .goal-card:hover::before {
  transform: scaleX(1);
}
