@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 Css */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;

  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: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu > ul > li {
  position: relative;
}

.main-menu > ul > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 42px;
  padding: 0 14px;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.main-menu > ul > li > a:hover,
.main-menu > ul > li > a.active {
  color: var(--white);
  background: var(--gradient);
}

.has-mega-menu {
  position: relative;
}

.has-mega-menu > a {
  position: relative;
  z-index: 10001;
}

.has-mega-menu:hover > a,
.has-mega-menu:focus-within > a {
  color: var(--white);
  background: var(--gradient);
}

.has-mega-menu::after {
  content: "";
  position: absolute;
  left: -25px;
  right: -25px;
  top: 100%;
  height: 24px;
  background: transparent;
  z-index: 10000;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;

  width: max-content;
  max-width: calc(100vw - 40px);

  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;

  gap: 5px;
  padding: 5px;

  background: transparent;
  /*! border: 1px solid #ece8ff; */
  border-radius: 18px;

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

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

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

  z-index: 9999;

  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.32s;
}

.has-mega-menu:hover > .mega-menu,
.has-mega-menu:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%) translateY(0);

  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.mega-column {
  flex: 0 0 250px;
  width: 250px;
  min-width: 250px;
  box-sizing: border-box;

  padding: 15px;

  background: #f8faff;

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

  text-align: center;
}

.mega-column h6 {
  margin: 0 0 18px;
  padding: 0 0 10px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #5b21ff;

  border-bottom: 1px solid #ece8ff;
}

.mega-column ul {
  display: flex;
  flex-direction: column;
  gap: 6px;

  margin: 0;
  padding: 0;

  list-style: none;
  text-align: left;
}

.mega-column ul li {
  margin: 0;
  padding: 0;
}

.mega-column ul li a {
  display: flex;
  align-items: center;

  width: 100%;
  min-height: 40px;
  box-sizing: border-box;

  padding: 10px 12px;

  color: var(--text);
  background: transparent;

  border: 1px solid transparent;
  border-radius: 10px;

  text-decoration: none;

  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;

  transform: translateX(0);

  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.mega-column ul li a:hover {
  color: var(--white);
  background: var(--gradient);
  border-color: transparent;
  transform: translateX(3px);
}

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

.view-all a {
  color: #5b21ff !important;
  font-weight: 600;
}

.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: color 0.25s ease;
}

