@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "poppins";
}

/* Global Styles */
:root {
  --primary: #6c55f9;
  --secondary: #dd7109;
  --dark: #0f172b;
  --light: #f8f9fa;
  --text: #5c6a7e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
}

html,
body {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #5a45d8;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 85, 249, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: #e6681e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 116, 37, 0.3);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
  background: black;
}

header.scrolled {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: var(--dark) !important;
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
}

.logo span {
  font-size: 35px;
  font-weight: 700;
  color: var(--light);
  margin-left: 10px;
}

.logo span a {
  font-size: 35px;
  font-weight: 700;
  color: var(--light);
  margin-left: 10px;
  text-decoration: none;
}


.logo .scrolled {
  color: var(--dark) !important;
}
.logo .scrolled a {
  color: var(--dark) !important;
}

.nav-menu {
  display: flex;
  list-style: none;
}

#navMenu .scrolled {
  color: var(--dark);
}
.nav-menu li {
  margin: 0 15px;
  position: relative;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--light);
}

.nav-menu li a:hover {
  color: var(--secondary);
}

.nav-menu li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-menu li a:hover:after {
  width: 100%;
}

.nav-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu li {
  margin: 0;
  padding: 8px 20px;
}

.sub-menu li a {
  color: var(--text);
  font-weight: 400;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
}

.mobile-menu-btn:active {
  background: transparent;
  color: var(--secondary);
}

.mobile-menu-btn:focus {
  background: transparent;
  color: var(--secondary);
}

.header-actions {
  display: flex;
  align-items: center;
}
/* Mobile Menu Styles */
.nav-menu {
  transition: all 0.3s ease;
  font-size: 18px;
  font-weight: bold;
}

.nav-menu.active {
  display: flex;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  flex-direction: column;
  background: #fff;
  z-index: 999;
  padding: 20px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.nav-menu.active li a {
  color: #000 !important;
  padding: 10px 20px;
  font-size: 16px;
}

.nav-menu.active li a:hover {
  color: var(--secondary);
}

.pay-btn:hover {
  background-color: white;
  /* border-radius: 2px solid orange; */
  color: black;
}

@media screen and (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 999;
    padding: 20px 0;
    border-top: 1px solid #eee;
    height: 100vh;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .nav-menu li a {
    color: #000;
    font-size: 16px;
  }

  .header-actions {
    flex-direction: row-reverse;
    gap: 10px;

    .pay-btn {
      display: none;
    }
  }
}

/* Hero Section  */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #100a08;
  padding: 0;
  background-image: url(images/glitters.webp);
  overflow: hidden;
  position: relative;
  flex-wrap: wrap;

  .btm-fr {
    position: absolute;
    left: 0;
    bottom: -45px;
    width: 100%;
    max-width: 100%;
  }

  .hero-left {
    color: #fff;
    width: 50%;
    padding-top: 100px;
    z-index: 999;
    h5 {
      color: #ff7b00;
      letter-spacing: 1px;
    }
    h1 {
      font-size: 70px;
      /* margin-left: 0%; */
      margin-top: -30%;
      text-wrap: nowrap;
    }
    p {
      font-size: 14px;
      margin-bottom: 50px;
    }
    a {
      position: relative;
      z-index: 100;
      background-color: #ff7425;
      padding: 13px 30px;
      border-radius: 48px;
      color: #fff;
      text-decoration: none;
      display: inline-block;
      font-weight: 600;
    }
    a:hover {
      background-color: #fff;
      color: #000;
    }
    .half-progress {
      width: 234px;
      height: 252px;
      left: 651px;
      top: 726px;
      transform-origin: 50% 50% 0px;
      animation: half 3s infinite alternate-reverse;
      z-index: 100;
      position: absolute;
    }
  }

  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    position: relative;
    padding-top: 15%;
    padding-right: 10%;

    .heroimg {
      max-width: 100%;
      z-index: 100;
    }
    .growarrow {
      position: absolute;
      max-width: 200px;
      left: 60%;
      top: 40%;
      transform: translateX(-50%);
      animation: arrow 3s infinite alternate-reverse;
    }
    .circle {
      position: absolute;
      max-width: 700px;
      animation: circle 5s infinite alternate-reverse;
    }
    .three-circles {
      position: absolute;
      max-width: 600px;
      animation: three 5s infinite reverse;
    }
  }
}

/* Media Queries */

@media screen and (max-width: 1024px) {
  .hero-section {
    flex-direction: column;
    padding: 10% 5% 0 5%;

    .hero-left,
    .hero-right {
      width: 100%;
    }

    .hero-left {
      text-align: center;
      h1 {
        font-size: 50px;
        padding-top: 35%;
      }
      p {
        font-size: 13px;
        margin-bottom: 30px;
      }
      a {
        font-size: 14px;
      }
    }

    .hero-right {
      .circle {
        max-width: 800px;
      }
      .three-circles {
        max-width: 700px;
      }
    }

    .half-progress {
      display: none;
    }
  }
}

