@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary: #4338ff;
  --primary-dark: #362be6;

  --secondary: #1a1f63;
  --secondary-dark: #14184e;

  --heading: #1a1f63;
  --text: #4b5563;
  --text-light: #64748b;

  --white: #ffffff;

  --body: #f8fbff;

  --section: #f5f8ff;

  --border: #e8ecff;

  --header-border: #e8ecff;

  --menu-active: #eef2ff;

  --gradient: linear-gradient(135deg, #1a1f63, #4338ff);

  --gradient-hover: linear-gradient(135deg, #14184e, #362be6);

  --shadow: 0 15px 40px rgba(67, 56, 255, 0.15);

  --radius: 12px;

  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  background: var(--body);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1720px;
  margin: 0 auto;
  /* padding-left: 24px;
  padding-right: 24px; */
}

.wrapper {
  width: 100%;
  min-height: 100vh;

  height: auto;

  display: flex;

  justify-content: center;

  align-items: center;

  padding: 20px;

  position: relative;

  z-index: 5;
}

.grid-overlay {
  position: fixed;

  inset: 0;

  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 45px 45px;

  pointer-events: none;

  z-index: 1;
}

.background-glow {
  position: fixed;

  border-radius: 50%;

  filter: blur(130px);

  opacity: 0.5;

  z-index: 0;
}

.glow1 {
  width: 500px;
  height: 500px;

  background: #00d4ff;

  top: -150px;
  left: -120px;

  animation: blobOne 18s ease-in-out infinite;
}

.glow2 {
  width: 420px;
  height: 420px;

  background: #5b5cff;

  right: -100px;
  bottom: -120px;

  animation: blobTwo 15s ease-in-out infinite;
}

.loader {
  width: 260px;

  height: 7px;

  margin: auto;

  overflow: hidden;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.1);
}

.loader span {
  display: block;

  width: 35%;

  height: 100%;

  border-radius: 50px;

  background: linear-gradient(90deg, #00c8ff, #4ef3ff);

  animation: loaderMove 2s linear infinite;
}

.notify {
  margin-top: 28px;

  color: #8fa5c8;

  font-size: 15px;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.cursor {
  position: fixed;

  width: 14px;

  height: 14px;

  border-radius: 50%;

  background: #00d2ff;

  pointer-events: none;

  transform: translate(-50%, -50%);

  z-index: 99999;

  box-shadow: 0 0 15px #00d2ff, 0 0 35px #00d2ff,
    0 0 70px rgba(0, 210, 255, 0.5);
}

.cursor::before {
  content: "";

  position: absolute;

  inset: -12px;

  border-radius: 50%;

  border: 1px solid rgba(0, 210, 255, 0.5);

  animation: cursorPulse 1.6s infinite;
}

.particles {
  position: fixed;

  inset: 0;

  overflow: hidden;

  pointer-events: none;

  z-index: 2;
}

.particles span {
  position: absolute;

  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: #00d2ff;

  box-shadow: 0 0 12px #00d2ff;

  animation: particleFloat linear infinite;
}

@keyframes bgAnimation {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

@keyframes loaderMove {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(400%);
  }
}

@keyframes shine {
  from {
    left: -60%;
  }

  to {
    left: 170%;
  }
}

@keyframes cursorPulse {
  from {
    transform: scale(0.7);

    opacity: 1;
  }

  to {
    transform: scale(1.8);

    opacity: 0;
  }
}

@keyframes particleFloat {
  from {
    transform: translateY(110vh);
  }

  to {
    transform: translateY(-20vh);
  }
}

@keyframes blobOne {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(100px, 80px);
  }
}

@keyframes blobTwo {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-80px, -90px);
  }
}

@media (max-width: 768px) {
  .logo {
    width: 65px;

    height: 65px;
  }

  .loader {
    width: 200px;
  }
}

/*==================================
    HEADER
==================================*/

.header-area {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #e8ecff;
}

.header-wrapper {
  height: 75px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.header-logo {
  flex: 0 0 180px;

  display: flex;

  align-items: center;
}

.header-logo img {
  width: auto;

  height: 48px;

  display: block;
}

.main-menu {
  flex: 1;

  display: flex;

  justify-content: center;
}

.main-menu ul {
  display: flex;

  /* align-items: center; */

  gap: 36px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.main-menu ul li a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  transition: 0.3s;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
  color: var(--primary);
}

.main-menu ul li a.active {
  background: var(--menu-active);
  padding: 10px 18px;
  border-radius: 10px;
}

.header-right {
  flex: 0 0 250px;

  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 24px;
}

.header-phone {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--secondary);

  text-decoration: none;

  font-weight: 500;

  white-space: nowrap;

  transition: 0.3s;
}

.header-phone i {
  font-size: 18px;

  color: var(--primary);
}

.header-phone:hover {
  color: var(--primary);
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, #1a1f63, #4338ff);

  color: #fff;

  border-radius: 50px;

  padding: 15px 32px;

  font-weight: 600;

  transition: 0.3s;
  border: 1px solid #4338ff;
}

.header-btn:hover {
  background: linear-gradient(135deg, #14184e, #362be6);

  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(67, 56, 255, 0.25);
}
.has-mega-menu {
  position: relative;
}

.has-mega-menu > a {
  display: flex;

  align-items: center;

  gap: 4px;
}

.mega-menu {
  position: absolute;

  left: 80%;

  top: 100%;

  transform: translateX(-50%) translateY(20px);

  width: 1000px;

  background: #fff;

  border: 1px solid #ece8ff;

  border-radius: 18px;

  box-shadow: 0 25px 60px rgba(17, 24, 39, 0.12);

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  opacity: 0;

  visibility: hidden;

  transition: 0.3s;

  z-index: 999;

  overflow: hidden;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;

  visibility: visible;

  transform: translateX(-50%) translateY(12px);
}

.mega-column {
  padding: 15px;
}

.mega-column:not(:last-child) {
  border-right: 1px solid #f0ecff;
}

.mega-column h6 {
  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: #5b21ff;

  margin-bottom: 18px;

  padding-bottom: 10px;

  border-bottom: 1px solid #ece8ff;
}

.mega-column ul {
  margin: 0;

  padding: 0;

  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 14px;
}

.mega-column ul li a {
  color: #374151;

  font-size: 15px;

  text-decoration: none;

  transition: 0.25s;
  padding: 10px;
}

.mega-column ul li a:hover {
  color: #5b21ff;

  background: var(--menu-active);
  padding: 10px;
  border-radius: 10px;
}

.view-all {
  margin-top: 12px;
}

.view-all a {
  color: #5b21ff !important;

  font-weight: 600;
}
/*==============================
    WHY RANKDIGIT
==============================*/

.why-rankdigit {
  background: #f8faff;

  border: 1px solid var(--border);

  border-radius: 16px;

  padding: 24px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  height: 100%;
}

.why-rankdigit h6 {
  color: var(--heading);

  font-size: 13px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1.2px;

  margin-bottom: 20px;
}

.why-rankdigit-list {
  list-style: none;

  margin: 0 0 24px;

  padding: 0 !important;

  gap: 0 !important;
}

.why-rankdigit-list li {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  color: var(--text);

  font-size: 15px;

  line-height: 1.7;

  margin-bottom: 12px;
}

.why-rankdigit-list li i {
  color: var(--primary);

  font-size: 8px;

  margin-top: 9px;

  flex-shrink: 0;
}

.why-rankdigit-btn {
  display: block;

  width: 100%;

  padding: 14px 18px;

  border-radius: 12px;

  background: var(--gradient);

  color: #fff !important;

  text-align: center;

  font-weight: 600 !important;

  text-decoration: none !important;

  transition: var(--transition);
}

.why-rankdigit-btn:hover {
  background: var(--gradient-hover);

  color: #fff;

  transform: translateY(-2px);
}

.why-rankdigit-note {
  display: block;

  margin-top: 12px;

  text-align: center;

  font-size: 13px;

  color: var(--text-light);

  line-height: 1.6;
}
/*==========================
Mobile Header
==========================*/

.mobile-menu-toggle {
  display: none;
}

.mobile-menu-toggle button {
  width: 48px;

  height: 48px;

  border: none;

  border-radius: 10px;

  background: var(--gradient);

  color: #fff;

  font-size: 30px;

  cursor: pointer;
}

.mobile-menu {
  position: fixed;

  top: 0;

  right: -100%;

  width: 320px;

  max-width: 90%;

  height: 100vh;

  background: #fff;

  z-index: 99999;

  transition: 0.35s;

  overflow-y: auto;

  padding: 30px;

  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;

  visibility: hidden;

  transition: 0.35s;

  z-index: 99998;
}

.mobile-menu-overlay.active {
  opacity: 1;

  visibility: visible;
}

.mobile-menu-header {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 35px;
}

.mobile-menu-header img {
  height: 42px;
}

.mobile-menu-header button {
  border: none;

  background: none;

  font-size: 34px;

  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu ul li a {
  display: block;

  padding: 16px 0;

  color: var(--heading);

  font-weight: 600;
}

.mobile-call-btn {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 10px;

  margin-top: 35px;

  padding: 16px;

  border-radius: 12px;

  background: var(--gradient);

  color: #fff;

  font-weight: 600;
}

@media (max-width: 991px) {
  .main-menu {
    display: none;
  }

  .header-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-wrapper {
    height: 74px;
  }

  .header-logo {
    flex: 1;
  }
}
/*=========================
        FOOTER
==========================*/

.footer-area {
  background: var(--gradient);
  padding: 20px 0 10px;
  color: #fff;
}

.footer-top {
  row-gap: 50px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 25px;
}

.footer-about p {
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 320px;
}

.footer-area h5 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.footer-area ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-area ul li {
  margin-bottom: 16px;
}

.footer-area ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-area ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border: 1px solid #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  transition: 0.35s;
}

.footer-social a:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.8;
}