.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;

  padding: 15px 32px;

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

  border: 1px solid #4338ff;
  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.header-btn:hover {
  background: linear-gradient(135deg, #14184e, #362be6);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(67, 56, 255, 0.25);
}

@media (max-width: 1200px) {
  .mega-menu {
    max-width: calc(100vw - 30px);
  }

  .mega-column {
    width: 210px;
    min-width: 210px;
  }

  .main-menu > ul {
    gap: 10px;
  }

  .main-menu > ul > li > a {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .mega-menu {
    grid-template-columns: 1fr;
    width: min(320px, calc(100vw - 30px));
  }

  .mega-column {
    width: 100%;
    min-width: 0;
  }
}
.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  position: relative;
  z-index: 10001;

  display: inline-flex;
  align-items: center;
  gap: 4px;

  height: 42px;
  padding: 0 14px;

  color: var(--secondary);
  text-decoration: none;

  font-weight: 500;
  white-space: nowrap;

  border-radius: 10px;

  transition: color 0.25s ease, background 0.25s ease;
}

.has-dropdown > a i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.has-dropdown:hover > a,
.has-dropdown:focus-within > a {
  color: var(--white);
  background: var(--gradient);
}

.has-dropdown:hover > a i,
.has-dropdown:focus-within > a i {
  transform: rotate(180deg);
}

.has-dropdown::after {
  content: "";

  position: absolute;

  left: -20px;
  right: -20px;

  top: 100%;

  height: 18px;

  background: transparent;

  z-index: 10000;
}

.resource-dropdown {
  position: absolute;

  top: calc(100% + 10px);
  left: 50%;

  width: 280px;

  padding: 8px;

  background: #fff;

  border: 1px solid #ece8ff;
  border-radius: 16px;

  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

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

  z-index: 9999;

  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.3s;
}

.has-dropdown:hover > .resource-dropdown,
.has-dropdown:focus-within > .resource-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%) translateY(0);

  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.resource-item {
  display: flex;

  align-items: center;
  justify-content: space-between;

  width: 100%;
  min-height: 42px;

  box-sizing: border-box;

  padding: 0 14px;

  color: var(--text);
  background: transparent;

  border-radius: 11px;

  text-decoration: none;

  font-size: 15px;
  font-weight: 500;

  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.resource-item i {
  font-size: 14px;
  opacity: 0.55;

  transition: opacity 0.2s ease, transform 0.2s ease;
}

.resource-item:hover {
  color: var(--white);
  background: var(--gradient);

  transform: translateX(0);
}

.resource-item:hover i {
  opacity: 1;
  color: var(--white);
}

.resource-item.featured {
  color: var(--white);
  background: var(--gradient);

  margin: 2px 0;

  box-shadow: 0 8px 20px rgba(67, 56, 255, 0.18);
}

.resource-item.featured i {
  opacity: 1;
  color: var(--white);
}

.resource-item.featured:hover {
  color: var(--white);
  background: var(--gradient);

  transform: translateX(0);
}
/*==============================
    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;

  padding: 30px;

  overflow-y: auto;

  box-sizing: border-box;

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

  transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.mobile-menu-overlay {
  position: fixed;

  inset: 0;

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

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.3s ease, visibility 0.3s ease;

  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: 25px;
}

.mobile-menu-header img {
  height: 42px;
  width: auto;
  display: block;
}

.mobile-menu-header button {
  width: 42px;
  height: 42px;

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

  border: none;
  border-radius: 10px;

  background: #f5f7ff;
  color: var(--heading);

  font-size: 28px;

  cursor: pointer;

  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu-header button:hover {
  color: #fff;
  background: var(--gradient);
}

.mobile-menu-list {
  list-style: none !important;

  padding: 0 !important;
  margin: 0 !important;

  display: flex;
  flex-direction: column;
}

.mobile-menu-list > li {
  width: 100%;

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

  margin: 0;
  padding: 0;
}

.mobile-menu-list > li > a,
.mobile-dropdown-toggle {
  width: 100%;
  min-height: 50px;

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

  box-sizing: border-box;

  padding: 14px 0;

  color: var(--heading);
  background: transparent;

  border: none;

  text-decoration: none;

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

  text-align: left;

  cursor: pointer;

  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu-list > li > a:hover,
.mobile-dropdown-toggle:hover,
.mobile-dropdown.open > .mobile-dropdown-toggle {
  color: #5b21ff;
}

.mobile-dropdown-toggle i {
  font-size: 19px;

  transition: transform 0.25s ease;
}

.mobile-dropdown.open > .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

/* =========================
   MAIN MOBILE DROPDOWN
   ========================= */

.mobile-dropdown-menu {
  display: none;

  width: 100%;

  padding: 5px 0 12px;
}

.mobile-dropdown.open > .mobile-dropdown-menu {
  display: block;
}

/* =========================
   SUBCATEGORY
   ========================= */

.mobile-subcategory {
  width: 100%;

  border-radius: 10px;

  overflow: hidden;
}

.mobile-subcategory-toggle {
  width: 100%;
  min-height: 44px;

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

  box-sizing: border-box;

  padding: 11px 12px 11px 14px;

  border: none;
  border-radius: 10px;

  background: #f8faff;

  color: var(--heading);

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

  text-align: left;

  cursor: pointer;

  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-subcategory-toggle:hover,
.mobile-subcategory.open > .mobile-subcategory-toggle {
  color: #5b21ff;
  background: #f1f4ff;
}

.mobile-subcategory-toggle i {
  font-size: 18px;

  transition: transform 0.25s ease;
}

.mobile-subcategory.open > .mobile-subcategory-toggle i {
  transform: rotate(180deg);
}

/* =========================
   SERVICES
   ========================= */

.mobile-service-list {
  display: none;

  padding: 4px 0 5px;
}

.mobile-subcategory.open > .mobile-service-list {
  display: block;
}

.mobile-service-list a {
  display: flex;
  align-items: center;

  min-height: 40px;

  box-sizing: border-box;

  padding: 9px 12px 9px 28px;

  color: var(--text);

  background: #fff;

  border-radius: 8px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.mobile-service-list a:hover {
  color: #5b21ff;

  background: #f8faff;

  padding-left: 32px;
}

/* =========================
   RESOURCES
   ========================= */

.mobile-resources {
  padding: 5px 0 10px;
}

.mobile-resources a {
  width: 100%;
  min-height: 44px;

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

  box-sizing: border-box;

  padding: 10px 12px;

  color: var(--heading);
  background: transparent;

  border-radius: 9px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-resources a:hover {
  color: #5b21ff;
  background: #f5f7ff;
}

.mobile-resources a i {
  font-size: 15px;
  opacity: 0.6;
}

/* =========================
   CALL BUTTON
   ========================= */

.mobile-call-btn {
  display: flex;

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

  gap: 10px;

  margin-top: 25px;

  padding: 15px 16px;

  border-radius: 12px;

  background: var(--gradient);

  color: #fff;

  font-weight: 600;

  text-decoration: none;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-call-btn:hover {
  color: #fff;

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(67, 56, 255, 0.2);
}

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

@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;
  }
}

/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 480px) {
  .mobile-menu {
    width: 100%;
    max-width: 100%;

    padding: 25px 20px;
  }
}
/*=========================
        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
==================================*/

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  background: radial-gradient(
      circle at 85% 20%,
      rgba(67, 56, 255, 0.1),
      transparent 32%
    ),
    linear-gradient(180deg, var(--white) 0%, var(--body) 100%);
}

/* Decorative Background */

.hero-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  border-radius: 50%;
  background: rgba(67, 56, 255, 0.06);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -160px;
  left: -100px;
  border-radius: 50%;
  background: rgba(26, 31, 99, 0.05);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

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

.hero-section .row {
  min-height: 560px;
}

.hero-section .col-lg-6:first-child {
  position: relative;
  z-index: 3;
}

/* Badge */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 22px;
  padding: 8px 15px;

  background: var(--menu-active);
  border: 1px solid var(--border);
  border-radius: 30px;

  color: var(--primary);
  font-size: 13px;
  font-weight: 600;

  box-shadow: 0 6px 20px rgba(67, 56, 255, 0.08);
}

/* Title */