@media screen and (max-width: 600px) {
  .hero-section {
    padding: 30% 5% 0 5%;

    .hero-left {
      padding-bottom: 30px;
      h1 {
        font-size: 34px;
        line-height: 1.2;
      }
      p {
        font-size: 12px;
        margin-bottom: 20px;
      }
      a {
        padding: 8px 20px;
        font-size: 13px;
      }
    }

    .hero-right {
      .heroimg {
        width: 50%;
      }
      .growarrow {
        max-width: 30%;
        bottom: 10%;
        left: 50%;
      }
      .circle {
        max-width: 300px;
      }
      .three-circles {
        max-width: 200px;
      }
    }

    .btm-fr {
      bottom: -20px;
      width: 100%;
    }

    .half-progress {
      display: none;
    }
  }
}

@keyframes arrow {
  0% {
    transform: translate3d(0px, 10px, 0px);
  }
  100% {
    transform: translate3d(0px, -10px, 0px);
  }
}

@keyframes half {
  0% {
    transform: translate3d(10px, 0px, 0px);
  }
  100% {
    transform: translate3d(-10px, 0px, 0px);
  }
}

@keyframes circle {
  0% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(40deg);
  }
}

@keyframes three {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* End Hero Section  */

.site-footer {
  background-color: #111;
  color: #fff;
  padding: 20px 30px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  /* margin-bottom: 10px; */
}

.footer-center {
  flex: 1;
  text-align: center;
}

.footer-center a {
  color: #fff;
  margin: 0 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-center a:hover {
  /* color: #00aaff; */
  color: #ff7425;
}

.footer-right a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #00aaff;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
}

.footer-right li {
  display: inline;
  margin: 0;
  padding: 0;
}

.footer-right li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 20px;
  background: #fff;
  margin-left: 12px;
  vertical-align: middle;
  border-radius: 1px;
}

@media screen and (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-center {
    display: flex;
    flex-direction: column; /* stack links vertically */
    align-items: center;    /* center each link */
    gap: 8px;               /* spacing between them */
    margin: 12px 0;
  }

  .footer-center a {
    margin: 0;              /* reset margins */
    white-space: normal;    /* allow line breaks if text is long */
  }

  .footer-right {
    margin-top: 10px;
  }

  .footer-right a {
    display: block;
    margin: 5px 0;
  }
}

/* process section */
.section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #fff7f0, #ffffff);
}

.section h5 {
  color: #ff7f00;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.section h5 i {
  margin-right: 8px;
}

.section h2 {
  font-size: 52px;
  font-weight: 600;
  color: #222;
  margin-bottom: 40px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.step {
  flex: 1 1 22%;
  min-width: 200px;
  position: relative;
}

.step .circle {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 999;
  position: relative;
}
.step .circle:hover {
  animation: flips 1s ease;
}

@keyframes flips {
  0% {
    transform: rotateX(0) rotateZ(0);
  }
  50% {
    transform: rotateX(180deg) rotateZ(180deg);
  }
  100% {
    transform: rotateX(0) rotateZ(0);
  }
}
@media screen and (max-width: 1200px) {
  .step .circle {
    width: 180px;
    height: 180px;
  }
}
.bdr-top {
  position: absolute;
  max-width: 100%;
  left: 6%;
  top: -15px;
}
.bdr-btm {
  position: absolute;
  max-width: 100%;
  left: 7%;
  top: 90px;
}
.step .circle i {
  color: #ff7f00;
  font-size: 30px;
}

.step-number {
  font-weight: bold;
  color: #ff7f00;
  background: linear-gradient(
    180deg,
    rgba(255, 123, 0, 1) 0%,
    rgba(16, 10, 8, 0) 100%
  );
  opacity: calc(10 / 10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 30px;
  margin: 30px 0 5px;
}

.step-text {
  font-size: 14px;
  color: #555;
  line-height: 1.4em;
  font-weight: 600;
}

.arrow {
  position: absolute;
  top: 35px;
  right: -50px;
  font-size: 24px;
  color: #ffddb0;
}

.step:last-child .arrow {
  display: none;
}
@media (max-width: 930px) {
  .bdr-top,
  .bdr-btm {
    display: none;
  }
}
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    margin-bottom: 40px;
  }

  .arrow {
    display: none;
  }
}

