:root {
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --e-global-color-primary: #32aff7;
  --e-global-color-secondary: #0179be;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  overflow-x: hidden;
}

body,
p,
li {
  font-family: var(--font-primary);
  color: var(--black);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.section-padding {
  padding-block: 100px;
}

.section-head {
  margin-bottom: 65px;
}

.section-badge {
  background: #ffffff;
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 12px 15px;
  color: #32aff7;
  border-radius: 30px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.section-heading {
  font-size: 45px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: capitalize;
  color: #2d2d2d;
  text-align: center;
  margin-bottom: 15px;
}

.section-subheading {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #6b6b6b;
  text-align: center;
}

/* Overlay for mobile menu */

#menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-100%);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}

.navbar-toggler {
  background: linear-gradient(
    270deg,
    var(--e-global-color-primary) 30%,
    var(--e-global-color-secondary) 100%
  );
  color: #fff;
  padding: 3px 7px;
  border: 0;
  border-radius: 9px;
}

.navbar-toggler:active,
.navbar-toggler:focus {
  outline: 0;
  box-shadow: none;
  border: none;
}

.navbar-toggler-icon {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler-icon svg {
  width: 30px;
  height: 30px;
}

.mob-logo {
  display: none;
}

.navbar-custom {
  background: transparent;
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
}

img.logo {
  width: 140px;
}

.navbar-nav {
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  color: #fff !important;
  font-family: var(--font-primary);
  font-weight: 500;
  margin: 0 12px;
  font-size: 14px;
}

.nav-link:hover {
  color: #0d6efd !important;
}

.banner-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-book {
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
}

.servicebook-btn {
  background: linear-gradient(
    270deg,
    var(--e-global-color-primary) 30%,
    var(--e-global-color-secondary) 100%
  );
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px 30px 30px 30px;
  padding: 16px 35px 16px 35px;
  border-style: none;
}

.servicebook-btn:hover {
  background: linear-gradient(
    90deg,
    var(--e-global-color-primary) 30%,
    var(--e-global-color-secondary) 100%
  );
  color: #fff;
}

.btn-join {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px 30px 30px 30px;
  padding: 16px 35px 16px 35px;
  border: 1px solid #fff;
  text-decoration: none;
}

.btn-join:hover {
  background: #fff;
  color: var(--e-global-color-primary);
  border: 1px solid var(--e-global-color-primary);
}

/* Hero Section */

.hero {
  position: relative;
  padding-top: 250px;
  padding-bottom: 400px;
  background: url("../images/hero-banner.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Dark Gradient Overlay */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #00124b 30%, rgba(14, 0, 30, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 845px;
  margin: 0 auto;
}

.hero-content h1 {
  text-transform: capitalize;
  font-size: 65px;
  line-height: 1.2;
  font-weight: 800;
  margin-top: 1.5rem;
  opacity: 1;
  transform: translateY(50px);
  transition: all 0.5s ease-out !important;
}

.hero-content h1.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.premium-text {
  background: #0179be;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-content > p {
  padding: 19px 78px 0;
  line-height: 25.5px;
  color: rgb(255 255 255 / 84%);
  margin-bottom: 1rem;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #f4f2fd;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 14px;
  color: #0179be;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(
    141.42% 141.42% at 100% 100%,
    #32aff7 0%,
    #0179be 65%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hero .whysrc-bx {
  padding: 0 25px 30px;
}

.hero .whysrc-subtitle {
  opacity: 0.8;
}

.feature-section .stat-item {
  position: relative;
  padding: 40px 10px;
}

.stat-item3:after {
  content: "";
  background: radial-gradient(
    80.71% 141.42% at 50% 100%,
    #0179be 0%,
    rgba(84, 43, 228, 0) 50%
  );
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-section {
  position: relative;
  background: rgb(14 0 30 / 50%);
  border-radius: 30px;
  margin-top: 5rem;
}

/* Dark Overlay */

.feature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
}

.feature-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-radius: 10px;
}

.feature-box {
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 50px 40px;
}

.feature-box h5 {
  margin-block: 15px 20px;
  color: #0179be;
  font-size: 20px;
  font-weight: 800;
}

.feature-box p {
  font-size: 15px;
  margin-top: 8px;
  color: #6b6b6b;
  line-height: 1.3;
}

/* Icon Circle */

.icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon.white {
  background: #ffffff;
}

.icon.purple {
  background: linear-gradient(135deg, #6c4df6, #4b2ed8);
}

.icon img {
  width: 28px;
  height: 28px;
}

.feature-box .whysrc-img-bg {
  background: #0179be;
  border-radius: 18px;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.feature-box .whysrc-img-bg svg path {
  fill: #fff;
}

.feature-box:nth-child(3)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    at bottom center,
    #0179be 0%,
    #d6282800 50%
  );
  z-index: 0;
  display: none;
}

.feature-box > * {
  position: relative;
  z-index: 2;
}

.why-src {
  position: relative;
  background: radial-gradient(
    70.71% 141.42% at 50% 100%,
    #f4f2fd 60%,
    #ffffff 90%
  );
  padding: 120px 0;
}

.why-src .badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
  background: #e8e5ff;
  color: #4b3df0;
  margin-bottom: 20px;
}

/* Cards */

.card-wrapper {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.src-card {
  background: #fff;
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.src-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */

.icon-box {
  width: 60px;
  height: 60px;
  background: #eef0ff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-box img {
  width: 28px;
}

/* Card Text */

.src-card .src-title {
  font-size: 24px;
  margin-block: 20px 10px;
  font-weight: 800;
  text-transform: capitalize;
  color: #2d2d2d;
}

.src-card .src-subtitle {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 1rem;
}

.src-card .featureapp-list li {
  padding-top: 4px;
  margin-bottom: 20px;
}

/* Section */

.src-features {
  background: radial-gradient(
    70.71% 141.42% at 50% 100%,
    #f4f2fd 60%,
    #ffffff 90%
  );
}

/* Title */
.src-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
}

.src-title span {
  color: #0179be;
}

/* Card */
.ui-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  z-index: 1;
}

/* Background blobs */
.ui-card::before {
  content: "";
  position: absolute;
  top: -35%;
  left: -30%;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.22),
    rgba(99, 102, 241, 0)
  );
  z-index: -1;
}

