.about-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: url(../assesst/hero-img.png);
}

/* container layout */
.about-hero-wrap {
  max-width: 1280px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================================
   TITLE
================================ */

.about-hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ================================
   BREADCRUMB (RIGHT SIDE)
================================ */

.about-hero-right {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
}

.about-hero-right .sep {
  opacity: 0.5;
}

.about-hero-right .title {
  color: #00b4d8;
  font-weight: 600;
}
.about-hero-right a {
  color: #ffffff;
}
.about-hero-right a :hover {
  color: #1475e2;
}

/* ================================
   DECORATIVE CURVE 
================================ */

.about-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 198, 209, 0.18),
    transparent 70%
  );
}
/*Service Section Start*/

.service-sec {
  background: #f5f7fb;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.service-sec .container {
  max-width: 1280px;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: #0b1a45;
  transition: 0.25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.service-item:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-item .arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
  stroke: currentColor;
  flex-shrink: 0;
}

.support-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 568px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.support-card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  z-index: 1;
}

.support-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 2;
  display: block;
}

.support-content {
  position: absolute;
  bottom: -94px;
  left: 0;
  width: 100%;
  height: 75%;
  padding: 48px 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.support-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 26px;
  letter-spacing: 0.2px;
}

.support-btn {
  position: relative;
  width: 278px;
  height: 95px;
  background: #ffffff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: 0.25s;
}

.support-btn svg {
  position: absolute;
  left: -26px;
  top: 28px;
}
.support-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.support-text span {
  font-size: 14px;
  color: #14c6d1;
  font-weight: 600;
  padding: 0 0 0 13px;
}
.support-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #00194c;
  padding: 0 0 0 37px;
}
.support-btn:hover {
  transform: translateY(-2px);
}

.service-content {
  max-width: 820px;
}

.service-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b1a45;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #6b7b8f;
  margin-bottom: 16px;
}

.service-content .bold {
  font-size: 24px;
  font-weight: 600;
  color: #0b1a45;
}

.sub {
  margin: 40px 0 18px;
  font-size: 18px;
  font-weight: 600;
  color: #0b1a45;
}

.service-img {
  width: 100%;
  height: 524px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 40px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 50px;
}

.feature {
  display: flex;
  gap: 14px;
}

.num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #0b1a45;
  flex-shrink: 0;
}

.feature h5 {
  font-size: 14px;
  font-weight: 600;
  color: #0b1a45;
  margin-bottom: 6px;
}

.feature p {
  font-size: 13px;
  color: #7c8ca5;
}
/*Service Section End*/


/*Media Queries Start*/
@media (max-width: 1200px) {
  .service-sec {
    padding: 80px 0;
  }

  .service-title {
    font-size: 30px;
  }

  .service-content .bold {
    font-size: 20px;
  }

  .service-img {
    height: 420px;
  }

  .features {
    gap: 22px 30px;
  }
}

@media (max-width: 992px) {
  .service-sec {
    padding: 60px 0;
  }

  .service-sidebar {
    gap: 30px;
  }

  .support-card {
    max-width: 100%;
    height: 480px;
  }

  .service-title {
    font-size: 28px;
  }

  .service-img {
    height: 350px;
  }

  .features {
    gap: 20px 24px;
  }
}


@media (max-width: 768px) {
  .service-sec {
    padding: 50px 0;
  }

  
  .service-sidebar {
    margin-bottom: 40px;
  }

  .support-card {
    height: 440px;
  }

  .service-title {
    font-size: 26px;
  }

  .service-content .bold {
    font-size: 18px;
  }

  .service-img {
    height: 280px;
  }

  /* single column features */
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-content {
    bottom: -60px;
  }
}


@media (max-width: 576px) {
  .service-sec {
    padding: 40px 0;
  }

  .service-item {
    padding: 12px 14px;
    font-size: 13px;
  }

  .service-title {
    font-size: 22px;
  }

  .service-content p {
    font-size: 14px;
  }

  .service-content .bold {
    font-size: 16px;
  }

  .service-img {
    height: 220px;
    border-radius: 12px;
  }

  .support-card {
    height: 400px;
  }

  .support-btn {
    width: 240px;
    height: 80px;
  }

  .support-content h4 {
    font-size: 15px;
  }

  .support-text strong {
    font-size: 15px;
  }
}

@media (max-width: 320px) {
  .service-sec {
    padding: 30px 0;
  }

  .service-item {
    padding: 10px 12px;
    font-size: 12px;
    gap: 10px;
  }

  .service-item svg {
    width: 28px !important;
    height: 28px !important;
  }

  .service-title {
    font-size: 20px;
  }

  .service-content p {
    font-size: 13px;
  }

  .service-content .bold {
    font-size: 15px;
  }

  .service-img {
    height: 180px;
    border-radius: 10px;
    margin-bottom: 24px;
  }

  .support-card {
    height: 360px;
  }

  .support-btn {
    width: 200px;
    height: 72px;
  }

  .support-text span {
    font-size: 12px;
  }

  .support-text strong {
    font-size: 13px;
  }

  .feature h5 {
    font-size: 13px;
  }

  .feature p {
    font-size: 12px;
  }

  .sub {
    font-size: 16px;
    margin: 28px 0 14px;
  }
}

/*Media Queries End*/