/* About Section  */
.about-us-section {
  padding: 60px 20px;
  background: #f9f8f6;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.about-left {
  background-image: url(images/bg-pattern-img.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
.about-left,
.about-right {
  flex: 1 1 50%;
}

.image-wrapper {
  position: relative;
  text-align: center;
}

.about-img {
  max-width: 80%;
  height: auto;
}

.ranking-box {
  display: none;
  position: absolute;
  bottom: 0;
  left: 20%;
  transform: translateX(-50%);
  background: #e26a00;
  color: #fff;
  padding: 20px;
  border-radius: 14px;
  width: 260px;
  text-align: center;
}

.ranking-box h2 {
  font-size: 32px;
  margin: 0;
}

.ranking-box p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.section-label {
  text-transform: uppercase;
  color: #e26a00;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-right h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: left;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
  /* text-align: center; */
}

.info-boxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
}

.custom-box {
  background: #f7f7f7;
  padding: 0;
  border-radius: 16px;
  flex: 1 1 240px;
}

.custom-box h4 {
  margin-bottom: 5px;
  font-size: 18px;
}

.custom-box p {
  font-size: 14px;
  margin-bottom: 5px;
}

.learn-more-btn {
  background: #e26a00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 48px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features-list li {
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.features-list li i {
  color: #e26a00;
  position: absolute;
  left: 0;
  top: 2px;
}

.chat-box {
  background: #fff;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 14px;
  font-size: 14px;
  color: #111;
  position: relative;
}

.chat-box i {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 20px;
  color: #e26a00;
}

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-left,
  .about-right,
  .info-boxes {
    flex: 1 1 100%;
  }
  .section-label {
    text-align: left;
  }
  .ranking-box {
    position: static;
    transform: none;
    margin-top: 20px;
    width: 100%;
  }

  .features-list {
    margin-top: 20px;
  }

  .about-right h2 {
    font-size: 24px;
    text-align: left;
  }

  .description {
    font-size: 14px;
    text-align: left;
  }

  .custom-box,
  .features-list {
    width: 100%;
  }
  .features-list {
    text-align: left;
  }
}

/* Human resource */

.human-us-section {
  padding: 60px 20px;
  margin-bottom: -10%;
}

.human-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.human-left {
  /* background-image: url(images/bg-pattern-img.png); */
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
.human-left,
.human-right {
  flex: 1 1 50%;
}

.image-wrapper {
  position: relative;
  text-align: center;
}

.human-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.ranking-box {
  display: none;
  position: absolute;
  bottom: 0;
  left: 20%;
  transform: translateX(-50%);
  background: #e26a00;
  color: #fff;
  padding: 20px;
  border-radius: 14px;
  width: 260px;
  text-align: center;
}

.ranking-box h2 {
  font-size: 32px;
  margin: 0;
}

.ranking-box p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.4;
}

.section-label {
  text-transform: uppercase;
  color: #e26a00;
  font-weight: bold;
  margin-bottom: 10px;
}

.human-right h5 {
  color: #e26a00;
  font-weight: 400;
}

.human-right h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: left;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.human-right .info-boxes {
  background-color: #fff;
  padding: 0 !important;
  border-radius: 0 !important;
  /* border-top: 1px solid #adadad; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  padding: 10px;
  box-sizing: border-box;
}

.custom-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  flex: 1 1 240px;
}

.custom-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.human-right .custom-box p {
  font-size: 14px;
  margin-bottom: 15px;
  text-align: left;
}

.human-right .custom-box a {
  color: #e26a00;
  text-decoration: none;
}

.learn-more-btn {
  background: #e26a00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 48px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.features-list li {
  margin-bottom: 15px;
  font-size: 14px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.features-list li i {
  color: #e26a00;
  position: absolute;
  left: 0;
  top: 2px;
}

.chat-box {
  background: #fff;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 14px;
  font-size: 14px;
  color: #111;
  position: relative;
}

.chat-box i {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 20px;
  color: #e26a00;
}

@media screen and (max-width: 768px) {
  .human-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .human-left,
  .human-right,
  .info-boxes {
    flex: 1 1 100%;
  }
  .section-label {
    text-align: left;
  }
  .ranking-box {
    position: static;
    transform: none;
    margin-top: 20px;
    width: 100%;
  }

  .features-list {
    margin-top: 20px;
  }

  .human-right h2 {
    font-size: 24px;
    text-align: left;
  }

  .description {
    font-size: 14px;
    text-align: left;
  }
  .custom-box h4{
    text-align: left;
    font-size: 13px;
    font-weight: 600;
  }
  .custom-box p{
    text-align: left;
    font-size: 20px;
  }
  .custom-box,
  .features-list {
    width: 100%;
  }
  .features-list {
    text-align: left;
  }
}

/* service section  */
.services-section {
  background: #000000;
  background-image: url(images/2c72c316-1851-43cd-9145-fae5f176f7b6.png);
  color: #fff;
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  margin-top: -30px;
}

.section-header .sub-heading {
  color: #ff8a00;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 35px;
  justify-content: center;
  padding: 10px 20%;
  margin-top: 200px;
  z-index: 1000;
}

.service-card {
  /* From https://css.glass */
  background: rgb(255 255 255 / 14%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(5px);
  padding: 25px;
  border-radius: 16px;
  position: relative;
  text-align: left;
  height: 320px;
  z-index: 99;
  transition: transform 0.26s cubic-bezier(0.5, 1.6, 0.7, 1), box-shadow 0.16s,
    border 0.18s, z-index 0.18s;
  will-change: transform;
}
.service-card:nth-child(1) {
  transform: translateY(90px);
}
.service-card:nth-child(3) {
  transform: translateY(-90px);
}

.service-card:nth-child(5) {
  transform: translateY(90px);
}

.cards-wrapper .service-card:nth-child(1):hover {
  transform: translateY(45px) scale(1.04);
  z-index: 2;
}
.cards-wrapper .service-card:nth-child(2):hover {
  transform: translateY(15px) scale(1.04);
  z-index: 2;
}
.cards-wrapper .service-card:nth-child(3):hover {
  transform: translateY(-15px) scale(1.04);
  z-index: 2;
}
.cards-wrapper .service-card:nth-child(4):hover {
  transform: translateY(15px) scale(1.04);
  z-index: 2;
}
.cards-wrapper .service-card:nth-child(5):hover {
  transform: translateY(45px) scale(1.04);
  z-index: 2;
}

.service-card:hover {
  border: 1.5px solid #ff7425;
  box-shadow: 0 12px 44px 0 rgba(255, 116, 37, 0.18);

  .card-number {
    color: #fff;
  }
}

.card-number {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #ff8a00;
  font-weight: bold;
}

.icon {
  font-size: 24px;
  color: #ff8a00;
  margin-bottom: 15px;
  display: inline-block;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0;
}

.service-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #ccc;
}

.service-card img {
  width: 68px;
  height: 68px;
}

.rocket-image {
  margin-top: 50px;
  text-align: center;
}

.rocket-image img {
  max-width: 220px;
  animation: rocket 3s infinite ease alternate-reverse;
  z-index: 9;
  position: relative;
}

.bgs {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  content: "";
  background-image: url(images/rocket-bg-img1.png);
  background-position: bottom;
  background-repeat: no-repeat;
  bottom: 0;
}

.btm-shape {
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: 0;
  svg {
    position: absolute;
    fill: #fff;
    width: 110%;
    transform: rotate(180deg);
    bottom: 0;
  }
}

@keyframes rocket {
  0% {
    transform: translatey(0);
  }
  100% {
    transform: translatey(30px);
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 24px;
  }
  .rocket-image:after {
    bottom: -30%;
  }
  .rocket-image img {
    display: none;
  }
  .btm-shape {
    display: none;
  }
  .cards-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 16px;
  }
  .service-card:nth-child(1) {
    transform: translateY(0);
  }
  .service-card:nth-child(2) {
    transform: translateY(0);
  }
  .service-card:nth-child(3) {
    transform: translateY(0);
  }
  .service-card:nth-child(4) {
    transform: translateY(0);
  }
  .service-card:nth-child(5) {
    transform: translateY(0);
  }
  .bgs {
    opacity: 0.2;
  }
}

/* Privacy Policy Page */
.policy-page {
  margin-top: 40px;
  padding: 80px 20px;
}
.policy-page h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.policy-page h2 {
  margin-top: 30px;
  font-size: 24px;
  color: #222;
}
.policy-page p,
.policy-page ul {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.policy-page ul {
  padding-left: 20px;
}
/* Faq Section */

.faq-section {
  padding: 90px 20px;
  margin-bottom: -4%;
}

.faq-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  /* overflow: hidden; */
  flex-wrap: wrap;
}

/* LEFT COLUMN */
.faq-left {
  flex: 1 1 40%;
  background: #fef6ed;
  padding: 40px;
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url(images/2c72c316-1851-43cd-9145-fae5f176f7b6.png);
  background-size: contain;
}

.faq-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
  background: #fff;
  border-radius: 20px;
  padding: 50px 10px;
  margin-top: -30%;
  border: 1px solid #f1f1f1;
}