.ui-card::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -30%;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.18),
    rgba(168, 85, 247, 0)
  );
  z-index: -1;
}

/* Image */
.ui-card__image {
  position: relative;
  gap: 1rem;
  margin-bottom: 1rem;
}

.src-img-bg {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #f4f2fd;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ui-card__image img {
  width: 100%;
  border-radius: 25px;
  display: block;
}

/* Badge */
.ui-card__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: #6366f1;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Content */
.ui-card__content {
  padding: 10px 22px 26px;
}

.ui-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #111;
}

.ui-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.why-src-section {
  background: #f5f5f5;
}

.whysrc-wrapper {
  background: #dadada;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  padding: 0;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.whysrc-bx {
  text-align: center;
  position: relative;
  padding: 0 40px 20px;
}

.hero-box:after {
  content: "";
  background: radial-gradient(
    70.71% 141.42% at 50% 100%,
    #0179be 0%,
    rgba(84, 43, 228, 0) 50%
  );
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.whysrc-img-bg {
  background: #fff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.whysrc-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0179be;
}

.hero-box:hover:after {
  opacity: 1;
}

.hero-box:hover .whysrc-img-bg {
  background: #0179be;
}

.whysrc-bx:hover .whysrc-img-bg svg path {
  fill: #fff;
}

/* Card text */
.whysrc-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* One Brand section */
.onebrand-info,
.app-system-section {
  background: radial-gradient(
    70.71% 141.42% at 50% 100%,
    #f4f2fd 60%,
    #ffffff 90%
  );
}

.onebrand-bx:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.onebrand-bx:hover .onebrand-img-bg {
  background: transparent;
  border: 2px solid #0179be;
}

.onebrand-bx:hover .onebrand-img-bg svg path {
  stroke: #0179be;
}

.client-section {
  background: radial-gradient(
    141.42% 141.42% at 100% 100%,
    #32aff7 0%,
    #0179be 65%
  );
}

.client-bx {
  box-shadow:
    0px 2px 4px -2px #0000001a,
    0px 4px 6px -1px #0000001a;
  background: #fff;
  padding: 30px;
  border-radius: 30px;
}

.client-bx .onebrand-img-bg {
  background: rgb(31 154 225 / 38%);
}

.seamlessly-connected-section {
  background: radial-gradient(at top right, #28a6ef 0%, #023d5e 38%);
}

.seamless-content {
  padding-top: 5rem;
}

.seamless-content .section-badge {
  margin-left: 0;
}

.seamlessly-connected-row {
  position: absolute;
  bottom: 30px;
}

.seamless-img img {
  border-radius: 35px;
}

.app-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  border: 1px solid #32aff7;
  transition: transform 0.3s ease;
}

.app-card:hover {
  transform: translateY(-6px);
}

.app-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.app-card > p {
  padding-right: 83px;
}

.featureapp-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.featureapp-list li {
  position: relative;
  padding-left: 52px;
  margin-bottom: 24px;
}

.featureapp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #32aff7;
}