.hero-title {
  max-width: 680px;

  margin: 0 0 22px;

  color: var(--heading);

  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.hero-title span {
  display: block;

  margin-top: 5px;

  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */

.hero-text {
  max-width: 590px;

  margin: 0 0 32px;

  color: var(--text);

  font-size: 17px;
  line-height: 1.8;
}

/*==================================
Hero Buttons
==================================*/

.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btns .header-btn,
.hero-btns .btn-outline {
  min-height: 50px;

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

  padding: 0 24px;

  border-radius: 10px;

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

  text-decoration: none;

  transition: var(--transition);
}

/* Primary Button */

.hero-btns .header-btn {
  border: 1px solid transparent;
  background: var(--gradient);
  color: var(--white);

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

.hero-btns .header-btn:hover {
  background: var(--gradient-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(67, 56, 255, 0.22);
}

/* Outline Button */

.hero-btns .btn-outline {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--heading);
}

.hero-btns .btn-outline:hover {
  border-color: var(--primary);
  background: var(--menu-active);
  color: var(--primary);
  transform: translateY(-2px);
}

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

.hero-image {
    position: relative;
    width: 100%;
    margin-left: auto;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow:
        0 25px 70px rgba(26, 31, 99, 0.12),
        0 8px 25px rgba(67, 56, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-sizing: border-box;
    overflow: visible;
}

.hero-image::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 75%;
    height: 75%;
    top: 12%;
    left: 12%;
    border-radius: 50%;
    background: rgba(67, 56, 255, 0.18);
    filter: blur(60px);
    pointer-events: none;
}

.hero-image img,
.hero-image video {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.hero-image video {
    aspect-ratio: auto;
}

@media (max-width: 1199px) {
    .hero-image {
        padding: 10px;
        border-radius: 24px;
    }

    .hero-image img,
    .hero-image video {
        border-radius: 18px;
    }

    .hero-image::before {
        filter: blur(50px);
    }
}

@media (max-width: 991px) {
    .hero-image {
        width: 100%;
        margin: 30px auto 0;
        padding: 10px;
        border-radius: 22px;
    }

    .hero-image img,
    .hero-image video {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }

    .hero-image::before {
        width: 70%;
        height: 70%;
        top: 15%;
        left: 15%;
        filter: blur(45px);
    }
}

@media (max-width: 767px) {
    .hero-image {
        margin-top: 25px;
        padding: 8px;
        border-radius: 18px;
    }

    .hero-image img,
    .hero-image video {
        border-radius: 14px;
    }

    .hero-image::before {
        filter: blur(35px);
    }
}

@media (max-width: 575px) {
    .hero-image {
        margin-top: 20px;
        padding: 6px;
        border-radius: 16px;
    }

    .hero-image img,
    .hero-image video {
        border-radius: 12px;
    }

    .hero-image::before {
        width: 65%;
        height: 65%;
        top: 17.5%;
        left: 17.5%;
        filter: blur(28px);
    }
}

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

@media (max-width: 1199px) {
  .hero-section {
    padding: 75px 0 85px;
  }

  .hero-title {
    font-size: 54px;
  }

  .hero-section .row {
    min-height: 500px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 65px 0 75px;
  }

  .hero-section .row {
    min-height: auto;
  }

  .hero-section .col-lg-6:first-child {
    text-align: center;
  }

  .hero-title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 48px;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 55px 0 65px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 12px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .header-btn,
  .hero-btns .btn-outline {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-section {
    padding: 45px 0 55px;
  }
}
/*==================================================
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: 85px 0 10px !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);

  pointer-events: none;
}

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

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

.testimonial-header {
  position: relative;

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

  margin-bottom: 30px;
}

.testimonial-header .section-title {
  text-align: center;
  margin-bottom: 0;
}

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

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

/*==================================
    NAVIGATION
==================================*/

.testimonial-navigation {
  position: absolute;

  top: 0;
  right: 0;

  display: flex;
  align-items: center;

  gap: 12px;
}

.testimonial-navigation button {
  width: 40px;
  height: 40px;

  border: 0;
  border-radius: 50%;

  background: #e9eaf0;

  color: var(--heading);

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

  cursor: pointer;

  transition: var(--transition);
}

.testimonial-navigation button i {
  font-size: 20px;
}

.testimonial-navigation button:hover {
  background: var(--primary);
  color: var(--white);
}

.testimonial-navigation button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/*==================================
    SLIDER
==================================*/

.testimonial-slider {
  width: 100%;
  overflow: hidden;

  padding: 5px 5px 55px;
}

.testimonial-slider .swiper-wrapper {
  align-items: stretch;
}

.testimonial-slider .swiper-slide {
  height: auto;
  display: flex;
}

/*==================================
    CARD
==================================*/

.testimonial-card {
  position: relative;

  width: 100%;
  height: 100%;

  background: var(--white);

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

  border-radius: 20px;

  padding: 30px;

  overflow: hidden;

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

  transition: var(--transition);
}

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

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: var(--gradient);
}

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

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

/*==================================
    RATING
==================================*/

.testimonial-rating {
  display: flex;
  align-items: center;

  gap: 3px;

  margin-bottom: 18px;
}

.testimonial-rating i {
  color: #ffb800;
  font-size: 17px;
}

/*==================================
    MESSAGE
==================================*/

.testimonial-message {
  color: var(--text);

  font-size: 15px;

  line-height: 1.8;

  margin: 0 0 28px;

  min-height: 105px;
}

/*==================================
    USER
==================================*/

.testimonial-user {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-top: auto;
}

.testimonial-user img {
  width: 58px;
  height: 58px;

  flex: 0 0 58px;

  border-radius: 50%;

  object-fit: cover;

  border: 3px solid var(--menu-active);
}

.testimonial-user h5 {
  margin: 0;

  color: var(--secondary);

  font-size: 17px;

  font-weight: 700;
}

.testimonial-user span {
  display: block;

  margin-top: 3px;

  color: var(--text-light);

  font-size: 13px;
}

.testimonial-user small {
  display: block;

  margin-top: 2px;

  color: var(--text);

  font-size: 12px;
}

/*==================================
    PAGINATION
==================================*/

.testimonial-pagination {
  position: absolute;

  bottom: 5px !important;
  left: 0;

  width: 100%;

  text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;

  margin: 0 4px !important;

  background: #cbd5e1;

  opacity: 1;

  transition: var(--transition);
}

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

  border-radius: 20px;

  background: var(--primary);
}

/*==================================
    EMPTY
==================================*/

.testimonial-empty {
  text-align: center;

  padding: 40px 20px;

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

/*==================================
    RESPONSIVE
==================================*/

@media (max-width: 1199px) {
  .testimonial-card {
    padding: 25px;
  }

  .testimonial-message {
    min-height: 120px;
  }
}

@media (max-width: 991px) {
  .testimonial-header {
    margin-bottom: 25px;
  }

  .testimonial-navigation {
    position: static;

    margin-left: auto;
  }

  .testimonial-header {
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .testimonial-area {
    padding: 45px 0;
  }

  .testimonial-header {
    display: block;
  }

  .testimonial-header .section-title {
    text-align: center;
  }

  .testimonial-navigation {
    justify-content: center;

    margin-top: 20px;
  }

  .testimonial-slider {
    padding-bottom: 50px;
  }

  .testimonial-message {
    min-height: auto;
  }
}
/*==================================
    PAGE BANNER
==================================*/

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

  padding: 90px 0 25px;

  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, 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: 0.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: 0.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: 0.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, 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: 0.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: 0.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, 0.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, 0.08);
}

.search-blog-item {
  display: flex;

  gap: 15px;

  padding: 15px;

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

  text-decoration: none;

  transition: 0.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 */
.services-view-all {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.services-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  padding: 14px 30px;
  border: 1px solid #d0d0d0;
  border-radius: 30px;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-view-all-btn:hover {
  background: var(--gradient);
  color: #fff;
  border-color: var(--gradient);
  text-decoration: none;
}
.service-card-image {
  position: relative;
}

.service-card-image .service-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;

  display: inline-block;

  padding: 6px 12px;

  background: #fff;
  color: #257ebf;

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

  line-height: 1;
  border-radius: 4px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.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, 0.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, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 10px;
  padding: 14px 16px;
}

.location-lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.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, 0.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 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 HERO
========================================================= */

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 35px 0 75px;

  background: radial-gradient(
      circle at 85% 20%,
      rgba(67, 56, 255, 0.1),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--white) 0%,
      var(--white) 62%,
      var(--section) 100%
    );
}

/* =========================================================
   BREADCRUMB
========================================================= */

.service-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 40px;

  font-size: 14px;
  color: var(--text-light);
}

.service-breadcrumb a {
  color: var(--heading);
  font-weight: 500;
  text-decoration: none;

  transition: var(--transition);
}

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

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

/* =========================================================
   HERO ROW
========================================================= */

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

/* =========================================================
   LEFT CONTENT
========================================================= */

.service-hero-content {
  max-width: 700px;
}

/* Badge */

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 15px;
  margin-bottom: 20px;

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

  background: var(--menu-active);

  color: var(--primary);

  font-size: 13px;
  font-weight: 600;
}