.subtitle {
  font-size: 22px;
  color: #666;
  padding-top: -50%;
  text-align: center;
  /* margin-bottom: 100%; */
}

.assistance-title {
  font-size: 18px;
  margin: -20px 0 10px;
  text-align: center;
}

.contact-boxes {
  /* display: flex; */
  gap: 15px;
  padding: 10%;
  /* flex-wrap: wrap; */
}

.contact-card {
  background: #f7921e;
  padding: 10%;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 45%;
  font-weight: 500;
  color: #fff;
  height: 100%;
  /* width: 100%; */
  margin-bottom: 5px;
}

.contact-card:hover {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  color: #222;
}

.contact-card span {
  font-size: 20px;
  font-weight: 600;
  align-items: center;
}

.contact-card i {
  text-align: center;
  color: #fff;
  font-size: 20px;
}

.contact-card i:hover {
  text-align: center;
  color: #222;
  font-size: 20px;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.contact-card a:hover {
  color: #222;
  text-decoration: none;
  font-weight: bold;
}

.contact-heading {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #f7931e;
  padding-bottom: 70px;
}

/* RIGHT COLUMN */
.faq-right {
  flex: 1 1 60%;
  padding: 40px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 500;
  flex: 1;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.faq-question .number {
  background: linear-gradient(45deg, #f7921e, #ef8e58);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 20px;
}

.faq-question i {
  font-size: 16px;
  color: #f7921e;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 10px;
}

.faq-item.active .faq-question h4 {
  color: #f7921e;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    padding: 20px;
  }

  .assistance-title {
    padding-top: 10%;
  }

  .contact-boxes {
    flex-direction: column;
  }

  .contact-card {
    justify-content: center;
    text-align: center;
  }

  .faq-question {
    align-items: center;
  }
}

/* Contact section  */

.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 10%;
}

.info-box {
  background-color: #fffdfb;
  padding: 30px 20px;
  margin-bottom: 10px;
  flex: 1;
  border-radius: 12px;
  border: 1px solid #f0ece7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.info-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-box i {
  font-size: 24px;
  color: white;
  background: #000;
  padding: 12px;
  border-radius: 8px;
  position: absolute;
  top: -20px;
  left: 50%;
  width: 20%;
  transform: translateX(-50%);
}

.info-box.orange i {
  background: #f7931e;
}

.info-box h3 {
  margin-top: 20px;
  font-size: 18px;
}

.info-box p {
  margin: 10px 0;
  color: #555;
  font-size: 14px;
}

.contact-bottom {
  display: flex;
  margin: 10px 10%;
}

.contact-form {
  flex: 1;
  background: #f6f3ed;
  padding: 40px;
  border-radius: 20px 0 0 20px;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.form-grid input,
textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: white;
  resize: vertical;
}

textarea {
  grid-column: span 2;
  min-height: 120px;
}

.form-button {
  margin-top: 15px;
}

.form-button button {
  background: linear-gradient(to right, #f7931e, #eb7924);
  border: none;
  padding: 12px 25px;
  color: white;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.form-button button:hover {
  background: linear-gradient(to right, #eb7924, #f7931e);
}

.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  border-radius: 0 20px 20px 0;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .contact-form {
    border-radius: 20px 20px 0 0;
  }

  .contact-top {
    flex-direction: column;
  }

  .contact-bottom {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  textarea {
    grid-column: span 1;
  }
  .contact-image img {
    border-radius: 0 0 20px 20px;
  }
}

/* Payment Page  */
.payment-container {
  max-width: 500px;
  margin: 60px auto;
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
h2 {
  text-align: center;
  margin-bottom: 25px;
}
label {
  font-weight: bold;
}
input,
select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.price {
  font-size: 18px;
  font-weight: bold;
  color: #008000;
  margin-bottom: 20px;
}
button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}
button:hover {
  background-color: #0056b3;
}

/* Contact Page */

.contact-page {
  h2 {
    margin-top: 50px;
    font-size: 2rem;
  }
}
.cont-container {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;

  .email,
  .phone {
    border: 1px solid #000;
    padding: 20px 50px;
    margin: 10px;
    background-color: #d8e6f5;
  }
}
@media screen and (max-width: 600px) {
  .cont-container {
    flex-direction: column;
  }
}

/* custom popup */

.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.custom-alert-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.custom-alert-content h4 {
  margin: 0 0 10px;
  color: #2e7d32;
}

.custom-alert-content p {
  margin: 0 0 20px;
  font-size: 16px;
}

.custom-alert-content button {
  background: #2e7d32;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.custom-alert-content button:hover {
  background: #1b5e20;
}

.hidden {
  display: none;
}

.flash-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  animation: slideDown 0.5s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.flash-message.success {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.flash-message.error {
  background: linear-gradient(135deg, #e53935, #b71c1c);
}

.flash-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.flash-content button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  margin-left: 10px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stay Ahead Section  */

.stay-ahead {
  background-color: #100a08;
  color: #fff;
  padding: 50px 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    /* overlay */ url("images/bg-light-effect.png"),
    /* decorative texture */
      url("images/2c72c316-1851-43cd-9145-fae5f176f7b6.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
  overflow: hidden;

  .stay-ahead-top {
    text-align: center;

    h1 {
      font-size: 4rem;
      font-weight: 500;
      line-height: 70px;
      margin: auto 20%;
    }
    p {
      line-height: 70px;
    }

    a {
      padding: 15px 30px;
      margin-bottom: 100px;
    }
  }
  .stay-ahead-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    .highlight {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #1f1f1f;
      padding: 20px;
      border-radius: 20px 20px 0 0;
      width: 50%;
    }
  }

  .stay-ahead-bottom {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 30px;
    border-top: 1px solid #ffffff21;

    .btm-section {
      display: flex;
      justify-content: space-between;
      align-items: center;

      p {
        font-weight: 500px;
        line-height: 30px;
      }

      i {
        border-radius: 50%;
        background-color: #ffffff21;
        padding: 20px 25px 20px 25px;
        font-size: 22px;
        margin-right: 10px;
      }
      i:hover {
        background-color: #eb7924;
      }
    }
  }
  .speed-star {
    position: absolute;
    right: 0;
    animation: star 2s ease;
  }
}
@keyframes star {
  0% {
    right: -302px;
  }
  100% {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .stay-ahead .stay-ahead-top h1 {
    font-size: 36px;
    line-height: 50px;
    font-weight: 700;
    margin: auto 2%;
  }
  .stay-ahead .stay-ahead-top p {
    line-height: 30px;
    margin: 20px 10%;
  }
  .stay-ahead-middle .highlight {
    width: 60% !important;
    flex-direction: column;
    text-align: center;
  }
  .stay-ahead-bottom {
    flex-direction: column;
    text-align: center;
  }
  .stay-ahead-bottom .btm-section {
    flex-direction: column;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .speed-star {
    display: none;
  }
}

/* Our Services Section  */
.our-services {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fffaf5, #fefbf7);
}

.container {
  max-width: 1200px;
  margin: auto;
}

.heading {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #f7931e;
  padding-bottom: 30px;
}

.card-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.our-service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  position: relative;
  flex: 1;
  min-width: 300px;
}

.icon-title {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.icon {
  width: 60px;
  height: 60px;
}

.our-service-card h3 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: #111;
}

.our-service-card p {
  font-size: 15px;
  color: #555;
  margin: 15px 0;
}

.read-more {
  color: #ff6600;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #ff6600;
  padding: 8px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}

.read-more:hover {
  background: #ff6600;
  color: #fff;
}

.card-image img {
  width: 100%;
  border-radius: 12px;
}

.bg-number {
  position: absolute;
  font-size: 80px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03);
  right: 20px;
  top: 20px;
  pointer-events: none;
}

.our-service-card:nth-child(2) {
  .bg-number {
    position: absolute;
    font-size: 80px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    right: 20px;
    top: 45%;
    pointer-events: none;
  }
}

#content {
  scroll-margin-top: 60px; /* Match your header’s height */
}

#seo {
  scroll-margin-top: 60px; /* Match your header’s height */
}

#human {
  scroll-margin-top: 60px; /* Match your header’s height */
}

#services {
  scroll-margin-top: 40px; /* Match your header’s height */
}

#contact {
  scroll-margin-top: 200px; /* Match your header’s height */
}

#about {
  scroll-margin-top: 20px; /* Match your header’s height */
}