.featureapp-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  width: 25px;
  height: 25px;
  background: url("../images/circle-tick.svg") center / 20px no-repeat;
}

.featureapp-list h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #0f0f0f;
}

.featureapp-list p {
  font-size: 14px;
  margin: 8px 0 0;
  color: #6b6b6b;
}

.info-card {
  padding: 30px;
  border-radius: 30px;
  transition: 0.3s ease;
  background: radial-gradient(
    141.42% 141.42% at 100% 100%,
    #32aff7 0%,
    #0179be 65%
  );
}

.src-d h4 {
  color: #ffffff;
  font-size: 20px;
}

.src-d p {
  color: #f7f7f7;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 15px;
}

.contact-section {
  background: url("../images/contact-sec-bg.jpg") center center/cover no-repeat;
  height: 100%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-sec::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(14, 0, 30, 0.9) 30%,
    rgba(14, 0, 30, 0) 70%
  );
}

.call-info-title {
  font-size: 20px;
  font-weight: 800;
  color: #0179be;
}

.contact-title {
  font-size: 45px;
  line-height: 55px;
  font-weight: 800;
}

.contact-subtitle {
  font-size: 15px;
  line-height: 1.6;
}

.call-info-subtitle {
  font-weight: 300;
}

.whynow-section {
  background: radial-gradient(
    70.71% 141.42% at 50% 100%,
    #f4f2fd 60%,
    #ffffff 90%
  );
}

.stats-section {
  background: #f8f9ff;
}

.stat-number,
.stat-infinity {
  color: #fff;
}