.footer-contact i {
  color: #fff;
  font-size: 18px;
  margin-top: 4px;
}

.footer-btn {
  margin-top: 30px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  background: var(--gradient);
  font-weight: 600;
  transition: 0.35s;
  border: 1px solid #4338ff;
}

.footer-btn:hover {
  background: var(--gradient-hover);
  color: #fff;
}

.footer-divider {
  border-top: 1px solid #edf1ff;
  margin: 10px 0;
}

.footer-cities h6 {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.city-list a {
  text-decoration: none;
  color: #fff;
  border: 1px solid #dfe5ff;
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 14px;
  transition: 0.3s;
}

.city-list a:hover {
  background: #eef2ff;
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

.footer-bottom a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: var(--primary);
}

@media (max-width: 991px) {
  .footer-top {
    row-gap: 45px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom div {
    justify-content: center;
  }
}
.hero-section {
  padding: 120px 0 100px;
}

.hero-badge {
  display: inline-block;

  padding: 10px 18px;

  background: #eef2ff;

  color: var(--primary);

  border-radius: 50px;

  font-weight: 600;

  margin-bottom: 20px;
}

.hero-title {
  font-size: 64px;

  font-weight: 800;

  color: var(--secondary);

  line-height: 1.1;

  margin-bottom: 25px;
}

.hero-title span {
  color: var(--primary);
}

.hero-text {
  font-size: 18px;

  line-height: 1.8;

  max-width: 600px;

  margin-bottom: 35px;
}

.hero-btns {
  display: flex;

  gap: 20px;
}

.btn-outline {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 15px 35px;

  border: 1px solid var(--primary);

  border-radius: 50px;

  text-decoration: none;

  color: var(--primary);

  font-weight: 600;
}

.hero-card {
  background: #fff;

  border-radius: 20px;

  padding: 80px 40px;

  box-shadow: var(--shadow);

  text-align: center;
}

.sample-section {
  padding: 100px 0;
}

.section-title {
  text-align: center;

  margin-bottom: 60px;
}

.section-title h2 {
  color: var(--secondary);

  font-size: 42px;

  font-weight: 700;
}

.sample-card {
  background: #fff;

  padding: 35px;

  border-radius: 18px;

  box-shadow: var(--shadow);

  height: 100%;
}

.sample-card h4 {
  margin-bottom: 15px;

  color: var(--secondary);
}

.sample-card p {
  margin-bottom: 20px;
}

.sample-card a {
  color: var(--primary);

  text-decoration: none;

  font-weight: 600;
}

.sample-feature {
  background: #fff;

  padding: 40px;

  border-radius: 18px;

  text-align: center;

  box-shadow: var(--shadow);
}

.bg-light {
  background: #f8fbff;
}
/*==================================================
CONTACT PAGE
==================================================*/

.page-banner {
  background: linear-gradient(135deg, #eef3ff, #ffffff);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 20px;
}

.page-banner p {
  max-width: 650px;
  margin: 0 auto 20px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.8;
}

.page-banner nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}

.page-banner nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.page-banner nav span {
  color: var(--text-light);
}

/*===============================*/

.section-space {
  padding: 50px 0;
}

/*===============================*/

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-box {
  position: relative;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: 0.35s;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.contact-box i {
  position: absolute;

  top: 30px;
  left: 30px;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--gradient);
  color: #fff;

  border-radius: 50%;

  font-size: 22px;

  margin: 0;
}

.contact-box h5 {
  color: var(--heading);
  font-size: 22px;
  margin: 0 0 15px 85px;
}

.contact-box p {
  margin: 8px 0 8px 85px;
  color: var(--text);
  line-height: 1.8;
}

/*===============================*/

.contact-form-box {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
  color: var(--heading);
  font-size: 34px;
  margin-bottom: 12px;
}

.contact-form-box p {
  color: var(--text);
  margin-bottom: 35px;
}

.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: 0.3s;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(67, 56, 255, 0.1);
  outline: none;
}

textarea.form-control {
  resize: none;
}

/*===============================*/

.map-area {
  margin-top: 100px;
}

.map-area iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

/*===============================*/

.section-title {
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 42px;
  color: var(--heading);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text);
}

/*===============================*/

.accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background: #fff;
  color: var(--heading);
  font-weight: 600;
  padding: 22px 25px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #eef2ff;
  color: var(--primary);
}

.accordion-body {
  padding: 25px;
  color: var(--text);
  line-height: 1.8;
}

/*==================================
    CTA
==================================*/

.contact-cta {
  padding: 100px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;

  padding: 40px 0px;

  text-align: center;

  border-radius: 24px;

  background: var(--gradient);

  color: #fff;
}