/* Testiminoal Section  */

.testimonial {
  padding: 100px 1px;
  background-color: #f6f4f1;
  .subheading {
    text-align: center;
    color: #e26a00;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1em;
    letter-spacing: 2px;
  }
  h2 {
    color: #111111;
    font-weight: 600;
    font-size: 52px;
    line-height: 62px;
    letter-spacing: -1px;
    margin: auto 30%;
  }
  .testimonial-body {
    /* max-width: 1380px; */
    max-width: 100%;
    margin: 20px 10%;
    display: flex;

    .testimonial-body-left {
      background-color: #1d1d1d;
      background-image: url("https://wordpress.zozothemes.com/seoinux/wp-content/uploads/sites/33/2024/12/circle-shape.webp");
      --background-overlay: "";
      background-position: center center;
      background-size: cover;
      width: 30%;
      display: flex;
      align-items: center;
      flex-direction: column;
      text-align: center;
      color: #fff;
      border-radius: 50px;
      padding: 50px;
    }
    .testimonial-body-right {
      overflow: hidden;
      width: 70%;
    }
  }
}
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 30px 20px;
  background: #f6f4f1;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 1s ease-in-out;
}

.testimonial-card {
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: none;
  flex-shrink: 0;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 70px;
}

.stars {
  font-size: 18px;
  color: #ffb703;
}