.stat-number {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.stat-infinity {
  font-size: 84px;
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.stats-section .stat-number,
.stats-section .stat-infinity {
  color: #0179be;
}

.stats-section .stat-label {
  color: #6b6b6b;
}

.stats-section .stat-infinity {
  font-size: 108px;
  line-height: 67px;
}

.national-media-cta {
  position: relative;
  min-height: 400px;
  background-image: url("../images/national-media-cta-bg.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.national-media-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.btn-contact {
  background: linear-gradient(
    270deg,
    var(--e-global-color-primary) 30%,
    var(--e-global-color-secondary) 100%
  );
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px 30px 30px 30px;
  padding: 16px 35px 16px 35px;
  border-style: none;
}

.btn-contact:hover {
  background: linear-gradient(
    90deg,
    var(--e-global-color-primary) 30%,
    var(--e-global-color-secondary) 100%
  );
  color: #fff;
}

footer {
  background: #000;
  color: #d0c0ff;
  padding: 5rem 0;
  background: radial-gradient(at top right, #00588b 0%, #023857 38%);
}

.footer-logo img {
  width: 100px;
}

.text-light-purple {
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
  line-height: 1.4;
}

h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.list-unstyled li {
  margin-bottom: 0.65rem;
}

.list-unstyled a {
  color: rgb(255 255 255 / 80%);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 14px;
}

.list-unstyled a:hover {
  color: white;
}

.arrow-link::before {
  content: "Ã¢â€“Âº";
  margin-right: 8px;
  font-size: 11px;
  color: rgb(255 255 255 / 60%);
}

.form-control {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #a78bfa;
  box-shadow: 0 0 0 0.25rem rgba(167, 139, 250, 0.25);
  color: white;
}

.btn-subscribe {
  background: linear-gradient(
    270deg,
    var(--e-global-color-primary) 30%,
    var(--e-global-color-secondary) 100%
  );
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-style: none;
}

.btn-subscribe:hover {
  background: linear-gradient(
    90deg,
    var(--e-global-color-primary) 30%,
    var(--e-global-color-secondary) 100%
  );
  color: #fff;
}

.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.95rem;
  color: #a0a0c0;
}

.copyrights-txt {
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
}

.social-icons a {
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
  transition: color 0.2s;
  text-decoration: none;
}

.social-icons a + a {
  margin-left: 1rem;
}

.social-icons a:hover {
  color: white;
}

.src-section {
  background: #f5f5f5;
}

.process-card-list {
  background: radial-gradient(
    141.42% 141.42% at 100% 100%,
    #32aff7 0%,
    #0179be 65%
  );
  padding: 50px 35px 50px;
  border-radius: 30px 0 0 30px;
}

.src-h-wrapper {
  text-align: left;
}

.section-badge.badge-left {
  margin: 0 0 20px;
}

.section-heading.h-left {
  text-align: left;
}

.section-subheading.h-left {
  text-align: left;
  font-size: 1.063rem;
  padding-right: 1rem;
  line-height: 1.4;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #ffffff78;
}

.process-item + .process-item {
  padding: 30px 0;
}

.process-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.process-index {
  min-width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--e-global-color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.process-content h6 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.process-content p {
  font-size: 16px;
  color: #ffffffd4;
  line-height: 25.5px;
  margin: 0;
}

.src-img-wrapper {
  overflow: hidden;
  border-radius: 20px;
}

.src-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.src-media {
  height: 100%;
  max-height: 350px;
}

.large-image {
  height: 100%;
  min-height: 700px;
  margin-top: 2rem;
}

.our-client {
  background: radial-gradient(at top right, #28a6ef 0%, #023d5e 38%);
}

.service-card {
  position: relative;
  border-radius: 30px;
  padding: 35px;
  border: 1px solid rgb(255 255 255 / 32%);
  height: 100%;
}

.service-media {
  display: flex;
  justify-content: center;
}

.service-media img {
  width: 100%;
  border-radius: 30px;
  display: block;
  max-width: 550px;
  height: 100%;
  text-align: center;
  min-height: 400px;
}

.service-content {
  background: radial-gradient(
    at bottom right,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-secondary) 70%
  );
  padding: 50px;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  margin: -40px 40px 0;
  transition: all 0.5s ease;
}

.service-content:hover {
  background: radial-gradient(
    at top left,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-secondary) 70%
  );
  transform: translateY(-12px);
}

.service-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-content h6 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.service-content p {
  font-size: 17px;
  color: #ffffffd4;
  margin-bottom: 20px;
  line-height: 1.5em;
}

.service-link {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.5s ease;
}

.service-link:hover {
  text-decoration: none;
  transform: translateY(-6px);
}

.about-section {
  position: relative;
  background: url("../images/about-bg.webp") center center/cover no-repeat;
  background-color: #f5f5f5;
}

.about-image-wrapper {
  z-index: 5;
  top: 44px;
}

.about-main-img {
  border-radius: 30px;
  border-radius: 20px;
  width: 100%;
  max-width: 628px;
  height: 100%;
  min-height: 672px;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: 46px;
  left: 30px;
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-width: 67%;
}

.about-floating-card .src-icon {
  background: #f4f2fd;
}

.about-floating-card h6 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #2d2d2d;
}

.about-floating-card p {
  font-size: 17px;
  font-weight: 400;
  color: #6e6e6e;
}

.about-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    var(--e-global-color-primary),
    var(--e-global-color-secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-title {
  background: linear-gradient(
    90deg,
    var(--e-global-color-primary),
    var(--e-global-color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text {
  color: #777;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 44px;
}

.about-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  color: #6e6e6e;
  font-size: 17px;
}

.about-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0;
  color: var(--e-global-color-primary);
}

.perspective-badge {
  position: absolute;
  right: 106px;
  bottom: 0px;
  z-index: -1;
}

.testimonial-section {
  position: relative;
  background-color: var(--e-global-color-4da9a17);
  background-image: url(../images/female-customer-choosing-vehicle.jpg);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(1 121 190 / 20%);
  z-index: 1;
}

.testimonial-section > * {
  position: relative;
  z-index: 2;
}

.testimonial-card {
  position: relative;
  padding: 40px;
  border-radius: 25px;
  overflow: hidden;
  background: radial-gradient(
    at bottom right,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-secondary) 65%
  );
  color: #fff;
  z-index: 1;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    at top left,
    var(--e-global-color-primary) 0%,
    var(--e-global-color-secondary) 65%
  );
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.4s ease;
  z-index: -1;
}

.testimonial-card:hover::before {
  transform: scaleY(1);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 18px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.5em;
  margin: 40px 0;
}

.author-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-nav {
  display: flex;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  background: linear-gradient(
    135deg,
    var(--e-global-color-primary),
    var(--e-global-color-secondary)
  );
  z-index: 10;
  margin-right: 20px;
}

.author-name h6 {
  font-size: 20px;
  font-weight: 800;
}

.ghl-main-wrapper {
  margin-top: -330px;
  margin-bottom: 70px;
  position: relative;
  z-index: 100;
  scroll-margin-top: 150px;
}

.ghl-iframe-container {
  width: 100%;
  min-height: 550px;
  overflow: hidden;
}

#inline-58AC1OgD1Yb9O5rCwclh {
  width: 1px;
  min-width: 100%;
  height: 100%;
}

.previous-section-class {
  padding-bottom: 250px !important;
}

.src-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: #fff;
    color: #0179be;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.national-media-cta .ghl-main-wrapper {
    margin-top: -110px;
}