.cta-box h2 {
  color: #fff;
  margin-bottom: 20px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-doodle-left {
  position: absolute;

  left: 10px;

  bottom: 0;

  width: 30%;

  height: auto;

  pointer-events: none;

  user-select: none;
}

.cta-doodle-right {
  position: absolute;

  right: 0px;

  bottom: 0;

  width: 35%;

  height: auto;

  pointer-events: none;

  user-select: none;
}

/*===============================*/

@media (max-width: 991px) {
  .contact-form-box {
    margin-top: 40px;
  }

  .page-banner {
    padding: 20px 0 20px !important;
  }

  .page-banner h1 {
    font-size: 34px !important;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .cta-box {
    padding: 50px 30px;
  }

  .cta-box h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .page-banner h1 {
    font-size: 34px !important;
    margin-bottom: 0 !important;
  }

  .page-banner p {
    max-width: 700px !important;
    margin: 0 auto 5px !important;
    color: var(--text) !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
  }

  .contact-form-box {
    padding: 30px;
  }

  .contact-box {
    padding: 25px;
  }

  .section-space {
    padding: 70px 0;
  }

  .map-area iframe {
    height: 350px;
  }

  .cta-box h2 {
    font-size: 28px;
  }
}
/*==================================
    MAP AREA
==================================*/

.map-area {
  position: relative;
  overflow: hidden;
  padding: 50px 0;

  background: radial-gradient(
      circle at top right,
      rgba(67, 56, 255, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(26, 31, 99, 0.08),
      transparent 40%
    ),
    linear-gradient(180deg, var(--section) 0%, var(--body) 100%);
}

.map-area::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: linear-gradient(
      rgba(67, 56, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(67, 56, 255, 0.04) 1px, transparent 1px);

  background-size: 60px 60px;

  opacity: 0.5;

  pointer-events: none;
}

.map-area .container {
  position: relative;
  z-index: 2;
}

.map-wrapper {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

/*==================================
    TESTIMONIAL
==================================*/

.testimonial-area {
  position: relative;
  overflow: hidden;
  padding: 50px 0;

  background: radial-gradient(
      circle at top left,
      rgba(67, 56, 255, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(26, 31, 99, 0.08),
      transparent 40%
    ),
    linear-gradient(180deg, var(--body) 0%, var(--section) 100%);
}

.testimonial-area::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: linear-gradient(
      rgba(67, 56, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(67, 56, 255, 0.04) 1px, transparent 1px);

  background-size: 60px 60px;

  opacity: 0.5;

  pointer-events: none;
}

.testimonial-area::after {
  content: "";
  position: absolute;

  top: -180px;
  right: -180px;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: rgba(67, 56, 255, 0.08);

  filter: blur(100px);
}

.testimonial-area .container {
  position: relative;
  z-index: 2;
}

.testimonial-area .section-title h2 {
  color: var(--heading);
}

.testimonial-area .section-title p {
  color: var(--text-light);
}

.testimonial-slider {
  padding: 15px 5px 60px;
}

.testimonial-card {
  background: #fff;

  border: 1px solid #e8ecff;

  border-radius: 20px;

  padding: 35px;

  height: 100%;

  transition: 0.35s;

  position: relative;

  overflow: hidden;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 18px 45px rgba(67, 56, 255, 0.12);
}

.testimonial-card::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 5px;

  background: var(--gradient);
}

.testimonial-rating {
  display: flex;

  gap: 4px;

  margin-bottom: 18px;
}

.testimonial-rating i {
  color: #ffc107;

  font-size: 18px;
}

.testimonial-message {
  font-size: 16px;

  line-height: 1.9;

  color: var(--text);

  margin-bottom: 30px;

  min-height: 135px;
}

.testimonial-user {
  display: flex;

  align-items: center;

  gap: 16px;
}

.testimonial-user img {
  width: 65px;

  height: 65px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid #eef2ff;
}

.testimonial-user h5 {
  margin: 0;

  font-size: 18px;

  color: var(--secondary);

  font-weight: 700;
}

.testimonial-user span {
  display: block;

  margin-top: 4px;

  color: #64748b;

  font-size: 14px;
}

/*======================
    Swiper
=======================*/

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 10px;

  height: 10px;

  background: #cbd5e1;

  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 28px;

  border-radius: 20px;

  background: var(--primary);
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px;

  height: 48px;

  border-radius: 50%;

  background: #fff;

  color: var(--primary);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;

  font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary);

  color: #fff;
}

@media (max-width: 991px) {
  .testimonial-message {
    min-height: auto;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}
/*==================================
    PAGE BANNER
==================================*/

.page-banner {
  position: relative;
  overflow: hidden;

  padding: 50px 0;

  background-color: #0f1670;

  background-image: url(".../../../../img/frontend/banner_header.png");

  background-repeat: no-repeat;

  background-position: center 100%;

  background-size: cover;
}

.page-banner-content {
  position: relative;
  z-index: 2;

  text-align: center;
}

.page-banner h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.page-banner p {
  max-width: 700px;
  margin: 0 auto 25px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

.page-banner nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.page-banner nav a,
.page-banner nav span {
  color: var(--text);
}

.page-banner nav a {
  text-decoration: none;
}

.page-banner nav a:hover {
  color: #8ec5ff;
}
/*==================================
    ABOUT
==================================*/

.about-area {
  background: var(--white);
}

.about-image {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-content .section-subtitle {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(67, 56, 255, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-content p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 25px;
  margin: 35px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature i {
  font-size: 22px;
  color: var(--primary);
  margin-top: 2px;
}

.about-feature span {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.about-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-buttons .btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.about-buttons .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 991px) {
  .about-content {
    margin-top: 20px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about-content h2 {
    font-size: 30px;
  }

  .about-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .about-buttons .header-btn {
    width: 100%;
    text-align: center;
  }
}
/*==================================
    EXPERTISE
==================================*/

.expertise-area {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background: linear-gradient(135deg, #16193e 0%, #1b1f58 55%, #252c8b 100%);
}

.expertise-area::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
      circle at 20% 20%,
      rgba(67, 56, 255, 0.22),
      transparent 30%
    ),
    radial-gradient(circle at 80% 60%, rgba(67, 56, 255, 0.15), transparent 35%);

  pointer-events: none;
}

.expertise-area::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

  background-size: 60px 60px;

  opacity: 0.35;
}

.expertise-area .container {
  position: relative;
  z-index: 2;
}

/*======================
Heading
======================*/

.expertise-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}

.expertise-top .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #8fb4ff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.expertise-top .section-subtitle::before {
  content: "";
  width: 28px;
  height: 8px;
  border-radius: 30px;
  background: var(--primary);
}

.expertise-top h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 18px;
}

.expertise-btn {
  flex-shrink: 0;
}

/*======================
Cards
======================*/

.expertise-card {
  position: relative;

  height: 170px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  padding: 35px 20px 28px;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(8px);

  transition: var(--transition);
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(67, 56, 255, 0.7);
  box-shadow: 0 20px 45px rgba(67, 56, 255, 0.25);
}

.expertise-icon {
  position: absolute;
  top: -34px;

  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--gradient);

  color: #fff;

  font-size: 34px;

  box-shadow: 0 15px 35px rgba(67, 56, 255, 0.35);
}

.expertise-card h5 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

/*======================
Stats
======================*/

.expertise-stats {
  margin-top: 50px;

  background: var(--gradient);

  border-radius: 20px;

  padding: 45px 25px;

  box-shadow: var(--shadow);

  position: relative;
  overflow: hidden;
}

.expertise-stats::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 17px;
}

/*======================
Responsive
======================*/

@media (max-width: 991px) {
  .expertise-area {
    padding: 80px 0 120px;
  }

  .expertise-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }

  .expertise-top h2 {
    font-size: 36px;
  }

  .expertise-stats {
    margin-top: 70px;
  }

  .stat-box {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .expertise-top h2 {
    font-size: 30px;
  }

  .expertise-card {
    height: 150px;
  }

  .expertise-icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }

  .expertise-card h5 {
    font-size: 20px;
  }

  .stat-box h3 {
    font-size: 34px;
  }
}
.expertise-area::before {
  animation: expertiseGlow 8s ease-in-out infinite alternate;
}

@keyframes expertiseGlow {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }

  100% {
    transform: scale(1.15);
    opacity: 0.75;
  }
}
.expertise-area::after {
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 60px;
  }
}

.expertise-top {
  animation: fadeUp 0.9s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(40px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}
.expertise-stats {
  overflow: hidden;
}

.expertise-stats::after {
  content: "";

  position: absolute;

  top: 0;

  left: -40%;

  width: 30%;

  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );

  transform: skewX(-25deg);

  animation: statsShine 6s linear infinite;
}

@keyframes statsShine {
  from {
    left: -45%;
  }

  to {
    left: 150%;
  }
}
.expertise-btn .header-btn {
  transition: 0.35s;
}

.expertise-btn .header-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(67, 56, 255, 0.35);
}
.expertise-card:hover {
  transform: translateY(-12px) scale(1.03);
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.15) rotate(8deg);
}
/*==================================
    WHY CHOOSE
==================================*/

.why-choose-area {
  background: var(--section);
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 10px 22px;

  margin-bottom: 20px;

  border-radius: 50px;

  background: rgba(67, 56, 255, 0.08);

  border: 1px solid rgba(67, 56, 255, 0.15);

  color: var(--primary);

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.subtitle-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--gradient);

  box-shadow: 0 0 12px rgba(67, 56, 255, 0.5);
}

.why-card {
  height: 100%;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 35px 30px;

  transition: var(--transition);

  box-shadow: 0 10px 30px rgba(26, 31, 99, 0.05);
}

.why-card:hover {
  transform: translateY(-8px);

  border-color: var(--primary);

  box-shadow: var(--shadow);
}

.why-icon {
  width: 70px;

  height: 70px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 18px;

  background: var(--gradient);

  color: #fff;

  font-size: 34px;

  margin-bottom: 25px;
}

.why-card h4 {
  color: var(--heading);

  font-size: 24px;

  font-weight: 600;

  margin-bottom: 15px;
}

.why-card p {
  color: var(--text);

  line-height: 1.8;

  margin: 0;
}

@media (max-width: 991px) {
  .why-card {
    padding: 30px 25px;
  }
}
/*==================================
    PROCESS
==================================*/

.process-area {
  background: var(--section);
  overflow: hidden;
}

.process-timeline {
  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 30px;

  margin-top: 80px;
}