.service-hero-badge i {
  font-size: 16px;
}

/* Title */

.service-hero-title {
  margin: 0 0 22px;

  max-width: 700px;

  color: var(--heading);

  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 700;

  letter-spacing: -2px;
}

/* Description */

.service-hero-description {
  max-width: 670px;

  margin-bottom: 30px;

  color: var(--text);

  font-size: 17px;
  line-height: 1.7;
}

.service-hero-description p {
  margin-bottom: 12px;
}

.service-hero-description p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   BUTTONS
========================================================= */

.service-hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-bottom: 32px;
}

.service-hero-buttons .header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  min-height: 50px;

  padding: 0 25px;

  border-radius: 50px;

  background: var(--gradient);

  color: var(--white);

  text-decoration: none;

  box-shadow: var(--shadow);

  transition: var(--transition);
}

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

  color: var(--white);

  transform: translateY(-2px);
}

/* Secondary */

.service-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  min-height: 50px;

  padding: 0 25px;

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

  background: var(--white);

  color: var(--heading);

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

  text-decoration: none;

  transition: var(--transition);
}

.service-secondary-btn:hover {
  border-color: var(--primary);

  color: var(--primary);

  transform: translateY(-2px);
}

/* =========================================================
   BENEFIT POINTS
========================================================= */

.service-hero-points {
  display: flex;
  flex-wrap: wrap;

  gap: 12px 28px;
}

.service-hero-point {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--text);

  font-size: 14px;
  font-weight: 500;
}

.service-hero-point i {
  color: var(--primary);

  font-size: 18px;
}

/* =========================================================
   RIGHT IMAGE
========================================================= */

.service-hero-visual {
  position: relative;

  padding-left: 25px;
}

.service-hero-image {
  position: relative;
  z-index: 2;
  height: 500px;
  width: auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--section);
  box-shadow: var(--shadow);
}

.service-hero-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================================================
   IMAGE DECORATION
========================================================= */