.testimonial-text {
  margin: 20px 0;
  font-size: 20px;
  color: #444;
  line-height: 1.6;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #ddd;
  padding-top: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-footer h3 {
  margin: 0;
  font-size: 18px;
}

.testimonial-footer span {
  font-size: 14px;
  color: #666;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.testimonial-controls button {
  width: 40px;
  height: 40px;
  background: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.testimonial-controls button:hover {
  background: #e65500;
}

@media only screen and (max-width: 786px) {
  .testimonial .title h2 {
    font-size: 34px;
    line-height: 44px;
    margin: 30px 10%;
  }
  .testimonial-body {
    flex-direction: column;
    margin: 10px 5% !important;
  }
  .testimonial-body .testimonial-body-left {
    width: 100% !important;
  }
  .testimonial-body .testimonial-body-right {
    width: 100% !important;
  }
  .testimonial-controls {
    position: static;        /* let it flow below content */
    margin-top: 20px;        /* increase vertical spacing */
    justify-content: center; /* keep buttons centered */
  }
}

/* Content Section  */

/* Content Section  */

.content-heading {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #dd7109;
  padding-top: 10px;
  padding-bottom: 30px;
}

.content-section {
  padding: 30px 10%;

  /*.main-content{
    display: inline-block;

    .main-image {
      width: 50%;
      border-radius: 20px;
    }

  h2 {
      text-align: left;
      margin-bottom: 14px;
      margin-top: 14px;
      font-size: 36px;
      line-height: 44px;
      font-weight: 500;
    }
  }*/

  .main-content {
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center whole block if needed */
    gap: 40px; /* Space between image and text */
    width: 100%;
  }

  .image-section,
  .content-section {
    flex: 1 1 100%;
  }

  .main-image {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
  }

  .content-section h2 {
    text-align: left;
    margin-bottom: 14px;
    margin-top: 14px;
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
  }

  @media (max-width: 700px) {
    .main-content {
      flex-direction: column;
      gap: 20px;
      padding: 20px 0;
    }
    .image-section,
    .content-section {
      width: 100%;
      flex: unset;
      max-width: 100%;
    }
    .main-image {
      max-height: 320px;
      /* Makes sure image doesn't get too tall on small screens */
    }
    .content-section h2 {
      font-size: 24px;
      line-height: 32px;
    }
    .content-section p {
      font-size: 15px;
    }
  }

  .content-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    max-height: 300px;
    gap: 30px;

    .content-card1 {
      padding: 35px 35px 32px 35px;
      border-style: solid;
      border-width: 1px 3px 3px 1px;
      border-color: #ebebeb;
      border-radius: 20px 20px 20px 20px;
      width: 50%;
      height: 300px;

      .cea-featured-icon {
        background-color: #e26a00;
        color: #fff;
        border-radius: 50%;
        height: 50px;
        width: 50px;
        font-size: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      h3 {
        font-size: 35px;
        font-weight: 500;
        margin-top: 20px;
      }
      p {
        margin-top: 10px;
      }
    }
    .content-card1:hover {
      border: 1px solid #e26a00;
    }
    .content-card2 {
      border-radius: 20px 20px 20px 20px;
      width: 50%;
      height: 300px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
    }
  }
  .stepnum {
    position: relative;
    color: #e53935;
    top: -80%;
    left: 90%;
    text-transform: uppercase;
  }
}

/* ===== MOBILE + TABLET FIXES ===== */
@media (max-width: 1024px) {
  /* 1) Layout: stack each pair, preserve HTML order */
  .content-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    /* override any previous height limits */
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* 2) Cards: let height grow naturally (no clipping) */
  .content-card1,
  .content-card2 {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    height: auto !important;       /* override previous fixed 300px */
    max-height: none !important;   /* override previous max-height */
    overflow: visible;
  }

  /* 3) Background image card: ensure visible height on narrow screens */
  .content-card2 {
    background-size: cover;
    background-position: center;
    aspect-ratio: 16 / 9;          /* consistent responsive height */
    min-height: 240px;             /* safety for browsers w/o aspect-ratio */
    border-radius: 20px;
  }

  /* 4) Typographic tightening (optional) */
  .content-card1 h3 { font-size: 22px; line-height: 1.3; margin: 12px 0 8px; }
  .content-card1 p  { font-size: 15px; line-height: 1.6; margin: 0; }

  .content-body {
    display: flex;
    flex-direction: column;   /* stack vertically */
  }
  .content-body > .content-card1 { order: 0; }  /* text comes first */
  .content-body > .content-card2 { order: 1; }  /* image follows */
}

/* ===== GENERAL (applies all sizes) — remove invalid nesting side-effects ===== */
/* Ensure these base rules exist once, un-nested */
.content-body { display: flex; gap: 20px; }
.content-card1 { border: 1px solid #ebebeb; border-radius: 20px; padding: 28px; }
.content-card1:hover { border-color: #e26a00; }
.cea-featured-icon {
  background-color: #e26a00; color: #fff; border-radius: 50%;
  height: 50px; width: 50px; font-size: 35px; display: flex; align-items: center; justify-content: center;
}
/* Avoid any fixed heights here */


@media screen and (max-width: 786px) {
  .content-section {
    h2 {
      font-size: 25px;
    }

    .content-body {
      flex-direction: column;

      .content-card1 {
        width: 100% !important;
        h3 {
          font-size: 25px;
        }
      }
      .content-card2 {
        width: 100% !important;
        height: 300px;
      }
    }
    .stepnum {
      position: relative;
      color: #e53935;
      top: -100%;
      left: 80%;
      text-transform: uppercase;
    }
  }
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-left,
.hero-right {
  width: 50%;
}
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
  }
  .hero-left,
  .hero-right {
    width: 100%;
  }
}

/* Analyzed Reoprt Section  */
.analyzed-report {
  background-color: #100a08;
  background-image: url("images/bg-seo-fast1.png");
  background-size: cover;

  .point {
    position: absolute;
    width: 15px;
    height: 30px;
    background-color: #e26a00;
    pointer-events: none;
    transition: transform 0.05s linear;
  }

  .report-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20%;
    gap: 30px;

    .report-top-left {
      width: 60%;
      p {
        color: #e26a00;
        font-size: 16px;
      }
      h1 {
        color: #f2f2f2;
        margin: 0px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
        font-size: 60px;
        font-weight: 700;
        line-height: 88px;
      }
    }
    .report-top-right {
      width: 40%;
      img {
        max-width: 500px;
        border-radius: 150px;
      }
    }
  }
  .report-bottom {
    display: flex;
    align-items: center;

    .report-bottom-card {
      padding: 50px;
      text-align: center;
      color: #fff;
      margin: 0px 0px -106px 0px;

      .number {
        display: flex;
        align-items: baseline;
        justify-content: center;
      }

      h1 {
        font-size: 55px;
      }

      .number span {
        font-size: 35px;
        color: #e26a00;
        font-weight: 600;
      }

      p {
        font-weight: 600;
      }
    }

    img {
      max-width: 300px;
      position: relative;
    }
  }
}

@media screen and (max-width: 1200px) {
  .analyzed-report {
    text-align: center;
  }

  .analyzed-report .report-top {
    flex-direction: column;
    padding: 2%;
  }
  .report-top-left {
    width: 100% !important;
  }
  .report-top-right {
    width: 100% !important;
  }

  .report-top-left h1 {
    font-size: 35px !important;
    line-height: 50px !important;
  }

  .report-bottom {
    flex-direction: column;
  }
  .report-bottom-card {
    margin: 0px !important;
    padding: 10px !important;
  }

  .report-bottom-card img {
    max-width: 200px;
    padding-top: 0 !important;
  }
}

/* Why Choose Us Section  */
.why-choose-us {
  display: flex;
  gap: 40px;
  padding: 80px 10%;
  background-color: #f6f4f1;
  align-items: flex-start;
  /* height: 100vh;
    overflow: hidden; */
}

.left-container {
  width: 40%;
  overflow: visible;
  height: 50vh;
}

.why-choose-us-left {
  position: sticky;
  top: 100px; /* adjust this if you have a fixed header */
  padding-right: 20px;
}

.why-choose-us-left h4 {
  color: #e26a00;
  font-weight: 400;
}

.why-choose-us-left h2 {
  color: #111111;
  font-weight: 500;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -1px;
  text-align: left;
}

.why-choose-us-left p {
  margin-bottom: 20px;
  color: #939290;
}

.learn-more-btn {
  display: inline-block;
  background-color: #e26a00;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 48px;
}

.learn-more-btn:hover {
  background-color: #fff;
  color: #000;
  font-weight: bold;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.why-choose-us-right {
  /* width: 60%; */
  width: 60%;
  height: 50vh; /* matches parent height */
  overflow-y: auto; /* scrolls independently */
  padding-right: 20px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
}

.why-choose-us-right::-webkit-scrollbar {
  display: none;
}

.choose-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #ffffff;
  margin-bottom: 30px;
  padding: 32px 40px;
  border: 1px solid #ffffff;
  border-width: 1px 4px 4px 1px;
  border-radius: 20px;
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}

.choose-card:hover {
  border-color: #e26a00;
}

.choose-icon img {
  width: 60px;
  height: auto;
}

.choose-card span h3 {
  font-size: 25px;
  font-weight: 500;
  margin: 0;
}

.choose-card span p {
  margin: 0;
  color: #666;
}

.fbox-number {
  text-align: center;
  margin: 30px auto;
  position: relative;
  z-index: 99;
}

.fbox-number p {
  border: 1px solid #e26a00;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  margin: auto;
}

.fbox-number::after,
.fbox-number::before {
  content: "";
  background-color: #e26a00;
  width: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fbox-number::after {
  top: 50px;
  height: 100%;
}

.fbox-number::before {
  top: -50px;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .why-choose-us {
    flex-direction: column;
    padding: 80px 10% 20px 10%;
  }
  .why-choose-us-left {
    width: 100% !important;
  }
  .why-choose-us-right {
    width: 100% !important;
  }
  .choose-card {
    flex-direction: column;
  }
  .left-container {
    width: 100% !important;
    height: auto;
  }
  .left-container h2 {
    font-size: 35px;
    line-height: 40px;
  }
}

.back-to-top {
  position: fixed;
  background-color: #dd7109 !important;
  right: 20px;
  bottom: 50px;
  width: 38px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  border-radius: 50% 50% 18px 18px;
  /* padding: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;

  a {
    color: #fff;
    text-decoration: none;
  }
}
.back-to-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #dd7109;
  border-radius: 50%;
  opacity: 0;
  z-index: -2;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  animation-name: shadow-blink;
  -webkit-animation-name: shadow-blink;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  width: 50px;
  height: 20px;
  bottom: -5px;
  left: -5px;
}
.back-to-top i.bi-caret-up-fill::before {
  content: "\f846";
}
@keyframes shadow-blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
    -webkit-transform: scale(1.7);
  }
}