.process-timeline::before {
  content: "";

  position: absolute;

  top: 45px;

  left: 12.5%;

  width: 75%;

  height: 4px;

  border-radius: 30px;

  background: linear-gradient(90deg, var(--primary), #6f63ff, var(--primary));

  z-index: 1;
}

.process-item {
  position: relative;

  flex: 1;

  text-align: center;

  z-index: 2;
}

.process-dot {
  width: 90px;

  height: 90px;

  margin: 0 auto;

  border-radius: 50%;

  background: #fff;

  border: 3px solid var(--primary);

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: var(--shadow);

  transition: var(--transition);
}

.process-icon {
  width: 68px;

  height: 68px;

  border-radius: 50%;

  background: var(--gradient);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 32px;

  transition: var(--transition);
}

.process-box {
  margin-top: 40px;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 30px 25px;

  box-shadow: 0 15px 35px rgba(26, 31, 99, 0.06);

  transition: var(--transition);

  position: relative;
}

.process-box::before {
  content: "";

  position: absolute;

  top: -16px;

  left: 50%;

  transform: translateX(-50%);

  width: 2px;

  height: 16px;

  background: var(--primary);
}

.process-step {
  display: inline-block;

  padding: 6px 14px;

  margin-bottom: 15px;

  border-radius: 30px;

  background: rgba(67, 56, 255, 0.08);

  color: var(--primary);

  font-size: 13px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.process-box h4 {
  color: var(--heading);

  font-size: 22px;

  font-weight: 600;

  margin-bottom: 15px;
}

.process-box p {
  color: var(--text);

  line-height: 1.8;

  margin: 0;

  font-size: 15px;
}

/* Hover */

.process-item:hover .process-dot {
  transform: translateY(-8px);
}

.process-item:hover .process-icon {
  transform: rotate(12deg) scale(1.08);
}

.process-item:hover .process-box {
  transform: translateY(-8px);

  border-color: var(--primary);

  box-shadow: var(--shadow);
}

/* Responsive */

@media (max-width: 991px) {
  .process-timeline {
    flex-direction: column;

    gap: 50px;

    margin-top: 50px;
  }

  .process-timeline::before {
    top: 0;

    left: 45px;

    width: 4px;

    height: 100%;
  }

  .process-item {
    display: flex;

    align-items: flex-start;

    gap: 25px;

    text-align: left;
  }

  .process-dot {
    flex-shrink: 0;

    width: 80px;

    height: 80px;
  }

  .process-icon {
    width: 60px;

    height: 60px;

    font-size: 28px;
  }

  .process-box {
    margin-top: 0;

    width: 100%;
  }

  .process-box::before {
    display: none;
  }
}
/*==================================
    TEAM
==================================*/

.team-area {
  background: var(--section);
}

.team-card {
  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 20px;

  overflow: hidden;

  transition: var(--transition);

  box-shadow: 0 10px 30px rgba(26, 31, 99, 0.06);
}

.team-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow);
}

.team-image {
  position: relative;

  overflow: hidden;
}

.team-image img {
  width: 100%;

  height: 340px;

  object-fit: cover;

  display: block;

  transition: 0.5s;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-social {
  position: absolute;

  left: 50%;

  bottom: -70px;

  transform: translateX(-50%);

  display: flex;

  gap: 12px;

  transition: 0.4s;
}

.team-card:hover .team-social {
  bottom: 20px;
}

.team-social a {
  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--gradient);

  color: #fff;

  font-size: 18px;

  text-decoration: none;

  transition: var(--transition);
}

.team-social a:hover {
  transform: translateY(-4px);
}

.team-content {
  padding: 28px 25px;

  text-align: center;
}

.team-content h4 {
  color: var(--heading);

  font-size: 24px;

  font-weight: 600;

  margin-bottom: 8px;
}

.team-content span {
  display: block;

  color: var(--primary);

  font-size: 15px;

  font-weight: 500;
}

/*==================================
    Responsive
==================================*/

@media (max-width: 991px) {
  .team-image img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .team-image img {
    height: 280px;
  }

  .team-content {
    padding: 22px 20px;
  }

  .team-content h4 {
    font-size: 22px;
  }
}

.alert {
  border-radius: 12px;
  border: none;
  padding: 18px 20px;
  font-size: 15px;
}

.alert-success {
  background: #eafaf1;
  color: #0f5132;
}

.alert-danger {
  background: #fdecec;
  color: #842029;
}

.alert ul {
  padding-left: 18px;
}

.is-invalid {
  border-color: #dc3545 !important;
}

.invalid-feedback {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}

/*==================================
    PRIVACY POLICY
==================================*/

.policy-area {
  background: var(--section);
}

.policy-wrapper {
  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 60px;

  box-shadow: 0 15px 40px rgba(26, 31, 99, 0.05);
}

.policy-block:not(:last-child) {
  margin-bottom: 45px;

  padding-bottom: 35px;

  border-bottom: 1px solid var(--border);
}

.policy-block h2 {
  color: var(--heading);

  font-size: 42px;

  font-weight: 700;

  margin-bottom: 20px;
}

.policy-block h3 {
  color: var(--heading);

  font-size: 28px;

  font-weight: 600;

  margin-bottom: 18px;
}

.policy-block p {
  color: var(--text);

  line-height: 1.9;

  margin: 0;
}

.policy-block ul {
  margin: 0;

  padding-left: 22px;
}

.policy-block ul li {
  color: var(--text);

  line-height: 1.9;

  margin-bottom: 10px;
}

.policy-block a {
  color: var(--primary);

  text-decoration: none;

  transition: var(--transition);
}

.policy-block a:hover {
  color: var(--primary-dark);
}

@media (max-width: 991px) {
  .policy-wrapper {
    padding: 40px 30px;
  }

  .policy-block h2 {
    font-size: 34px;
  }

  .policy-block h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .policy-wrapper {
    padding: 30px 20px;
  }

  .policy-block h2 {
    font-size: 30px;
  }

  .policy-block h3 {
    font-size: 22px;
  }
}
/*==================================
    TERMS & CONDITIONS
==================================*/

.terms-area {
  background: var(--section);
}

.terms-wrapper {
  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 60px;

  box-shadow: 0 15px 40px rgba(26, 31, 99, 0.05);
}

.terms-block:not(:last-child) {
  margin-bottom: 45px;

  padding-bottom: 35px;

  border-bottom: 1px solid var(--border);
}

.terms-block h2 {
  color: var(--heading);

  font-size: 42px;

  font-weight: 700;

  margin-bottom: 20px;
}

.terms-block h3 {
  color: var(--heading);

  font-size: 28px;

  font-weight: 600;

  margin-bottom: 18px;
}

.terms-block p {
  color: var(--text);

  line-height: 1.9;

  margin: 0;
}

.terms-block ul {
  margin: 0;

  padding-left: 22px;
}

.terms-block ul li {
  color: var(--text);

  line-height: 1.9;

  margin-bottom: 10px;
}

.terms-block a {
  color: var(--primary);

  text-decoration: none;

  transition: var(--transition);
}

.terms-block a:hover {
  color: var(--primary-dark);
}

@media (max-width: 991px) {
  .terms-wrapper {
    padding: 40px 30px;
  }

  .terms-block h2 {
    font-size: 34px;
  }

  .terms-block h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .terms-wrapper {
    padding: 30px 20px;
  }

  .terms-block h2 {
    font-size: 30px;
  }

  .terms-block h3 {
    font-size: 22px;
  }
}
/*==================================
    BLOG LIST
==================================*/

.blog-area {
  background: var(--section);
}

.blog-card {
  height: 100%;

  background: var(--white);

  border: 1px solid var(--border);

  border-radius: 20px;

  overflow: hidden;

  transition: var(--transition);

  box-shadow: 0 12px 35px rgba(26, 31, 99, 0.06);
}

.blog-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow);
}

.blog-card-image {
  position: relative;

  overflow: hidden;
  padding: 20px;
}

.blog-card-image img {
  width: 100%;

  height: 240px;

  object-fit: cover;

  transition: 0.45s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;

  top: 18px;

  left: 18px;

  display: inline-block;

  padding: 7px 16px;

  border-radius: 30px;

  background: var(--gradient);

  color: #fff;

  font-size: 13px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.blog-card-content {
  padding: 0px 20px 15px;
}

.blog-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 18px;

  font-size: 14px;

  color: var(--text-light);
}

.blog-meta span {
  display: flex;

  align-items: center;

  gap: 6px;
}

.blog-meta i {
  color: var(--primary);

  font-size: 17px;
}

.blog-card-content h3 {
  margin-bottom: 15px;

  font-size: 24px;

  line-height: 1.45;
}

.blog-card-content h3 a {
  color: var(--heading);

  transition: var(--transition);
}

.blog-card-content h3 a:hover {
  color: var(--primary);
}

.blog-card-content p {
  color: var(--text);

  line-height: 1.8;

  margin-bottom: 24px;
}

.blog-read-btn {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--primary);

  font-weight: 600;

  transition: var(--transition);
}

.blog-read-btn i {
  font-size: 20px;

  transition: var(--transition);
}

.blog-read-btn:hover {
  color: var(--primary-dark);
}

.blog-read-btn:hover i {
  transform: translateX(6px);
}

/*==================================
    Responsive
==================================*/