.service-hero-decoration {
  position: absolute;

  top: -16px;
  right: -8px;

  z-index: 3;

  width: 52px;
  height: 52px;

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

  border-radius: 50%;

  background: var(--gradient);

  color: var(--white);

  font-size: 23px;

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

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .service-hero {
    padding: 30px 0 60px;
  }

  .service-breadcrumb {
    margin-bottom: 30px;
  }

  .service-hero-row {
    min-height: auto;
  }

  .service-hero-title {
    font-size: 48px;
    letter-spacing: -1.5px;
  }

  .service-hero-visual {
    margin-top: 45px;
    padding-left: 0;
  }

  .service-hero-image {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .service-hero {
    padding: 25px 0 50px;
  }

  .service-breadcrumb {
    margin-bottom: 25px;

    font-size: 13px;
  }

  .service-hero-title {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .service-hero-description {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .service-hero-buttons .header-btn,
  .service-secondary-btn {
    width: 100%;
  }

  .service-hero-points {
    flex-direction: column;
    gap: 12px;
  }

  .service-hero-image {
    height: 330px;

    border-radius: 20px;
  }

  .service-hero-decoration {
    width: 44px;
    height: 44px;

    right: -5px;
  }
}

/* ==========================================
   Problem Section
========================================== */

.problem-section {
  background: var(--section);
  padding: 30px 0;
}

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

.problem-heading {
  max-width: 780px;
  margin: 0 auto 50px;
}

.problem-label {
  display: inline-block;
  margin-bottom: 14px;

  color: var(--primary);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.problem-heading h2 {
  margin: 0 auto 18px;

  color: var(--heading);

  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
}

.problem-heading p {
  max-width: 720px;
  margin: 0 auto 8px;

  color: var(--text);

  font-size: 16px;
  line-height: 1.65;
}

.problem-heading strong {
  display: block;

  color: var(--heading);

  font-size: 16px;
  line-height: 1.5;
}

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

.problem-items {
  margin-top: 0;
}

.problem-card {
  height: 100%;

  padding: 28px 25px;

  background: var(--white);

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

  transition: var(--transition);
}

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

  border-color: rgba(67, 56, 255, 0.25);

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

/* ==========================================
   Card Number
========================================== */

.problem-number {
  display: block;

  margin-bottom: 14px;

  color: var(--primary);

  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

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

.problem-card h3 {
  margin: 0 0 10px;

  color: var(--heading);

  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
}

/* ==========================================
   Card Description
========================================== */

.problem-card p {
  margin: 0;

  color: var(--text);

  font-size: 15px;
  line-height: 1.6;
}

/* ==========================================
   Tablet
========================================== */

@media (max-width: 991px) {
  .problem-section {
    padding: 70px 0;
  }

  .problem-heading {
    margin-bottom: 40px;
  }

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

/* ==========================================
   Mobile
========================================== */

@media (max-width: 575px) {
  .problem-section {
    padding: 55px 0;
  }

  .problem-heading {
    margin-bottom: 35px;
  }

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

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

  .problem-card {
    padding: 24px 22px;
  }
}

/* =========================================================
   SERVICE FEATURES SECTION
========================================================= */

.service-features-section {
  padding: 30px 0;
  background: var(--white);
}

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

.service-features-header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.service-features-header .section-label {
  display: inline-block;
  margin-bottom: 14px;

  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-features-header h2 {
  margin: 0 0 18px;

  color: var(--heading);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.service-features-header p {
  max-width: 720px;
  margin: 0 auto;

  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* =========================================================
   FEATURES GRID
========================================================= */

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* =========================================================
   FEATURE CARD
========================================================= */

.service-feature-card {
  padding: 28px 30px;

  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);

  transition: var(--transition);
}

.service-feature-card:hover {
  border-color: rgba(67, 56, 255, 0.25);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

/* =========================================================
   CARD HEADING
========================================================= */

.service-feature-heading {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 15px;
}

/* =========================================================
   ICON
========================================================= */

.service-feature-icon {
  flex: 0 0 44px;

  width: 44px;
  height: 44px;

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

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

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

  font-size: 21px;

  transition: var(--transition);
}

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

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

.service-feature-heading h3 {
  flex: 1;

  margin: 0;

  color: var(--heading);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

/* =========================================================
   CARD DESCRIPTION
========================================================= */

.service-feature-card > p {
  margin: 0;

  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .service-features-section {
    padding: 70px 0;
  }

  .service-features-header {
    margin-bottom: 40px;
  }

  .service-features-header h2 {
    font-size: 34px;
  }

  .service-features-grid {
    gap: 18px;
  }

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

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .service-features-section {
    padding: 60px 0;
  }

  .service-features-header {
    margin-bottom: 35px;
  }

  .service-features-header h2 {
    font-size: 30px;
  }

  .service-features-header p {
    font-size: 15px;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-feature-card {
    padding: 23px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .service-features-section {
    padding: 50px 0;
  }

  .service-features-header h2 {
    font-size: 27px;
  }

  .service-feature-heading {
    gap: 11px;
  }

  .service-feature-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .service-feature-heading h3 {
    font-size: 16px;
  }

  .service-feature-card > p {
    font-size: 14px;
  }
}

/* =========================================================
   SEO PROCESS / VERTICAL TIMELINE
   ========================================================= */

.seo-process-section {
  background: var(--section);
  position: relative;
  overflow: hidden;
}

.seo-process-heading {
  max-width: 850px;
  margin: 0 auto 70px;
}

.seo-process-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.seo-process-heading h2 {
  margin: 0;
  color: var(--heading);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
}

.seo-process-heading p {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

/* =========================================================
   TIMELINE
   ========================================================= */

.seo-process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 0 30px;
}

/* Center vertical line */

.seo-process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    to bottom,
    var(--primary) 0,
    var(--primary) 9px,
    transparent 9px,
    transparent 16px
  );
}

/* =========================================================
   STEP
   ========================================================= */

.seo-process-item {
  position: relative;
  display: flex;
  min-height: 165px;
  margin-bottom: 35px;
}

.seo-process-item:last-child {
  margin-bottom: 0;
}

/* =========================================================
   CONTENT
   ========================================================= */

.seo-process-content {
  width: calc(50% - 55px);
  padding: 5px 0 15px;
}

.seo-process-content-right {
  margin-left: calc(50% + 55px);
  text-align: left;
}

.seo-process-content-left {
  margin-right: calc(50% + 55px);
  text-align: right;
}

/* Small heading */

.seo-process-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* Title */

.seo-process-content h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
}

/* Description */

.seo-process-content p {
  margin: 0;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.65;
}

/* =========================================================
   NUMBER / STEP ICON
   ========================================================= */

.seo-process-marker {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  border: 3px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  transition: background var(--transition), border-color var(--transition),
    box-shadow var(--transition), transform var(--transition);
}

.seo-process-marker span {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: color var(--transition);
}

/* =========================================================
   ACTIVE STEP
   Add .active to .seo-process-item
   ========================================================= */

.seo-process-item.active .seo-process-marker {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 8px rgba(67, 56, 255, 0.1),
    0 10px 25px rgba(67, 56, 255, 0.25);
  transform: translateX(-50%) scale(1.05);
}

.seo-process-item.active .seo-process-marker span {
  color: var(--white);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
  .seo-process-heading {
    margin-bottom: 55px;
  }

  .seo-process-heading h2 {
    font-size: 36px;
  }

  .seo-process-timeline {
    max-width: 850px;
  }

  .seo-process-content {
    width: calc(50% - 45px);
  }

  .seo-process-content-right {
    margin-left: calc(50% + 45px);
  }

  .seo-process-content-left {
    margin-right: calc(50% + 45px);
  }
}

@media (max-width: 767px) {
  .seo-process-heading {
    margin-bottom: 45px;
    padding: 0 15px;
  }

  .seo-process-heading h2 {
    font-size: 30px;
  }

  .seo-process-heading p {
    font-size: 15px;
  }

  /* Move timeline to left */

  .seo-process-timeline {
    padding-left: 65px;
    padding-right: 10px;
  }

  .seo-process-timeline::before {
    left: 24px;
    transform: none;
  }

  .seo-process-item {
    min-height: auto;
    margin-bottom: 45px;
  }

  .seo-process-marker {
    left: 24px;
    width: 48px;
    height: 48px;
    transform: translateX(-50%);
  }

  .seo-process-item.active .seo-process-marker {
    transform: translateX(-50%) scale(1.05);
  }

  .seo-process-content,
  .seo-process-content-right,
  .seo-process-content-left {
    width: 100%;
    margin: 0;
    padding: 3px 0 0;
    text-align: left;
  }

  .seo-process-content h3 {
    font-size: 19px;
  }

  .seo-process-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .seo-process-heading h2 {
    font-size: 26px;
  }

  .seo-process-heading p {
    font-size: 14px;
  }

  .seo-process-timeline {
    padding-left: 58px;
  }

  .seo-process-timeline::before {
    left: 21px;
  }

  .seo-process-marker {
    left: 21px;
    width: 42px;
    height: 42px;
  }

  .seo-process-item.active .seo-process-marker {
    transform: translateX(-50%) scale(1.04);
  }

  .seo-process-marker span {
    font-size: 14px;
  }

  .seo-process-kicker {
    font-size: 11px;
  }

  .seo-process-content h3 {
    font-size: 18px;
  }

  .seo-process-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

.seo-process-item.active .seo-process-marker {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 0 0 8px rgba(67, 56, 255, 0.1),
    0 10px 25px rgba(67, 56, 255, 0.2);
  transform: translateX(-50%) scale(1.05);
}

.seo-process-item.active .seo-process-marker span {
  color: var(--white);
}

/*==================================
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;
  }
}
/* price card in service detail */
.pricing-section {
  background: var(--white);
  padding: 90px 0;
}

.pricing-heading {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  margin-bottom: 18px;
  border-radius: 50px;
  background: #eef2ff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.pricing-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.pricing-heading h2 {
  margin: 0 auto 18px;
  color: var(--heading);
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
}

.pricing-heading h2 span {
  color: var(--primary);
}

.pricing-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.pricing-cards {
  max-width: 1160px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  height: 100%;
  padding: 34px 30px 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(26, 31, 99, 0.07);
  text-align: center;
  transition: var(--transition);
}

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

.pricing-card-header {
  min-height: 105px;
}

.pricing-card-header h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 22px;
  font-weight: 800;
}

.pricing-card-header p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-price-label {
  margin-top: 12px;
  color: var(--heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 5px 0 12px;
  color: var(--heading);
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
}

.pricing-currency {
  margin-right: 4px;
  font-size: 25px;
}

.pricing-period {
  margin-left: 5px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
}

.pricing-inr {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 18px;
  border-radius: 30px;
  background: var(--section);
  color: var(--text);
  font-size: 14px;
}

.pricing-inr strong {
  color: var(--heading);
  font-size: 16px;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid var(--heading);
  border-radius: 30px;
  background: var(--white);
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.pricing-btn:hover {
  border-color: var(--primary);
  background: var(--gradient);
  color: var(--white);
}

.pricing-card-popular {
  border: 1px solid var(--primary);
  box-shadow: var(--shadow);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 18px;
  border-radius: 30px;
  background: var(--gradient);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.pricing-inr-highlight {
  background: #eef2ff;
}

.pricing-btn-primary {
  border-color: var(--primary);
  background: var(--gradient);
  color: var(--white);
}

.pricing-btn-primary:hover {
  border-color: var(--primary-dark);
  background: var(--gradient-hover);
  color: var(--white);
}

.pricing-note {
  margin: 26px auto 0;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.pricing-note strong {
  color: var(--heading);
}

@media (max-width: 991px) {
  .pricing-section {
    padding: 70px 0;
  }

  .pricing-heading h2 {
    font-size: 36px;
  }

  .pricing-cards {
    max-width: 760px;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-heading {
    margin-bottom: 40px;
  }

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

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

  .pricing-card {
    padding: 30px 24px;
  }
}

@media (max-width: 575px) {
  .pricing-heading h2 {
    font-size: 27px;
  }

  .pricing-badge {
    font-size: 12px;
  }

  .pricing-price {
    font-size: 40px;
  }
}
/*==================================
Service FAQ
==================================*/

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

.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(--white);
}

.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: 0.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: auto;
  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;
  }
}
.industries-section {
  overflow: hidden;
}

/* Heading Row */

.industries-heading-row {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 45px;
}

/* Heading */

.industries-heading {
  text-align: center;
  max-width: 900px;
}

.industries-heading h2 {
  margin: 0 0 15px;
}

.industries-heading p {
  margin: 0;
}

/* TOP RIGHT NAVIGATION */

.industries-navigation {
  position: absolute;
  right: 0;
  top: 15px;

  display: flex;
  align-items: center;
  gap: 12px;
}

/* Navigation Buttons */

.industries-nav {
  width: 40px;
  height: 40px;

  padding: 0;

  border: 0;
  border-radius: 50%;

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

  cursor: pointer;

  font-size: 24px;

  transition: 0.2s ease;
}

.industries-nav:hover {
  transform: scale(1.05);
}

.industries-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Slider */

.industries-slider {
  overflow: hidden;
  width: 100%;
}

.industries-track {
  display: flex;
  gap: 24px;

  transition: transform 0.5s ease;

  will-change: transform;
}

/* Cards */

.industry-card {
  flex: 0 0 calc((100% - 72px) / 4);

  min-width: 0;

  border: 1px solid #e5e5e5;
  border-radius: 16px;

  overflow: hidden;

  background: #fff;
}

/* Image */

.industry-card-image {
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.industry-card-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

/* Content */

.industry-card-content {
  padding: 30px;
}

.industry-card-content h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.industry-short-description {
  color: #777;
  font-size: 17px;
  line-height: 1.5;
  min-height: 76px;
}

.industry-short-description p {
  margin: 0;
}

/* Learn More */

.industry-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin-top: 22px;

  color: #111;
  font-weight: 600;

  text-decoration: none;
}

.industry-learn-more i {
  font-size: 20px;
}

/* Dots */

.industries-dots {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 8px;

  margin-top: 38px;

  min-height: 12px;
}

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

  padding: 0;

  border: 0;
  border-radius: 50%;

  cursor: pointer;

  transition: all 0.3s ease;
}

.industry-dot.active {
  width: 30px;
  border-radius: 10px;
}

/* View All */

.industries-view-all {
  display: flex;
  justify-content: center;

  margin-top: 38px;
}

.industries-view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 35px;

  border: 1px solid #ccc;
  border-radius: 30px;

  color: #111;
  text-decoration: none;
  font-weight: 600;
}

/* Tablet */

@media (max-width: 991px) {
  .industry-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* Mobile */

@media (max-width: 575px) {
  .industries-heading-row {
    padding-right: 0;
  }

  .industries-heading {
    text-align: left;
  }

  .industries-navigation {
    position: static;

    margin-top: 20px;
  }

  .industries-heading-row {
    display: block;
  }

  .industry-card {
    flex: 0 0 100%;
  }
}
/* =========================================
       STATS SECTION
    ========================================= */

.stats-section {
  position: relative;
  overflow: hidden;
  background: var(--gradient);
}

/* Decorative glow */

.stats-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -140px;
  border-radius: 50%;
  background: rgba(71, 67, 255, 0.45);
  pointer-events: none;
}

.stats-section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 45px;
}

.stats-section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #8fbfff;
  text-transform: uppercase;
}

.stats-section-heading h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.stats-section-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}

/* =========================================
       STATS WRAPPER
    ========================================= */

.stats-wrapper {
  position: relative;
  z-index: 2;

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

  padding: 42px 35px;

  border-radius: 22px;

  /* background: var(--gradient); */

  overflow: hidden;
}

/* =========================================
       STAT ITEM
    ========================================= */

.stat-item {
  position: relative;
  text-align: center;
  padding: 5px 25px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;

  top: 8px;
  right: 0;

  width: 1px;
  height: 85px;

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

.stat-number {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.stat-counter {
  display: inline-block;
  min-width: 1ch;
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.4;
}

/* =========================================
       RESPONSIVE
    ========================================= */

@media (max-width: 991px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 0;
  }

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

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

@media (max-width: 575px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
    padding: 35px 20px;
  }

  .stat-item {
    padding: 10px 15px 25px;
  }

  .stat-item:not(:last-child)::after {
    top: auto;
    right: 15%;
    bottom: 0;

    width: 70%;
    height: 1px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stats-section-heading h2 {
    font-size: 30px;
  }
}
/* =========================================
   AI PRODUCTIVITY SECTION
========================================= */

.ai-productivity-section {
  background: var(--body);
}

/* Main Wrapper */

.ai-productivity-wrapper {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: stretch;

  overflow: hidden;

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

  background: var(--white);

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

/* =========================================
   IMAGE
========================================= */

.ai-productivity-image {
  position: relative;

  min-height: 390px;

  overflow: hidden;

  background: var(--section);
}

.ai-productivity-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(67, 56, 255, 0.08),
    rgba(26, 31, 99, 0.02)
  );

  pointer-events: none;
}

.ai-productivity-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

/* =========================================
   CONTENT
========================================= */

.ai-productivity-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 55px 65px;

  background: var(--section);
}

.ai-productivity-label {
  display: inline-block;

  width: fit-content;

  margin-bottom: 16px;

  padding: 7px 14px;

  border-radius: 50px;

  background: var(--menu-active);

  color: var(--primary);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1.2px;

  text-transform: uppercase;
}

.ai-productivity-content h2 {
  margin: 0 0 20px;

  color: var(--heading);

  font-size: 42px;
  font-weight: 700;

  line-height: 1.18;
}

.ai-productivity-content h2 span {
  color: var(--primary);
}

.ai-productivity-content p {
  max-width: 650px;

  margin: 0 0 30px;

  color: var(--text);

  font-size: 17px;

  line-height: 1.7;
}

/* =========================================
   BUTTON
========================================= */

.ai-productivity-btn {
  display: inline-flex;

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

  gap: 8px;

  width: fit-content;

  padding: 14px 25px;

  border-radius: 50px;

  background: var(--gradient);

  color: var(--white);

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

  text-decoration: none;

  box-shadow: var(--shadow);

  transition: var(--transition);
}

.ai-productivity-btn i {
  font-size: 20px;

  transition: var(--transition);
}

.ai-productivity-btn:hover {
  background: var(--gradient-hover);

  color: var(--white);

  transform: translateY(-2px);
}

.ai-productivity-btn:hover i {
  transform: translateX(4px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .ai-productivity-wrapper {
    grid-template-columns: 1fr;
  }

  .ai-productivity-image {
    min-height: 350px;
  }

  .ai-productivity-content {
    padding: 45px 40px;
  }

  .ai-productivity-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .ai-productivity-wrapper {
    border-radius: var(--radius);
  }

  .ai-productivity-image {
    min-height: 260px;
  }

  .ai-productivity-content {
    padding: 35px 25px;
  }

  .ai-productivity-content h2 {
    font-size: 30px;
  }

  .ai-productivity-content p {
    font-size: 15px;
  }

  .ai-productivity-btn {
    width: 100%;
  }
}
/*==================================
    TOOLS SECTION
==================================*/

.tools-section {
  position: relative;
  overflow: hidden;

  padding: 70px 0;

  background: radial-gradient(
      circle at top left,
      rgba(67, 56, 255, 0.06),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(26, 31, 99, 0.05),
      transparent 35%
    ),
    var(--body);
}

.tools-section::before {
  content: "";

  position: absolute;
  inset: 0;

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

  background-size: 60px 60px;

  opacity: 0.45;

  pointer-events: none;
}

.tools-section .container {
  position: relative;
  z-index: 2;
}

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

.tools-section .section-title {
  margin-bottom: 45px;
}

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

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

/*==================================
    TOOL CARD
==================================*/

.tool-card {
  position: relative;

  min-height: 135px;

  padding: 25px 15px;

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

  text-align: center;

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

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

  border-radius: var(--radius);

  box-shadow: 0 8px 25px rgba(26, 31, 99, 0.04);

  transition: var(--transition);

  overflow: hidden;
}

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

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  background: var(--gradient);

  transform: scaleX(0);

  transform-origin: center;

  transition: var(--transition);
}

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

  border-color: rgba(67, 56, 255, 0.25);

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

.tool-card:hover::before {
  transform: scaleX(1);
}

/*==================================
    TOOL ICON
==================================*/

.tool-icon {
  width: 52px;
  height: 52px;

  margin-bottom: 12px;

  border-radius: 50%;

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

  background: var(--menu-active);

  color: var(--primary);

  transition: var(--transition);
}

.tool-icon i {
  font-size: 27px;
}

.tool-card:hover .tool-icon {
  background: var(--primary);

  color: var(--white);

  transform: scale(1.05);
}

/*==================================
    TOOL NAME
==================================*/

.tool-card h5 {
  margin: 0;

  color: var(--heading);

  font-size: 15px;

  font-weight: 600;

  line-height: 1.4;
}

/*==================================
    RESPONSIVE
==================================*/

@media (max-width: 1199px) {
  .tools-section {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .tools-section {
    padding: 50px 0;
  }

  .tools-section .section-title {
    margin-bottom: 30px;
  }

  .tool-card {
    min-height: 120px;

    padding: 20px 10px;
  }

  .tool-icon {
    width: 45px;
    height: 45px;
  }

  .tool-icon i {
    font-size: 23px;
  }

  .tool-card h5 {
    font-size: 14px;
  }
}
/*==================================
    CONTACT CTA SECTION
==================================*/

.contact-cta-section {
  position: relative;
  overflow: hidden;

  background: var(--body);
}

/*==================================
    MAIN CTA CARD
==================================*/

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

  min-height: 600px;

  border-radius: 28px;

  background: linear-gradient(
    135deg,
    var(--secondary-dark) 0%,
    var(--secondary) 48%,
    var(--primary-dark) 100%
  );

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

/*==================================
    ROTATING BACKGROUND
==================================*/

.contact-cta-rotate {
  position: absolute;

  width: 620px;
  height: 620px;

  left: -270px;
  top: 50%;

  transform: translateY(-50%);

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.08);

  pointer-events: none;

  animation: contactRotate 22s linear infinite;
}

/* Large outer circle */

.contact-cta-rotate::before {
  content: "";

  position: absolute;

  inset: 55px;

  border-radius: 50%;

  border: 75px solid rgba(255, 255, 255, 0.035);
}

/* Inner circle */

.contact-cta-rotate::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  left: 160px;
  top: 160px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Rotating separator pieces */

.contact-cta-rotate span {
  position: absolute;

  width: 1px;
  height: 100%;

  left: 50%;

  top: 0;

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

  transform-origin: center;
}

.contact-cta-rotate span:nth-child(1) {
  transform: rotate(0deg);
}

.contact-cta-rotate span:nth-child(2) {
  transform: rotate(45deg);
}

.contact-cta-rotate span:nth-child(3) {
  transform: rotate(90deg);
}

.contact-cta-rotate span:nth-child(4) {
  transform: rotate(135deg);
}

@keyframes contactRotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/*==================================
    LEFT CONTENT
==================================*/

.contact-cta-content {
  position: relative;

  z-index: 2;

  padding: 70px 55px;
}

.contact-cta-badge {
  display: inline-flex;

  align-items: center;

  padding: 7px 15px;

  margin-bottom: 22px;

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

  border-radius: 50px;

  color: rgba(255, 255, 255, 0.9);

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

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.3px;
}

.contact-cta-content h2 {
  margin: 0 0 25px;

  color: var(--white);

  font-size: 52px;

  line-height: 1.15;

  font-weight: 500;

  letter-spacing: -1.5px;
}

.contact-cta-content p {
  max-width: 550px;

  margin: 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 16px;

  line-height: 1.8;
}

/*==================================
    FORM CARD
==================================*/

.contact-form-card {
  position: relative;

  z-index: 3;

  margin: 35px 35px 35px 10px;

  padding: 35px;

  border-radius: 22px;

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

  border: 1px solid rgba(255, 255, 255, 0.8);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.contact-form-header {
  margin-bottom: 25px;
}

.contact-form-header h3 {
  margin: 0 0 7px;

  color: var(--heading);

  font-size: 27px;

  font-weight: 700;
}

.contact-form-header p {
  margin: 0;

  color: var(--text-light);

  font-size: 14px;

  line-height: 1.6;
}

/*==================================
    LABEL
==================================*/

.contact-form-label {
  display: block;

  margin-bottom: 7px;

  color: var(--heading);

  font-size: 13px;

  font-weight: 600;
}

/*==================================
    INPUT
==================================*/

.contact-input {
  width: 100%;

  min-height: 48px;

  padding: 11px 14px;

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

  border-radius: 8px;

  background: var(--white);

  color: var(--text);

  font-size: 14px;

  box-shadow: none;

  transition: var(--transition);
}

.contact-input::placeholder {
  color: #94a3b8;
}

.contact-input:focus {
  border-color: var(--primary);

  box-shadow: 0 0 0 3px rgba(67, 56, 255, 0.08);

  outline: none;
}

.contact-textarea {
  min-height: 125px;

  resize: vertical;
}

/*==================================
    SUBMIT BUTTON
==================================*/

.contact-submit-btn {
  width: 100%;

  min-height: 50px;

  margin-top: 5px;

  border: 0;

  border-radius: 8px;

  background: var(--gradient);

  color: var(--white);

  font-size: 15px;

  font-weight: 600;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  cursor: pointer;

  transition: var(--transition);
}

.contact-submit-btn i {
  font-size: 20px;

  transition: var(--transition);
}

.contact-submit-btn:hover {
  background: var(--gradient-hover);

  transform: translateY(-2px);

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

.contact-submit-btn:hover i {
  transform: translateX(4px);
}

/*==================================
    RESPONSIVE
==================================*/

@media (max-width: 1199px) {
  .contact-cta-content {
    padding: 60px 40px;
  }

  .contact-cta-content h2 {
    font-size: 44px;
  }

  .contact-form-card {
    margin-right: 25px;
  }
}

@media (max-width: 991px) {
  .contact-cta {
    padding: 15px;
  }

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

    min-height: 0;

    border-radius: 28px;

    background: none;

    box-shadow: none;
  }

  .contact-cta-content {
    padding: 45px 30px 25px;
  }

  .contact-cta-content h2 {
    font-size: 40px;
  }

  .contact-form-card {
    margin: 15px 15px 25px;
  }

  .contact-cta-rotate {
    width: 500px;
    height: 500px;

    left: -280px;
  }
}

@media (max-width: 767px) {
  .contact-cta {
    border-radius: 20px;
  }

  .contact-cta-content {
    padding: 35px 20px 20px;
  }

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

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

  .contact-form-card {
    margin: 10px 5px 10px;

    padding: 25px 20px;

    border-radius: 16px;
  }

  .contact-form-header h3 {
    font-size: 23px;
  }

  .contact-cta-rotate {
    width: 420px;
    height: 420px;

    left: -260px;
  }
}
.contact-cta1 {
  margin: 20px 0;
}