@media (max-width: 991px) {
  .blog-card-image img {
    height: 150px !important;
  }
  .blog-category {
    position: absolute;

    top: 15px;

    left: 15px;

    display: inline-block;

    padding: 5px 10px;

    border-radius: 30px;

    background: var(--gradient);

    color: #fff;

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;
  }

  .blog-card-content {
    padding: 24px;
  }

  .blog-card-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .blog-card-image img {
    height: 210px;
  }

  .blog-card-content {
    padding: 10px 20px;
  }

  .blog-card-content h3 {
    font-size: 18px;
  }

  .blog-meta {
    gap: 12px;

    font-size: 12px;
  }
  .blog-card-content p {
    color: var(--text);

    line-height: 1.8;

    margin-bottom: 20px;
    font-size: 12px;
  }
  .header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg, #1a1f63, #4338ff);

    color: #fff;

    border-radius: 50px;

    padding: 15px 32px;

    font-weight: 600;

    transition: 0.3s;
    border: 1px solid #4338ff;
    width: 100%;
  }
}
.blog-author {
  display: flex;

  align-items: center;

  gap: 10px;
}

.blog-author img {
  width: 36px;

  height: 36px;

  border-radius: 50%;

  object-fit: cover;

  border: 2px solid var(--border);

  flex-shrink: 0;
}

.blog-author span {
  display: flex;

  align-items: center;

  gap: 6px;

  color: var(--text-light);

  font-size: 14px;

  font-weight: 500;
}

.blog-author span i {
  color: var(--primary);

  font-size: 16px;
}
.blog-card-link {
  display: block;

  color: inherit;

  text-decoration: none;

  height: 100%;
}

.blog-card-link:hover {
  color: inherit;
}

.blog-card-link:hover .blog-read-btn i {
  transform: translateX(6px);
}
/*==================================
BLOG DETAILS
==================================*/

.blog-details-area{
    background:var(--section);
}

.blog-details-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:40px;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

/*==================================
Breadcrumb
==================================*/

.blog-path{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    align-items:center;

    margin-bottom:25px;

    font-size:14px;

    color:var(--text-light);

}

.blog-path a{

    color:var(--text-light);

    transition:.3s;
    text-decoration: none;

}

.blog-path a:hover{

    color:var(--primary);
    font-weight: 600;

}

/*==================================
Title
==================================*/

.blog-details-title{

    font-size:46px;

    font-weight:700;

    color:var(--heading);

    line-height:1.25;

    margin-bottom:20px;

}

.blog-details-excerpt{

    font-size:20px;

    color:var(--text);

    line-height:1.8;

    font-weight:500;

    margin-bottom:30px;

}

/*==================================
Meta
==================================*/

.blog-details-meta{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    align-items:center;

    margin-bottom:35px;

    padding-bottom:20px;

    border-bottom:1px solid var(--border);

}

.blog-details-meta>span{

    display:flex;

    align-items:center;

    gap:8px;

    color:var(--text-light);

}

.blog-details-meta i{

    color:var(--primary);

}

.blog-author{

    display:flex;

    align-items:center;

    gap:12px;

}

.blog-author img{

    width:45px;

    height:45px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid var(--border);

}

.blog-author span{

    font-weight:600;

    color:var(--heading);

}

/*==================================
Image
==================================*/

.blog-featured-image{

    overflow:hidden;

    border-radius:18px;

    margin-bottom:35px;

}

.blog-featured-image img{

    width:100%;

    display:block;

}

/*==================================
Content
==================================*/

.blog-content{

    font-size:17px;

    line-height:2;

    color:var(--text);

}

.blog-content h2,
.blog-content h3,
.blog-content h4{

    color:var(--heading);

    margin:35px 0 18px;

}

.blog-content p{

    margin-bottom:22px;

}

.blog-content img{

    width:100%;

    border-radius:15px;

    margin:30px 0;

}

.blog-content ul,
.blog-content ol{

    margin-bottom:25px;

    padding-left:22px;

}

.blog-content li{

    margin-bottom:10px;

}

.blog-content blockquote{

    margin:35px 0;

    padding:30px;

    background:#f5f8ff;

    border-left:5px solid var(--primary);

    border-radius:12px;

    font-size:20px;

    color:var(--heading);

}

/*==================================
Footer
==================================*/

.blog-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    margin-top:40px;

    padding-top:30px;

    border-top:1px solid var(--border);

}

.blog-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    align-items:center;

}

.blog-tags a{

    padding:8px 16px;

    background:#eef2ff;

    border-radius:30px;

    color:var(--primary);

    transition:.3s;
    text-decoration: none;

}

.blog-tags a:hover{

    background:var(--gradient);

    color:#fff;

}

.blog-share{

    display:flex;

    align-items:center;

    gap:10px;

}

.blog-share a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef2ff;

    color:var(--primary);

    transition:.3s;
    text-decoration: none;

}

.blog-share a:hover{

    background:var(--gradient);

    color:#fff;

}

/*==================================
Sidebar
==================================*/

.blog-sidebar{

    position:sticky;

    top:110px;

}

.sidebar-widget{

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    padding:30px;

    margin-bottom:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.sidebar-widget h4{

    color:var(--heading);

    margin-bottom:22px;

    font-size:24px;

}

/* Search */

.sidebar-widget form{

    position:relative;

}

.sidebar-widget input{

    width:100%;

    height:55px;

    border:1px solid var(--border);

    border-radius:12px;

    padding:0 55px 0 18px;

}

.sidebar-widget button{

    position:absolute;

    right:7px;

    top:7px;

    width:41px;

    height:41px;

    border:none;

    border-radius:10px;

    background:var(--gradient);

    color:#fff;

}

/* Categories */

.sidebar-category{

    list-style:none;

    padding:0;

    margin:0;

}

.sidebar-category li{

    border-bottom:1px solid var(--border);

}

.sidebar-category li:last-child{

    border:none;

}

.sidebar-category a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    color:var(--text);

    transition:.3s;
    text-decoration: none;

}

.sidebar-category a:hover{

    color:var(--primary);

    padding-left:8px;

}

.sidebar-category span{

    background:#eef2ff;

    color:var(--primary);

    padding:4px 10px;

    border-radius:20px;

    font-size:13px;

}

/*==================================
Recent Posts
==================================*/

.recent-post{

    display:flex;

    gap:15px;

    margin-bottom:20px;

}

.recent-post:last-child{

    margin-bottom:0;

}

.recent-post img{

    width:90px;

    height:80px;

    border-radius:10px;

    object-fit:cover;

}

.recent-post h6{

    font-size:16px;

    line-height:1.5;

    margin-bottom:8px;

}

.recent-post h6 a{

    color:var(--heading);

    transition:.3s;

}

.recent-post h6 a:hover{

    color:var(--primary);

}

.recent-post span{

    color:var(--text-light);

    font-size:13px;

}

/*==================================
CTA
==================================*/

.sidebar-cta{

    background:var(--gradient);

    text-align:center;

}

.sidebar-cta h3{

    color:#fff;

    font-size:30px;

    margin-bottom:18px;

}

.sidebar-cta p{

    color:rgba(255,255,255,.85);

    line-height:1.8;

    margin-bottom:25px;

}

.sidebar-cta .header-btn{

    width:100%;

    justify-content:center;

    background:#fff;

    color:var(--primary);

}

.sidebar-cta .header-btn:hover{

    background:#f5f5f5;

}

/*==================================
Responsive
==================================*/

@media(max-width:991px){

    .blog-details-card{

        padding:30px;

        margin-bottom:30px;

    }

    .blog-details-title{

        font-size:34px;

    }

}

@media (min-width: 992px) {

    .blog-details-row {
        align-items: flex-start;
    }

    .blog-details-row > .col-lg-4 {
        position: sticky;
        top: 110px;
        align-self: flex-start;
        height: fit-content;
    }

    .blog-sidebar {
        position: static;
    }

}

@media (max-width: 991px) {

    .blog-details-row > .col-lg-4 {
        position: static;
        height: auto;
    }

    .blog-sidebar {
        position: static;
    }

}

@media(max-width:767px){

    .blog-details-card{

        padding:22px;

    }

    .blog-details-title{

        font-size:28px;

    }

    .blog-details-excerpt{

        font-size:17px;

    }

    .blog-footer{

        flex-direction:column;

        align-items:flex-start;

    }

}
.search-results{

    margin-top:15px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.search-blog-item{

    display:flex;

    gap:15px;

    padding:15px;

    border-bottom:1px solid var(--border);

    text-decoration:none;

    transition:.3s;

}

.search-blog-item:last-child{

    border-bottom:none;

}

.search-blog-item:hover{

    background:#f8faff;

}

.search-blog-image{

    width:85px;

    height:70px;

    flex-shrink:0;

    border-radius:8px;

    overflow:hidden;

}

.search-blog-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.search-blog-content{

    flex:1;

}

.search-blog-content h6{

    font-size:15px;

    color:var(--heading);

    line-height:1.5;

    margin-bottom:6px;

}

.search-blog-content p{

    font-size:13px;

    color:var(--text);

    line-height:1.6;

    margin-bottom:6px;

}

.search-blog-content span{

    display:flex;

    align-items:center;

    gap:5px;

    font-size:12px;

    color:var(--text-light);

}

.search-blog-content span i{

    color:var(--primary);

}

.search-no-result{

    padding:18px;

    text-align:center;

    color:var(--text-light);

}
.blog-author-hover {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.blog-author-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

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

.blog-author-trigger span {
    font-weight: 500;
}

.author-hover-card {
    position: absolute;
    left: 0;
    bottom: calc(100% + 12px);
    width: 320px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(20, 30, 50, 0.14);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

.author-hover-card::after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: -7px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-right: 1px solid #e5e9f0;
    border-bottom: 1px solid #e5e9f0;
    transform: rotate(45deg);
}

.blog-author-hover:hover .author-hover-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.author-hover-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf0f5;
}

.author-hover-header img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f3f8;
}

.author-hover-header h5 {
    margin: 0 0 4px;
    font-size: 17px;
    line-height: 1.3;
    color: #18233a;
}

.author-hover-header span {
    display: block;
    font-size: 13px;
    color: #68758a;
}

.author-hover-bio {
    margin: 14px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #667085;
}

.author-hover-info {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}

.author-hover-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #596579;
    text-decoration: none;
}

.author-hover-info a i {
    font-size: 16px;
    color: #2563eb;
}

.author-hover-social {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-top: 12px;
    border-top: 1px solid #edf0f5;
}

.author-hover-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4f6fa;
    color: #526071;
    text-decoration: none;
    transition: all 0.25s ease;
}

.author-hover-social a i {
    color: inherit;
    transition: color 0.25s ease;
}

.author-hover-social a:hover {
    background: #2563eb;
    color: #fff !important;
}

.author-hover-social a:hover i {
    color: #fff !important;
}

.blog-comments-section {
    margin-top: 50px;
    padding: 35px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 12px;
}

.blog-comments-container {
    max-width: 900px;
}

.blog-comments-heading {
    margin-bottom: 28px;
}

.blog-comments-heading h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 700;
    color: #1d2939;
}

.blog-comments-heading p {
    margin: 0;
    font-size: 14px;
    color: #667085;
}

.blog-comment-form {
    width: 100%;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comment-form-group {
    margin-bottom: 20px;
}

.comment-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.comment-form-group label span {
    color: #e53935;
}

.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #d0d5dd;
    border-radius: 7px;
    background: #fff;
    color: #1d2939;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.comment-form-group input {
    height: 48px;
}

.comment-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form-group input::placeholder,
.comment-form-group textarea::placeholder {
    color: #98a2b3;
}

.comment-form-group input:focus,
.comment-form-group textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.comment-form-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 24px;
}

.comment-form-check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #2563eb;
}

.comment-form-check label {
    font-size: 13px;
    line-height: 1.5;
    color: #667085;
    cursor: pointer;
}

.comment-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border: 0;
    border-radius: 7px;
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.comment-submit-btn i {
    font-size: 18px;
    color: #fff;
}

.comment-submit-btn:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-1px);
}

.comment-submit-btn:hover i {
    color: #fff;
}

@media (max-width: 767px) {

    .blog-comments-section {
        padding: 25px 18px;
        margin-top: 35px;
    }

    .blog-comments-heading h2 {
        font-size: 23px;
    }

    .comment-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comment-submit-btn {
        width: 100%;
    }

}
.comment-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.comment-loader {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.comment-loader i {
    font-size: 18px;
    color: #fff;
}

.comment-submit-btn .bx-spin {
    animation: bxSpin 1s linear infinite;
}

@keyframes bxSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.blog-comments-list {
    margin: 30px 0;
    background: var(--body);
    padding: 20px;
    border-radius: 15px;
}

.blog-comments-list h2 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    color: var(--heading);
}

.blog-comment-item {
    display: flex;
    gap: 15px;
    padding: 20px 20px;
    background: var(--bs-body-bg);
    border-radius: 12px;
}

.blog-comment-avatar {
    flex: 0 0 45px;
}

.blog-comment-avatar span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f4f8;
    color: #2563eb;
    font-size: 17px;
    font-weight: 700;
}

.blog-comment-content {
    flex: 1;
    min-width: 0;
}

.blog-comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
}

.blog-comment-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1d2939;
}

.blog-comment-header span {
    font-size: 12px;
    color: #98a2b3;
}

.blog-comment-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #667085;
    /* white-space: pre-line; */
}

@media (max-width: 576px) {

    .blog-comment-header {
        display: block;
    }

    .blog-comment-header span {
        display: block;
        margin-top: 10px;
    }

}
/* =========================================================
   LOCATION SEO PAGE
========================================================= */

.location-section {
    padding: 90px 0;
}

.location-section.bg-light {
    background: #f7f9fc;
}

.section-heading {
    margin-bottom: 55px;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #2463eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    color: #071b3a;
    margin: 0;
}

.section-heading h2 span,
.location-section h2 span {
    background: linear-gradient(90deg, #2868e8, #0aa78b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-section p {
    color: #617799;
    line-height: 1.8;
}


/* Cards */

.location-card,
.seo-service-card,
.process-card,
.receive-card,
.result-card {
    background: #fff;
    border: 1px solid #dfe6f5;
    border-radius: 15px;
    padding: 28px;
    height: 100%;
}

.location-card h4,
.seo-service-card h4,
.receive-card h4,
.process-card h4 {
    color: #071b3a;
    font-size: 17px;
    font-weight: 700;
}

.location-card p,
.receive-card p,
.process-card p {
    margin-bottom: 0;
}


/* Ranking */

.seo-ranking-card {
    background: #fff;
    border: 1px solid #dfe6f5;
    border-radius: 16px;
    padding: 20px;
}

.seo-ranking-card > h4 {
    color: #071b3a;
    font-size: 15px;
    padding-bottom: 18px;
    border-bottom: 1px solid #dfe6f5;
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #dfe6f5;
    border-radius: 12px;
    padding: 12px;
    margin-top: 10px;
}

.ranking-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffb319;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
}

.ranking-item strong {
    display: block;
    color: #101f8f;
    font-size: 13px;
}

.ranking-item small {
    color: #00a47d;
}

.ranking-label {
    margin-left: auto;
    background: #eef4ff;
    color: #2868e8;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 11px;
}

.ranking-label.competitor {
    color: #69758a;
    background: #f3f4f6;
}

.ranking-result {
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #bde9dc;
    border-radius: 10px;
    color: #00a47d;
    background: #f1fbf8;
    font-size: 13px;
}


/* Services */

.seo-service-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.seo-service-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #536b8e;
    margin-bottom: 12px;
}

.seo-service-card li span {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 1px solid #b6e8dc;
    border-radius: 50%;
    background: #effaf7;
}


/* Industries */

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.industry-tag {
    border: 1px solid #dce5f6;
    border-radius: 30px;
    padding: 10px 18px;
    background: #fff;
    color: #344c70;
    font-size: 14px;
}


/* Results */

.result-card small {
    display: block;
    color: #647a9b;
    font-weight: 600;
    letter-spacing: 1px;
}

.result-card strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    color: #2868e8;
    margin: 12px 0 4px;
}

.result-card h5 {
    color: #536b8e;
}

.result-card.green strong {
    color: #0ab28a;
}

.result-card.purple strong {
    color: #713ce8;
}


/* Specialist */

.specialist-card {
    max-width: 760px;
    margin: auto;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #dfe6f5;
    border-radius: 16px;
    padding: 30px;
}

.specialist-avatar {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2868e8, #4937db);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
}

.specialist-card h3 {
    color: #071b3a;
    margin: 0 0 5px;
}

.specialist-meta {
    font-size: 13px;
}

.specialist-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.specialist-badges span {
    border: 1px solid #cddcff;
    border-radius: 20px;
    padding: 7px 12px;
    color: #2868e8;
    font-size: 12px;
}


/* Comparison */

.seo-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #dfe6f5;
}

.seo-comparison-table th {
    background: #101b36;
    color: #fff;
    padding: 16px;
    text-align: left;
}

.seo-comparison-table td {
    padding: 14px;
    border: 1px solid #dfe6f5;
    color: #536b8e;
}

.seo-comparison-table td:nth-child(2) {
    color: #00a47d;
    font-weight: 600;
}


/* Process */

.process-card > span {
    display: block;
    color: #2868e8;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}


/* Receive */

.receive-box {
    border: 1px solid #dbe5f7;
    border-radius: 22px;
    padding: 40px;
    background: linear-gradient(135deg, #f7fbff, #f4fffb);
}

.receive-box h2 {
    color: #071b3a;
    font-size: 36px;
}

.receive-card {
    padding: 22px;
}

.receive-card p {
    font-size: 14px;
}


/* FAQ */

.location-faq {
    max-width: 1100px;
    margin: auto;
}

.faq-item {
    border: 1px solid #dfe6f5;
    border-radius: 15px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #071b3a;
    font-weight: 600;
}

.faq-question span:last-child {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbdcff;
    border-radius: 8px;
    color: #2868e8;
}

.faq-answer {
    padding: 0 24px 22px;
    color: #617799;
    line-height: 1.8;
}


/* Pricing */

.pricing-card {
    position: relative;
    background: #fff;
    border: 1px solid #dfe6f5;
    border-radius: 18px;
    padding: 28px;
    height: 100%;
}

.pricing-card.popular {
    border: 2px solid #2868e8;
}

.popular-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #2868e8;
    color: #fff;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
}

.pricing-card h3 {
    color: #071b3a;
}

.pricing-card > p {
    color: #7183a1;
}

.pricing-value {
    color: #2868e8;
    font-size: 36px;
    font-weight: 700;
    margin: 20px 0;
}

.pricing-value span,
.pricing-value small {
    font-size: 14px;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.pricing-card li {
    padding: 7px 0;
    border-bottom: 1px solid #edf0f6;
    color: #536b8e;
    font-size: 14px;
}

.pricing-details-btn {
    display: block;
    text-align: center;
    margin-top: 12px;
    border: 1px solid #2868e8;
    border-radius: 8px;
    padding: 10px;
    color: #2868e8;
}


/* CTA */

.location-cta {
    padding: 90px 0;
}

.location-cta-box {
    background: linear-gradient(120deg, #254fd7, #7030df);
    border-radius: 28px;
    padding: 55px;
    color: #fff;
}

.location-cta-box h2 {
    font-size: 40px;
    color: #fff;
}

.location-cta-box p {
    color: rgba(255,255,255,.8);
    line-height: 1.8;
}

.location-cta-box ul {
    list-style: none;
    padding: 0;
}

.location-cta-box li {
    margin-bottom: 12px;
}

.location-lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-lead-form input,
.location-lead-form select {
    width: 100%;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.15);
    color: #fff;
    border-radius: 10px;
    padding: 14px 16px;
}

.location-lead-form input::placeholder {
    color: rgba(255,255,255,.7);
}

.location-lead-form select option {
    color: #071b3a;
}

.location-lead-form button {
    border: 0;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    color: #2868e8;
    font-weight: 700;
}

.location-lead-form small {
    text-align: center;
    color: rgba(255,255,255,.6);
}


/* Mobile */

@media (max-width: 991px) {

    .section-heading h2 {
        font-size: 34px;
    }

    .location-section {
        padding: 65px 0;
    }

    .specialist-card {
        flex-direction: column;
    }

    .receive-box,
    .location-cta-box {
        padding: 30px 20px;
    }

    .location-cta-box h2 {
        font-size: 32px;
    }

}

@media (max-width: 575px) {

    .section-heading h2 {
        font-size: 28px;
    }

    .location-section {
        padding: 50px 0;
    }

    .industry-tag {
        font-size: 13px;
        padding: 8px 13px;
    }

}
.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-answer-wrapper > .faq-answer {
    overflow: hidden;
}

.faq-answer-wrapper.active {
    grid-template-rows: 1fr;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}
/*==================================
Service Hero
==================================*/

.service-hero {
    padding: 35px 0 90px;
    background: var(--white);
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 14px;
}

.service-breadcrumb a {
    color: var(--heading);
    text-decoration: none;
    transition: var(--transition);
}

.service-breadcrumb a:hover {
    color: var(--primary);
}

.service-breadcrumb span {
    color: var(--text-light);
}

.service-hero-row {
    min-height: 430px;
}

.service-hero-title {
    max-width: 750px;
    margin: 0 0 25px;
    font-size: 58px;
    line-height: 1.12;
    font-weight: 500;
    color: var(--heading);
}

.service-hero-description {
    max-width: 680px;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.service-hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.service-hero-buttons .header-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow);
}

.service-hero-buttons .header-btn:hover {
    background: var(--gradient-hover);
}

.service-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--heading);
    background: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.service-secondary-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    text-decoration: none;
}

.service-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
}

.service-hero-points > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--heading);
}

.service-hero-points i {
    font-size: 20px;
    color: #08b95c;
}

.service-hero-image {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.service-hero-image img {
    display: block;
    width: 100%;
    height: 370px;
    object-fit: cover;
}


/*==================================
Responsive
==================================*/

@media (max-width: 991px) {

    .service-hero {
        padding: 30px 0 60px;
    }

    .service-hero-title {
        font-size: 44px;
    }

    .service-hero-image {
        max-width: 100%;
        margin: 40px 0 0;
    }

}

@media (max-width: 767px) {

    .service-hero-title {
        font-size: 36px;
    }

    .service-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-hero-image img {
        height: 300px;
    }

}
/*==================================
Service List
==================================*/

.service-list-area {
    background: var(--body);
}

.service-category-block {
    margin-bottom: 70px;
}

.service-category-block:last-child {
    margin-bottom: 0;
}

.service-category-block .section-heading {
    margin-bottom: 35px;
}

.service-category-block .section-heading h2 {
    color: var(--heading);
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.service-card {
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-image {
    display: block;
    overflow: hidden;
}

.service-card-image img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.04);
}

.service-card-content {
    padding: 25px;
}

.service-card-category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.service-card-content h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.35;
}

.service-card-content h3 a {
    color: var(--heading);
    text-decoration: none;
    transition: var(--transition);
}

.service-card-content h3 a:hover {
    color: var(--primary);
}

.service-card-content p {
    margin-bottom: 18px;
    color: var(--text);
    line-height: 1.7;
}

.service-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-read-btn:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.service-read-btn i {
    font-size: 20px;
}


/*==================================
Responsive
==================================*/

@media (max-width: 767px) {

    .service-category-block {
        margin-bottom: 50px;
    }

    .service-category-block .section-heading h2 {
        font-size: 30px;
    }

    .service-card-image img {
        height: 210px;
    }

}
/*==================================
Service Support Section
==================================*/

.service-support-section {
    background: var(--white);
}

.service-support-heading {
    max-width: 1050px;
    margin: 0 auto 48px;
    text-align: center;
}

.service-support-heading h2 {
    margin: 0 0 16px;
    color: var(--heading);
    font-size: 38px;
    line-height: 1.25;
    font-weight: 600;
}

.service-support-heading p {
    max-width: 1050px;
    margin: 0 auto;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

.service-support-card {
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
}

.service-support-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.service-support-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: var(--menu-active);
}

.service-support-icon i {
    color: var(--primary);
    font-size: 30px;
}

.service-support-card h4 {
    max-width: 170px;
    margin: 0;
    color: var(--heading);
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}


/*==================================
Responsive
==================================*/

@media (max-width: 991px) {

    .service-support-heading h2 {
        font-size: 32px;
    }

    .service-support-card {
        height: 180px;
    }

}

@media (max-width: 575px) {

    .service-support-heading {
        margin-bottom: 35px;
    }

    .service-support-heading h2 {
        font-size: 28px;
    }

    .service-support-heading p {
        font-size: 15px;
    }

    .service-support-card {
        height: 170px;
        padding: 20px 10px;
    }

}

/*==================================
Service Stats
==================================*/

.service-stats-section {
    background: var(--white);
}

.service-stats-heading {
    text-align: center;
    margin-bottom: 40px;
}

.service-stats-heading h2 {
    margin: 0 0 12px;
    color: var(--heading);
    font-size: 38px;
    line-height: 1.3;
    font-weight: 600;
}

.service-stats-heading p {
    margin: 0;
    color: var(--text);
    font-size: 16px;
}

.service-stats-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 20px;
    background: var(--gradient);
    box-shadow: var(--shadow);
}

.service-stat-item {
    position: relative;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
}

.service-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 28%;
    right: 0;
    width: 1px;
    height: 44%;
    background: rgba(255, 255, 255, 0.35);
}

.service-stat-number {
    color: var(--white);
    font-size: 56px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-stat-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}


/*==================================
Responsive
==================================*/

@media (max-width: 991px) {

    .service-stats-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-stat-item:nth-child(2)::after {
        display: none;
    }

    .service-stat-item:nth-child(1),
    .service-stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

}

@media (max-width: 575px) {

    .service-stats-heading h2 {
        font-size: 30px;
    }

    .service-stats-box {
        grid-template-columns: 1fr;
    }

    .service-stat-item {
        min-height: 170px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .service-stat-item:not(:last-child)::after {
        display: none;
    }

    .service-stat-item:last-child {
        border-bottom: none;
    }

    .service-stat-number {
        font-size: 48px;
    }

}

/*==================================
Related Services
==================================*/

.related-services {
    background: var(--white);
}

.related-services-header {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 35px;
}

.related-services-heading {
    text-align: center;
    max-width: 850px;
}

.related-services-heading h2 {
    margin: 0 0 12px;
    color: var(--heading);
    font-size: 34px;
    line-height: 1.3;
    font-weight: 600;
}

.related-services-heading p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

.related-services-arrows {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    gap: 10px;
}

.related-services-arrows button {
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.related-services-arrows button:hover {
    background: var(--primary-dark);
}

.related-services-arrows button i {
    font-size: 20px;
}

.related-services-slider {
    width: 100%;
}

.related-service-item {
    padding: 0 10px;
}

.related-service-card {
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(26, 31, 99, 0.05);
    transition: var(--transition);
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.related-service-link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.related-service-image {
    width: 100%;
    height: 165px;
    overflow: hidden;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.04);
}

.related-service-content {
    min-height: 235px;
    padding: 22px 25px 25px;
    display: flex;
    flex-direction: column;
}

.related-service-content h3 {
    margin: 0 0 10px;
    color: var(--heading);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.related-service-content p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
}

.related-service-btn {
    margin-top: auto;
    padding-top: 20px;
    color: var(--heading);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.related-service-btn i {
    font-size: 18px;
    transition: var(--transition);
}

.related-service-card:hover .related-service-btn {
    color: var(--primary);
}

.related-service-card:hover .related-service-btn i {
    transform: translateX(4px);
}

.related-services-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 28px;
}

.related-services-slider .owl-dot span {
    width: 8px;
    height: 8px;
    display: block;
    margin: 0;
    border-radius: 50%;
    background: #d9dce8;
    transition: var(--transition);
}

.related-services-slider .owl-dot.active span {
    width: 10px;
    height: 10px;
    background: var(--primary);
}

.related-services-footer {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.related-services-all-btn {
    min-width: 185px;
    padding: 13px 25px;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--heading);
    background: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.related-services-all-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}


/*==================================
Responsive
==================================*/

@media (max-width: 991px) {

    .related-services-heading {
        padding-right: 80px;
        padding-left: 80px;
    }

    .related-services-heading h2 {
        font-size: 30px;
    }

}

@media (max-width: 767px) {

    .related-services-header {
        display: block;
    }

    .related-services-heading {
        padding: 0 45px;
    }

    .related-services-heading h2 {
        font-size: 27px;
    }

    .related-services-arrows {
        right: 0;
        top: -5px;
    }

}

@media (max-width: 575px) {

    .related-services-heading {
        padding: 0;
    }

    .related-services-heading h2 {
        font-size: 24px;
    }

    .related-service-item {
        padding: 0 5px;
    }

}
/*==================================
Service Power Section
==================================*/

.service-power-section {
    background: var(--white);
}

.service-power-box {
    display: grid;
    grid-template-columns: 42% 58%;
    overflow: hidden;
    background: var(--section);
    border-radius: 22px;
}

.service-power-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.service-power-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-power-content {
    padding: 55px 60px;
}

.service-power-content h2 {
    margin: 0 0 12px;
    color: var(--heading);
    font-size: 34px;
    line-height: 1.3;
    font-weight: 500;
}

.service-power-intro {
    margin: 0 0 25px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

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

.service-power-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--heading);
    font-size: 14px;
    line-height: 1.5;
}

.service-power-list li:last-child {
    margin-bottom: 0;
}

.service-power-list li i {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


/*==================================
Responsive
==================================*/

@media (max-width: 991px) {

    .service-power-box {
        grid-template-columns: 1fr;
    }

    .service-power-image {
        min-height: 350px;
    }

    .service-power-content {
        padding: 40px;
    }

}

@media (max-width: 575px) {

    .service-power-image {
        min-height: 260px;
    }

    .service-power-content {
        padding: 30px 22px;
    }

    .service-power-content h2 {
        font-size: 27px;
    }

    .service-power-list li {
        font-size: 13px;
    }

}

/*==================================
Service FAQ
==================================*/

.service-faq-section {
    background: var(--white);
}

.service-faq-heading {
    text-align: center;
    margin-bottom: 35px;
}

.service-faq-heading h2 {
    margin: 0 0 12px;
    color: var(--heading);
    font-size: 34px;
    line-height: 1.3;
    font-weight: 500;
}

.service-faq-heading p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
}

.service-faq-list {
    max-width: 1240px;
    margin: 0 auto;
}

.service-faq-item {
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--section);
}

.service-faq-question {
    width: 100%;
    min-height: 62px;
    padding: 18px 24px;
    border: 0;
    background: transparent;
    color: var(--heading);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.service-faq-question i {
    flex: 0 0 auto;
    font-size: 20px;
    color: var(--heading);
    transition: var(--transition);
}

.service-faq-answer {
    display: none;
    padding: 0 24px 22px;
}

.service-faq-answer > div {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.service-faq-item.active .service-faq-answer {
    display: block;
}

.service-faq-item.active .service-faq-question i {
    color: var(--primary);
}


/*==================================
Responsive
==================================*/

@media (max-width: 767px) {

    .service-faq-heading h2 {
        font-size: 28px;
    }

    .service-faq-question {
        padding: 16px 18px;
        font-size: 14px;
    }

    .service-faq-answer {
        padding: 0 18px 18px;
    }

}

/*==================================
Services Section
==================================*/

.services-section {
    background: var(--white);
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 45px;
}

.services-section .section-title h2 {
    color: var(--heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.services-section .section-title p {
    color: var(--text);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}


/*==================================
Service Card
==================================*/

.service-card {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(67, 56, 255, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}


/* Icon */

.service-card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--menu-active);
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gradient);
    color: var(--white);
}


/* Category */

.service-card-category {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 9px;
    text-transform: uppercase;
    letter-spacing: .5px;
}


/* Title */

.service-card h3 {
    color: var(--heading);
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}


/* Link */

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-card-link i {
    font-size: 18px;
    transition: var(--transition);
}

.service-card-link:hover {
    color: var(--primary-dark);
}

.service-card-link:hover i {
    transform: translateX(4px);
}


/*==================================
Responsive
==================================*/

@media (max-width: 767px) {

    .services-section .section-title h2 {
        font-size: 30px;
    }

    .service-card {
        padding: 25px;
    }

}

/*==================================
How We Work
==================================*/

.how-work-section {
    background: var(--white);
}

.how-work-box {
    background: var(--section);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px;
}

.how-work-heading {
    text-align: center;
    margin-bottom: 45px;
}

.how-work-heading h2 {
    color: var(--heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.how-work-heading p {
    color: var(--text);
    font-size: 15px;
    margin: 0;
}


/*==================================
Image
==================================*/

.how-work-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 18px;
}

.how-work-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/*==================================
Steps
==================================*/

.how-work-steps {
    position: relative;
    padding-left: 5px;
}

.how-work-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 105px;
}

.how-work-step:not(:last-of-type)::after {
    content: "";
    position: absolute;
    left: 31px;
    top: 64px;
    width: 1px;
    height: 45px;
    border-left: 1px dashed var(--border);
}


/* Number */

.how-work-number {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gradient);
    color: var(--white);

    font-size: 21px;
    font-weight: 600;

    box-shadow: var(--shadow);
}


/* Content */

.how-work-content {
    padding-top: 2px;
}

.how-work-content h4 {
    color: var(--heading);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.how-work-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    max-width: 580px;
}


/*==================================
Button
==================================*/

.how-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 15px;
    margin-left: 82px;

    padding: 11px 22px;

    border: 1px solid var(--primary);
    border-radius: 30px;

    color: var(--primary);
    background: var(--white);

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: var(--transition);
}

.how-work-btn i {
    font-size: 18px;
    transition: var(--transition);
}

.how-work-btn:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.how-work-btn:hover i {
    transform: translateX(4px);
}


/*==================================
Responsive
==================================*/

@media (max-width: 991px) {

    .how-work-box {
        padding: 35px;
    }

    .how-work-image {
        height: 380px;
    }

}

@media (max-width: 767px) {

    .how-work-box {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .how-work-heading h2 {
        font-size: 29px;
    }

    .how-work-image {
        height: 300px;
    }

    .how-work-step {
        gap: 15px;
    }

    .how-work-number {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 17px;
    }

    .how-work-step:not(:last-of-type)::after {
        left: 26px;
        top: 54px;
    }

    .how-work-btn {
        margin-left: 67px;
    }

}
