/* =========================================================
   CodeCanItBe MODERN DESIGN SYSTEM
   ========================================================= */

:root {
  --primary: #1689c8;
  --primary-dark: #0f72a8;
  --primary-light: #38bdf8;
  --primary-subtle: #e0f2fe;

  --secondary: #0a2540;
  --secondary-dark: #061828;
  --accent-cyan: #0284c7;
  --accent-emerald: #0d9488;

  --heading: #091e32;
  --text: #1e293b;
  --text-light: #283e54;
  --text-muted: #486581;

  --white: #ffffff;
  --body: #f4f9fd;
  --section: #eef6fc;
  --card-bg: #ffffff;

  --border: #d9eaf5;
  --border-subtle: rgba(22, 137, 200, 0.12);
  --header-border: rgba(217, 234, 245, 0.85);
  --menu-active: #e2f1f8;

  --gradient: linear-gradient(135deg, #0a2540 0%, #1689c8 100%);
  --gradient-hover: linear-gradient(135deg, #061828 0%, #0f72a8 100%);
  --gradient-primary: linear-gradient(135deg, #1689c8 0%, #0f7dbe 100%);
  --gradient-accent: linear-gradient(135deg, #1689c8 0%, #38bdf8 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);

  --shadow-sm: 0 4px 14px rgba(10, 37, 64, 0.05);
  --shadow: 0 14px 35px rgba(22, 137, 200, 0.1);
  --shadow-lg: 0 24px 48px -12px rgba(10, 37, 64, 0.12);
  --shadow-glow: 0 0 35px rgba(22, 137, 200, 0.25);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  font-family: 'Outfit',sans-serif;
  background: var(--body);
  color: var(--text);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  /* font-weight: 500 !important; */
  letter-spacing: -0.02em;
}

h1{
  font-size: 56px !important;
  font-weight: 500 !important;
}

p {
  color: var(--text);
  line-height: 1.7;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.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: #1689c8;

  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 var(--border);
}

.header-wrapper {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s ease;
}

.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 0 0 auto;
}

.header-logo a {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.header-logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: max-height 0.25s ease, transform 0.25s ease;
}

.header-logo img:hover {
  transform: scale(1.02);
}

.main-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-menu > ul {
  display: flex;
  align-items: center;
  gap: 5px;
  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: 5px;
  height: 38px;
  padding: 0 18px;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;
  border-radius: 50px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.main-menu > ul > li > a:hover {
  color: #0f6ca8;
  background: var(--menu-active);
}

.main-menu > ul > li > a.active,
.main-menu > ul > li.active > a,
.has-mega-menu.active > a,
.has-mega-menu > a.active,
.has-dropdown.active > a,
.has-dropdown > a.active {
  color: #0f6ca8 !important;
  background: #e2f1f8 !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 10px rgba(22, 137, 200, 0.12) !important;
}

.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,
.has-mega-menu.open > a {
  color: #0f6ca8;
  background: #e2f1f8;
}

.dropdown-arrow {
  font-size: 14px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block;
}

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

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

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

  width: max-content;
  max-width: min(1160px, calc(100vw - 32px));
  max-height: calc(100vh - 95px);
  overflow-y: auto;
  overscroll-behavior: contain;

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

  gap: 14px;
  padding: 16px;

  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 20px;

  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.16), 0 4px 16px rgba(10, 37, 64, 0.04);

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

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

  z-index: 99999;

  transition: opacity 0.18s ease, transform 0.2s ease,
    visibility 0s linear 0.18s;
}

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

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

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

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

  padding: 16px 14px;

  background: #f8fcfe;

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

  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.mega-column.active {
  background: #f0f9ff !important;
  border-color: #bae6fd !important;
  box-shadow: 0 4px 14px rgba(22, 137, 200, 0.08) !important;
}

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

  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: var(--primary);

  border-bottom: 1.5px solid var(--border);
  transition: color 0.2s ease;
}

.mega-column.active h6 {
  color: var(--primary-dark) !important;
  border-bottom-color: #7dd3fc !important;
}

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

  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: 38px;
  box-sizing: border-box;

  padding: 8px 12px;

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

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

  text-decoration: none;

  font-size: 14px;
  font-weight: 550;
  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, box-shadow 0.2s ease;
}

.mega-column ul li a:hover {
  color: var(--primary-dark);
  background: #e0f2fe;
  border-color: #bae6fd;
  transform: translateX(3px);
}

/* Mega Menu Active Service Item */
.mega-column ul li a.active,
.mega-column ul li.active > a {
  color: var(--primary-dark) !important;
  background: #e0f2fe !important;
  border-color: #7dd3fc !important;
  font-weight: 650 !important;
  box-shadow: 0 2px 8px rgba(22, 137, 200, 0.12) !important;
  transform: translateX(3px) !important;
}

.mega-column ul li a.active::before,
.mega-column ul li.active > a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 8px;
  flex-shrink: 0;
}

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

.view-all a {
  color: var(--primary) !important;
  font-weight: 600;
  transition: color 0.2s ease;
}

.view-all a:hover {
  color: var(--primary-dark) !important;
}

.header-right {
  flex: 0 0 auto;

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

  gap: 18px;
}

.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;
  gap: 8px;

  padding: 13px 28px;

  color: #ffffff !important;
  background: var(--primary);

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

  text-decoration: none;

  font-weight: 600;
  box-shadow: 0 8px 22px rgba(22, 137, 200, 0.28);

  transition: all 0.25s ease;
}

.header-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 137, 200, 0.38);
}

.header-btn.btn-outline {
  background: #ffffff !important;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary) !important;
  box-shadow: 0 4px 14px rgba(22, 137, 200, 0.12) !important;
}

.header-btn.btn-outline:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 137, 200, 0.28) !important;
}

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

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

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

  .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;
  justify-content: center;
  gap: 5px;

  height: 38px;
  padding: 0 18px;

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

  font-weight: 500;
  font-size: 15px;
  white-space: nowrap;

  border-radius: 50px;

  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.has-dropdown:hover > a,
.has-dropdown:focus-within > a,
.has-dropdown.open > a {
  color: #0f6ca8;
  background: #e2f1f8;
}

.has-dropdown.active > a,
.has-dropdown > a.active {
  color: #0f6ca8 !important;
  background: #e2f1f8 !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 10px rgba(22, 137, 200, 0.12) !important;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: -15px;
  right: -15px;
  top: 100%;
  height: 14px;
  background: transparent;
  z-index: 10000;
}

.resource-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;

  width: 290px;
  padding: 10px;

  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 18px;

  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.14), 0 4px 12px rgba(10, 37, 64, 0.04);

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

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

  z-index: 99999;

  transition: opacity 0.18s ease, transform 0.2s ease,
    visibility 0s linear 0.18s;
}

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

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

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

.resource-item {
  display: flex;
  align-items: center;
  gap: 12px;

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

  padding: 10px 14px;

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

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

  text-decoration: none;

  font-size: 14.5px;
  font-weight: 550;

  transition: all 0.2s ease;
}

.resource-item .resource-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #e0f2fe;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.resource-item:hover {
  color: var(--primary-dark);
  background: #e0f2fe;
  border-color: #bae6fd;
  transform: translateX(3px);
}

.resource-item:hover .resource-icon {
  background: var(--primary);
  color: #ffffff;
}

.resource-item.active {
  color: var(--primary-dark) !important;
  background: #e0f2fe !important;
  border-color: #7dd3fc !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(22, 137, 200, 0.12) !important;
  transform: translateX(3px) !important;
}

.resource-item.active .resource-icon {
  background: var(--primary) !important;
  color: #ffffff !important;
}

/*==============================
    WHY CodeCanItBe
==============================*/

.why-CodeCanItBe {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1.5px solid #bae6fd;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: left;
}

.why-CodeCanItBe h6 {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(22, 137, 200, 0.25);
}

.why-CodeCanItBe-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-CodeCanItBe-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.4;
}

.why-CodeCanItBe-list li i {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 0;
}

.why-CodeCanItBe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 30px;
  background: var(--gradient);
  color: #fff !important;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(22, 137, 200, 0.25);
  transition: all 0.25s ease;
}

.why-CodeCanItBe-btn:hover {
  background: var(--gradient-hover);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 137, 200, 0.35);
}

.why-CodeCanItBe-btn i {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.why-CodeCanItBe-btn:hover i {
  transform: translateX(3px);
}

.why-CodeCanItBe-note {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
}

  color: var(--text-light);

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

.mobile-menu-toggle {
  display: none;
}
/*=========================
        FOOTER
==========================*/

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

.footer-area p {
  color: rgba(255, 255, 255, 0.9) !important;
}

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

.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 22px;
  object-fit: contain;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 340px;
}

.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: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: 0.3s;
}

.footer-area ul li a:hover {
  color: #7dd3fc;
  padding-left: 5px;
}

.footer-view-all-link,
.footer-area a.footer-view-all-link,
.footer-area ul li a.footer-view-all-link,
.footer-area .text-primary,
.footer-area a.text-primary,
.footer-area ul li a.text-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #38bdf8 !important;
  font-weight: 700 !important;
  font-size: 14.5px !important;
  margin-top: 6px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.footer-view-all-link:hover,
.footer-area a.footer-view-all-link:hover,
.footer-area ul li a.footer-view-all-link:hover,
.footer-area .text-primary:hover,
.footer-area a.text-primary:hover,
.footer-area ul li a.text-primary:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5) !important;
}

.footer-view-all-link i,
.footer-area a.footer-view-all-link i {
  font-size: 18px !important;
  line-height: 1 !important;
  transition: transform 0.25s ease !important;
}

.footer-view-all-link:hover i,
.footer-area a.footer-view-all-link:hover i {
  transform: translateX(3px) !important;
}


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

.footer-social a {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  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: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact li a:hover {
  color: #7dd3fc !important;
}

.footer-contact i {
  color: #7dd3fc;
  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 rgba(255, 255, 255, 0.25);
}

.footer-btn:hover {
  background: var(--gradient-hover);
  color: #fff;
  box-shadow: 0 8px 24px rgba(22, 137, 200, 0.3);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  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 rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.city-list a:hover {
  background: #ffffff;
  color: var(--secondary);
  border-color: #ffffff;
  transform: translateY(-2px);
}

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

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

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

.footer-bottom a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #7dd3fc;
}

@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(22, 137, 200, 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(22, 137, 200, 0.06);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -160px;
  left: -100px;
  border-radius: 50%;
  background: rgba(10, 37, 64, 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(22, 137, 200, 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(22, 137, 200, 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(10, 37, 64, 0.12),
    0 8px 25px rgba(22, 137, 200, 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(22, 137, 200, 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;
  }
}

/* =========================================================
   HERO SCENIC STYLE (MATCHING USER REFERENCE DESIGN)
   ========================================================= */

.hero-section.hero-scenic-style {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 110px 0 80px;
  background-color: var(--body);
  display: flex;
  align-items: center;
}

.hero-section.hero-scenic-style::before,
.hero-section.hero-scenic-style::after {
  display: none !important;
}

/* Background Scenic Landscape Layer */
.hero-scenic-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.hero-scenic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 251, 255, 0.97) 0%,
    rgba(248, 251, 255, 0.92) 36%,
    rgba(248, 251, 255, 0.45) 54%,
    rgba(248, 251, 255, 0) 72%
  );
  z-index: 2;
}

.hero-section.hero-scenic-style .hero-container {
  z-index: 3;
}

.hero-section.hero-scenic-style .hero-content-col {
  padding-right: 15px;
}

/* Badge */
.hero-scenic-style .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 18px;
  background: rgba(22, 137, 200, 0.08);
  border: 1px solid rgba(22, 137, 200, 0.22);
  border-radius: 50px;
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(22, 137, 200, 0.08);
  backdrop-filter: blur(8px);
}

.hero-scenic-style .hero-badge i {
  font-size: 16px;
  color: var(--primary);
}

/* Title */
.hero-scenic-style .hero-title {
    color: var(--heading);
    font-size: 35px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
}

.hero-scenic-style .hero-title .gradient-part {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-scenic-style .hero-title .gradient-part,
.service-hero-description h1 .gradient-part,
.blog-details-title .gradient-part, .industry-hero-content h1, .industry-hero-content h2, .industry-hero-content h3, .industry-hero-content h4, .industry-hero-content h5, .industry-hero-content h6 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Text */
.hero-scenic-style .hero-text {
  color: var(--text-light);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 530px;
  margin-bottom: 30px;
  font-weight: 450;
}

/* Buttons */
.hero-scenic-style .hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--primary);
  color: #ffffff !important;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(22, 137, 200, 0.28);
  transition: all 0.25s ease;
}

.hero-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 137, 200, 0.38);
  color: #ffffff !important;
}

.hero-btn-primary i {
  font-size: 19px;
  transition: transform 0.25s ease;
}

.hero-btn-primary:hover i {
  transform: translateX(4px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  background: #e2f1f8;
  backdrop-filter: blur(10px);
  border: 1.5px solid #bee1f5;
  color: #0f5b8c !important;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(22, 137, 200, 0.08);
  transition: all 0.25s ease;
}

.hero-btn-secondary:hover {
  background: #ffffff;
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 137, 200, 0.16);
}

/* 4 Feature Points */

.hero-features-grid {
  display: flex;
  align-items: center;
  /*! flex-wrap: wrap; */
  gap: 18px 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(67, 56, 255, 0.1);
}

.hero-feature-item {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-align: left;
  cursor: default;
  transition: transform 0.25s ease;
}

.hero-feature-item:hover {
  transform: translateY(-2px);
}

.feature-icon-chip {
  width: 21px;
  height: 21px;
  min-width: 21px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  background: #2eaa5b;
  color: #ffffff;
  border: none;
  box-shadow: none;
}

.feature-icon-chip i {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.feature-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.35;
  text-align: left;
  margin: 0;
  white-space: nowrap;
}

/* Backwards compatibility aliases */

.chip-indigo,
.chip-cyan,
.chip-emerald,
.chip-amber,
.chip-blue,
.chip-teal,
.chip-peach {
  background: #2eaa5b;
  color: #ffffff;
  border: none;
  box-shadow: none;
}

/* Mobile Visual Card */

.hero-mobile-visual {
  margin-top: 36px;
}

.hero-mobile-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(67, 56, 255, 0.12);
  border: 1px solid var(--border);
  background: #ffffff;
}

.hero-laptop-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Overrides */

@media (max-width: 991.98px) {

  .hero-section.hero-scenic-style {
    min-height: auto;
    padding: 70px 0 60px;
  }

  .hero-section.hero-scenic-style .hero-content-col {
    text-align: left !important;
    padding-right: 0;
  }

  .hero-section.hero-scenic-style .hero-title {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-section.hero-scenic-style .hero-text {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-section.hero-scenic-style .hero-btns {
    justify-content: flex-start;
  }

  .hero-scenic-bg {
    background-position: center top;
  }

  .hero-scenic-overlay {
    background: rgba(248, 251, 255, 0.95);
  }

  .hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .hero-feature-item {
    justify-content: flex-start;
  }

}

@media (max-width: 575.98px) {

  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-feature-item {
    justify-content: flex-start;
  }

  .feature-label {
    font-size: 12px;
    white-space: normal;
  }

  .hero-scenic-style .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    justify-content: center;
    text-align: center;
  }

}

/*==================================================
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(22, 137, 200, 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: 10px 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-box .cta-buttons .header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-box .cta-buttons .cta-btn-call {
  background: #ffffff !important;
  color: var(--primary) !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.cta-box .cta-buttons .cta-btn-call i {
  color: var(--primary) !important;
  font-size: 18px;
  transition: transform 0.25s ease;
}

.cta-box .cta-buttons .cta-btn-call:hover {
  background: var(--menu-active) !important;
  color: var(--primary-dark) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22) !important;
}

.cta-box .cta-buttons .cta-btn-call:hover i {
  transform: scale(1.15);
}

.cta-box .cta-buttons .cta-btn-consult {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
}

.cta-box .cta-buttons .cta-btn-consult:hover {
  background: #ffffff !important;
  color: var(--primary) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2) !important;
}

.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(22, 137, 200, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(10, 37, 64, 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(22, 137, 200, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(22, 137, 200, 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(22, 137, 200, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(10, 37, 64, 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(22, 137, 200, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(22, 137, 200, 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(22, 137, 200, 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: 85px 0 50px;
  background: linear-gradient(180deg, #eaf4fa 0%, #f4f9fd 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.page-banner p {
  max-width: 680px;
  margin: 0 auto 22px;
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.7;
}

.page-banner nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.04);
  font-size: 14px;
}

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

.page-banner nav a:hover {
  color: var(--primary-dark);
}

.page-banner nav span {
  color: var(--text-muted);
  font-weight: 500;
}
/*==================================
    ABOUT
==================================*/

.about-area {
  background: var(--white);
  margin-top: 30px;
}

.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(22, 137, 200, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.about-content h2 {
  font-size: 30px;
  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.6;
  margin-bottom: 10px;
}

.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: 13px;
  line-height: 1.7;
  font-weight: 500;
}

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

.about-buttons .header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.about-buttons .header-btn:not(.btn-outline) {
  background: var(--primary) !important;
  color: #ffffff !important;
  border: 2px solid var(--primary) !important;
  box-shadow: 0 8px 22px rgba(22, 137, 200, 0.28) !important;
}

.about-buttons .header-btn:not(.btn-outline):hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 137, 200, 0.38) !important;
}

.about-buttons .btn-outline,
.about-buttons .header-btn.btn-outline {
  background: #ffffff !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
  box-shadow: 0 4px 14px rgba(22, 137, 200, 0.12) !important;
}

.about-buttons .btn-outline i,
.about-buttons .header-btn.btn-outline i {
  color: var(--primary) !important;
  font-size: 19px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.about-buttons .btn-outline:hover,
.about-buttons .header-btn.btn-outline:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(22, 137, 200, 0.28) !important;
}

.about-buttons .btn-outline:hover i,
.about-buttons .header-btn.btn-outline:hover i {
  color: #ffffff !important;
  transform: scale(1.15);
}

@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, #061828 0%, #0A2540 55%, #0F3B66 100%);
}

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

  background: radial-gradient(
      circle at 20% 20%,
      rgba(22, 137, 200, 0.22),
      transparent 30%
    ),
    radial-gradient(circle at 80% 60%, rgba(22, 137, 200, 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: #7dd3fc;
  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(22, 137, 200, 0.7);
  box-shadow: 0 20px 45px rgba(22, 137, 200, 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(22, 137, 200, 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(22, 137, 200, 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(22, 137, 200, 0.08);

  border: 1px solid rgba(22, 137, 200, 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(22, 137, 200, 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(10, 37, 64, 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), #38bdf8, 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(10, 37, 64, 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(22, 137, 200, 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(10, 37, 64, 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(10, 37, 64, 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(10, 37, 64, 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-area {
    position: relative;
    background: var(--white);
}

.blog-list-heading {
    margin-bottom: 27px;
}

.blog-list-heading h2 {
    margin: 0;
    color: var(--heading);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.7px;
}

.blog-list-heading p {
    margin: 8px 0 0;
    color: var(--text);
    font-size: 14px;
}

.blog-list-heading p strong {
    color: var(--heading);
}

.blog-category-wrapper {
    position: relative;
    margin-bottom: 34px;
}

.blog-category-list {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    padding: 0 72px 5px 0;
    scrollbar-width: none;
    white-space: nowrap;
}

.blog-category-list::-webkit-scrollbar {
    display: none;
}

.blog-category-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 21px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    color: var(--heading);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.blog-category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.blog-category-btn.active {
    border-color: transparent;
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 7px 18px rgba(22, 137, 200, 0.14);
}

.blog-category-arrows {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(-50%);
}

.blog-category-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #dbeaff;
    color: var(--white);
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition);
}

.blog-category-arrow:last-child {
    background: var(--primary);
}

.blog-category-arrow:hover {
    transform: scale(1.06);
}

.blog-category-arrow i {
    font-size: 19px;
}


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

.blog-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--white);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
}

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

.blog-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.blog-category {
    position: absolute;
    left: 14px;
    bottom: 13px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--heading);
    font-size: 11px;
    font-weight: 600;
}

.blog-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 24px;
    margin-bottom: 13px;
    color: var(--text-light);
    font-size: 11px;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.blog-date i {
    color: var(--primary);
    font-size: 14px;
}

.blog-author {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 100px;
    overflow: hidden;
}

.blog-author img {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-card-content h3 {
    margin: 0 0 12px;
    color: var(--heading);
    font-size: 17px;
    line-height: 1.38;
    font-weight: 600;
}

.blog-card-content p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.65;
}

.blog-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 23px;
    color: var(--heading);
    font-size: 14px;
    font-weight: 600;
}

.blog-read-btn i {
    font-size: 17px;
    transition: transform var(--transition);
}

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


/* =========================================================
   NO RESULTS
   ========================================================= */

.blog-no-results {
    padding: 70px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--section);
    text-align: center;
}

.blog-no-results > i {
    color: var(--primary);
    font-size: 45px;
}

.blog-no-results h3 {
    margin: 14px 0 8px;
    color: var(--heading);
    font-size: 22px;
    font-weight: 600;
}

.blog-no-results p {
    margin: 0 0 20px;
    color: var(--text);
    font-size: 15px;
}

.blog-no-results a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 23px;
    border-radius: 24px;
    background: var(--gradient);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}


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

@media (max-width: 1199px) {

    .blog-card-image {
        height: 200px;
    }

}

@media (max-width: 991px) {

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

    .blog-category-arrows {
        display: none;
    }

    .blog-category-list {
        padding-right: 0;
    }

    .blog-card-image {
        height: 210px;
    }

}

@media (max-width: 767px) {

    .blog-list-heading {
        margin-bottom: 22px;
    }

    .blog-list-heading h2 {
        font-size: 27px;
    }

    .blog-category-wrapper {
        margin-bottom: 27px;
    }

    .blog-category-list {
        gap: 9px;
    }

    .blog-category-btn {
        min-height: 38px;
        padding: 0 17px;
        font-size: 13px;
    }

    .blog-card-image {
        height: 220px;
    }

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

}

@media (max-width: 480px) {

    .blog-list-heading h2 {
        font-size: 25px;
    }

    .blog-card-image {
        height: 205px;
    }

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

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

}
.blog-results-loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
/*==================================
BLOG DETAILS
==================================*/

.blog-details-area {
  background: var(--section);
  margin-top: 60px;
}

.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: 15px;
  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: 10px;
}

.blog-details-excerpt {
  font-size: 20px;
  color: var(--text);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 10px;
}

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

.blog-details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

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

/*==================================
Blog Details 80 / 20 Layout
==================================*/

.blog-details-body {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  width: 100%;
}

.blog-main-content {
  width: 100%;
  min-width: 0;
}

.blog-main-content .blog-content {
  width: 100%;
  min-width: 0;
}

.blog-sidebar-column {
  width: 100%;
  min-width: 0;
}

.blog-sidebar-column .blog-sidebar {
  width: 100%;
}

/*==================================
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: 12px;
  font-size: 16px !important;
}

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

/*==================================
Blog Table Of Contents
==================================*/

.blog-toc {
  margin-bottom: 28px;
  border: 1px solid #d9dee3;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.blog-toc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.blog-toc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
}

.blog-toc-toggle {
  font-size: 22px;
  color: var(--heading);
  line-height: 1;
}

.blog-toc-body {
  border-top: 1px solid #d9dee3;
  padding: 18px 22px 22px;
}

.blog-toc:not(.is-open) .blog-toc-body {
  display: none;
}

.blog-toc-list {
  margin: 0;
  padding-left: 22px;
}

.blog-toc-list li {
  margin-bottom: 10px;
  color: #697a8d;
  font-size: 16px;
  line-height: 1.6;
}

.blog-toc-list li:last-child {
  margin-bottom: 0;
}

.blog-toc-list a {
  color: #697a8d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-toc-list a:hover {
  color: var(--primary);
}

/*==================================
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;
  width: 100%;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 15px;
  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;
  border: 1px solid var(--border);
  padding: 5px;
  border-radius: 5px;
}

.recent-post:hover {
  background: #f8faff;
}

.recent-post:last-child {
  margin-bottom: 0;
}

.recent-post img {
  width: 120px;
  /* height: 80px; */
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  max-width: unset !important;
}

.recent-post h6 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.recent-post h6 a {
  color: var(--heading);
  transition: 0.3s;
  text-decoration: none;
}

.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: 1199px) {
  .blog-details-body {
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    gap: 25px;
  }

  .sidebar-widget {
    padding: 24px;
  }

  .sidebar-widget h4 {
    font-size: 21px;
  }

  .recent-post {
    gap: 10px;
  }

  .recent-post img {
    width: 75px;
    height: 65px;
  }

  .recent-post h6 {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .blog-details-card {
    padding: 30px;
    margin-bottom: 30px;
  }

  .blog-details-title {
    font-size: 34px;
  }

  .blog-details-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-sidebar-column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .blog-details-card {
    padding: 22px;
  }

  .blog-details-title {
    font-size: 28px;
  }

  .blog-details-excerpt {
    font-size: 17px;
  }

  .blog-details-meta {
    gap: 15px;
  }

  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-details-body {
    gap: 25px;
  }

  .sidebar-widget {
    padding: 22px;
  }
}

/*==================================
Search Results
==================================*/

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

/*==================================
Author Hover
==================================*/

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

/*==================================
Comments
==================================*/

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

/*==================================
Comments List
==================================*/

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

@media (max-width: 576px) {
  .blog-comment-header {
    display: block;
  }

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

  .blog-comment-item {
    padding: 16px;
  }
}
/* =========================================================
   LOCATION SEO PAGE
========================================================= */

.location-local-seo-section {
    width: 100%;
    background: #f5faff;
}

.location-local-seo-title {
    max-width: 1250px;
    margin: 0 auto 45px;
}

.location-local-seo-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #257ebf;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.location-local-seo-subtitle-line {
    width: 18px;
    height: 2px;
    background: #257ebf;
}

.location-local-seo-title h2 {
    margin: 0 0 12px;
    color: #071f38;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.location-local-seo-title h2 span {
    color: #168ac7;
}

.location-local-seo-title p {
    max-width: 1250px;
    margin: 0 auto;
    color: #173b59;
    font-size: 16px;
    line-height: 1.7;
}

.location-local-seo-card {
    height: 100%;
    min-height: 172px;
    padding: 27px 28px;
    background: #ffffff;
    border: 1px solid #d7e5f1;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-local-seo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 126, 191, 0.10);
}

.location-local-seo-card h3 {
    margin: 0 0 10px;
    color: #071f38;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.location-local-seo-card p {
    margin: 0;
    color: #173b59;
    font-size: 16px;
    line-height: 1.75;
}

@media (max-width: 991px) {

    .location-local-seo-title h2 {
        font-size: 36px;
    }

}

@media (max-width: 767px) {

    .location-local-seo-title {
        margin-bottom: 30px;
    }

    .location-local-seo-title h2 {
        font-size: 30px;
    }

    .location-local-seo-title p {
        font-size: 15px;
    }

    .location-local-seo-card {
        min-height: 0;
        padding: 23px 20px;
    }

}

/* 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: var(--primary);
  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 32px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: #ffffff;
  color: var(--secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.05);
  transition: all 0.25s ease;
}

.services-view-all-btn:hover {
  background: var(--primary);
  color: #ffffff !important;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 137, 200, 0.25);
  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: var(--text);
  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: var(--primary);
  margin: 12px 0 4px;
}

.result-card h5 {
  color: var(--text);
}

.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: var(--gradient);
  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: var(--primary);
  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: var(--text);
}

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

/* Process */

.process-card > span {
  display: block;
  color: var(--primary);
  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: var(--primary);
}

.faq-answer {
  padding: 0 24px 0px;
  color: var(--text);
  line-height: 1.8;
}

/* Pricing */

.pricing-card {
  position: relative;
  height: 100%;
  padding: 34px 30px 30px;
  border: 1px solid var(--gradient);
  border-radius: 16px;
  background: var(--gradient);
  box-shadow: 0 8px 40px rgba(7, 11, 244, 0.14);
  text-align: center;
  transition: var(--transition);
}

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

.popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  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: var(--primary);
  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: var(--text);
  font-size: 14px;
}

.pricing-details-btn {
  display: block;
  text-align: center;
  margin-top: 12px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 10px;
  color: var(--primary);
}

/* CTA */

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

.location-cta-box {
  background: var(--gradient);
  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: var(--primary);
  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-area {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.service-list-heading {
    margin-bottom: 30px;
}

.service-list-heading h2 {
    margin: 0 0 8px;
    color: var(--heading);
    font-size: 34px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: -0.4px;
}

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

.service-list-heading p strong {
    color: var(--heading);
    font-weight: 600;
}

.service-category-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 14px;
    margin-bottom: 40px;
}

.service-category-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    padding: 3px 2px 8px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.service-category-list::-webkit-scrollbar {
    display: none;
}

.service-category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 44px;
    padding: 0 20px;
    border: 1px solid var(--border);
    border-radius: 50px;
    outline: none;
    background: var(--white);
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition);
}

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

.service-category-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.service-category-arrows {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.service-category-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    outline: none;
    background: var(--white);
    color: var(--heading);
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition);
}

.service-category-arrow:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

#service-results {
    transition: opacity 0.2s ease;
}

#service-results.service-results-loading {
    opacity: 0.45;
    pointer-events: none;
}

.services-item {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.services-item:hover {
    border-color: rgba(37, 126, 191, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.services-item-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.services-item-image {
    position: relative;
    width: 100%;
    height: 225px;
    overflow: hidden;
    background: var(--section);
}

.services-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.services-item:hover .services-item-image img {
    transform: scale(1.05);
}

.services-item-category {
    position: absolute;
    left: 15px;
    bottom: 15px;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 30px);
    min-height: 30px;
    padding: 7px 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    background: var(--white);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.services-item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 190px;
    padding: 22px;
}

.services-item-content h3 {
    margin: 0 0 12px;
    color: var(--heading);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    transition: color var(--transition);
}

.services-item:hover .services-item-content h3 {
    color: var(--primary);
}

.services-item-content p {
    margin: 0 0 20px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.services-item-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: auto;
    color: var(--primary);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.services-item-btn i {
    font-size: 19px;
    line-height: 1;
    transition: transform var(--transition);
}

.services-item:hover .services-item-btn i {
    transform: translateX(4px);
}

.services-empty {
    width: 100%;
    padding: 65px 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--section);
    text-align: center;
}

.services-empty > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 27px;
}

.services-empty h3 {
    margin: 0 0 8px;
    color: var(--heading);
    font-size: 23px;
    line-height: 1.4;
    font-weight: 600;
}

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

@media (max-width: 1199px) {
    .service-list-heading h2 {
        font-size: 32px;
    }

    .services-item-image {
        height: 215px;
    }

    .services-item-content {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .service-list-area {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .service-list-heading {
        margin-bottom: 25px;
    }

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

    .service-category-wrapper {
        margin-bottom: 32px;
    }

    .services-item-image {
        height: 220px;
    }

    .services-item-content h3 {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .service-list-area {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .service-list-heading {
        margin-bottom: 22px;
    }

    .service-list-heading h2 {
        font-size: 27px;
        letter-spacing: 0;
    }

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

    .service-category-wrapper {
        gap: 10px;
        margin-bottom: 28px;
    }

    .service-category-list {
        gap: 8px;
        padding-bottom: 6px;
    }

    .service-category-btn {
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
    }

    .service-category-arrows {
        gap: 5px;
    }

    .service-category-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .services-item-image {
        height: 210px;
    }

    .services-item-content {
        min-height: 175px;
        padding: 18px;
    }

    .services-item-content h3 {
        font-size: 18px;
    }

    .services-item-content p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .services-item-category {
        left: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
    }

    .services-empty {
        padding: 50px 20px;
    }
}

@media (max-width: 575px) {
    .service-category-arrows {
        display: none;
    }

    .service-category-wrapper {
        display: block;
    }

    .service-category-list {
        width: 100%;
    }

    .services-item-image {
        height: 215px;
    }
}

@media (max-width: 480px) {
    .service-list-area {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .service-list-heading h2 {
        font-size: 24px;
    }

    .services-item-image {
        height: 200px;
    }

    .services-item-content {
        min-height: 165px;
        padding: 16px;
    }

    .services-item-content h3 {
        font-size: 17px;
    }

    .services-item-category {
        left: 10px;
        bottom: 10px;
        padding: 6px 10px;
        font-size: 11px;
    }

    .services-empty {
        padding: 45px 15px;
    }

    .services-empty h3 {
        font-size: 20px;
    }
}
/* =========================================================
   SERVICE HERO
========================================================= */

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

  background: radial-gradient(
      circle at 85% 20%,
      rgba(22, 137, 200, 0.1),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--white) 0%,
      var(--white) 62%,
      var(--section) 100%
    );
  margin: 40px 0;
}

/* =========================================================
   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 h1 .gradient-part {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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 12px;
}

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

  color: var(--text);

  font-size: 12px;
  /* font-weight: 500; */
}

.service-hero-point i {
  color: #34a853;

  font-size: 30px;
}

/* =========================================================
   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(22, 137, 200, 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(22, 137, 200, 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 80px;

  width: 80px;
  height: 80px;

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

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

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

  font-size: 50px;

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

.seo-process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.seo-process-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    column-gap: 40px;
    min-height: 150px;
    padding-bottom: 45px;
}

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

.seo-process-marker {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary);
    border-radius: 50%;
    background: var(--white);
}

.seo-process-marker span {
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.seo-process-item:not(:last-child) .seo-process-marker::after {
    content: "";
    position: absolute;
    top: 64px;
    left: 50%;
    width: 2px;
    height: calc(100% + 45px);
    transform: translateX(-50%);
    background: repeating-linear-gradient(
        to bottom,
        var(--primary) 0,
        var(--primary) 9px,
        transparent 9px,
        transparent 16px
    );
    z-index: -1;
}

.seo-process-content {
    padding: 3px 0 10px;
}

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

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

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

.seo-process-item.active .seo-process-marker {
    background: var(--gradient);
    border-color: transparent;
    box-shadow:
        0 0 0 8px rgba(22, 137, 200, 0.1),
        0 10px 25px rgba(22, 137, 200, 0.2);
}

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

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

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

    .seo-process-item {
        grid-template-columns: 58px 1fr;
        column-gap: 20px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .seo-process-marker {
        width: 48px;
        height: 48px;
    }

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

    .seo-process-item:not(:last-child) .seo-process-marker::after {
        top: 48px;
        height: calc(100% + 40px);
    }

    .seo-process-content {
        padding-top: 2px;
    }

    .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-item {
        grid-template-columns: 48px 1fr;
        column-gap: 16px;
    }

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

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

    .seo-process-item:not(:last-child) .seo-process-marker::after {
        top: 42px;
    }

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

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

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

/*==================================
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(--gradient);
  box-shadow: 0 10px 35px rgba(10, 37, 64, 0.07);
  text-align: center;
  transition: var(--transition);
}

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

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

.pricing-card-header h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.pricing-card-header p {
  max-width: 280px;
  margin: 0 auto;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.pricing-price-label {
  margin-top: 12px;
  color: #fff;
  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: #fff;
  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 {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(10, 37, 64, 0.04);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 137, 200, 0.4);
  box-shadow: 0 16px 36px rgba(22, 137, 200, 0.12);
}

.service-card-header {
  /* display: flex; */
  align-items: center;
  gap: 16px;
  width: 100%;
}

.service-card-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 17px;
  color: var(--primary);
  box-shadow: 0 6px 16px rgba(22, 137, 200, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 35px;
}

.service-card:hover .service-card-icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.05);
}

.service-card-icon i {
  font-size: 32px;
  line-height: 1;
}

.service-card-header h3 {
  flex: 1;
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--heading);
}

.service-card-content {
  flex: 1;
  width: 100%;
  padding-top: 15px;
}

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

.service-card-footer {
  display: flex;
  justify-content: left;
  width: 100%;
  padding-top: 15px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  background: #e2f1f8;
  border: 1px solid #bee1f5;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.service-card-link i {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.service-card-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 137, 200, 0.25);
}

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

@media (max-width: 991px) {
  .service-card {
    min-height: 290px;
  }
}

@media (max-width: 767px) {
  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-card-header {
    gap: 14px;
  }

  .service-card-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }

  .service-card-icon i {
    font-size: 29px;
  }

  .service-card-header h3 {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .service-card {
    padding: 22px 20px;
  }
}

/*==================================
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: 12px 26px;

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

  color: #ffffff !important;
  background: var(--primary);

  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 6px 18px rgba(22, 137, 200, 0.22);
  transition: all 0.25s ease;
}

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

.how-work-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 137, 200, 0.32);
}

.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 var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(10, 37, 64, 0.04);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 137, 200, 0.4);
  box-shadow: 0 16px 36px rgba(22, 137, 200, 0.12);
}

/* Image */
.industry-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.industry-card:hover .industry-card-image img {
  transform: scale(1.05);
}

/* Content */
.industry-card-content {
  padding: 15px;
}

.industry-card-content h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--heading);
}

.industry-short-description {
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.6;
  min-height: 72px;
  font-weight: 400;
}

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

/* Learn More */
.industry-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  background: #e2f1f8;
  border: 1px solid #bee1f5;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.industry-learn-more i {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.industry-learn-more:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(22, 137, 200, 0.25);
}

.industry-learn-more:hover i {
  transform: translateX(4px);
}

/* 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%;
  background: #d9eaf5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.industry-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--primary);
}

/* 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 32px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  color: var(--secondary);
  background: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.05);
  transition: all 0.25s ease;
}

.industries-view-all-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 137, 200, 0.25);
}

/* 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(22, 137, 200, 0.35);
  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(22, 137, 200, 0.08),
    rgba(10, 37, 64, 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: 20px;

  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: 13px 28px;

  border-radius: 50px;

  background: var(--primary);

  color: #ffffff !important;

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

  text-decoration: none;

  box-shadow: 0 8px 24px rgba(22, 137, 200, 0.28);

  transition: all 0.25s ease;
}

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

  transition: transform 0.25s ease;
}

.ai-productivity-btn:hover {
  background: var(--primary-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 137, 200, 0.38);
}

.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 {
    width: 100%;
}

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

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

.tools-section .section-title p {
    max-width: 700px;
    margin: 0 auto;
}

.tool-card {
    height: 100%;
    min-height: 150px;
    padding: 25px 15px 22px;
    background: #ffffff;
    border: 1px solid #dce8f1;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: #c7ddeb;
    box-shadow: 0 12px 30px rgba(37, 126, 191, 0.10);
}

.tool-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon img {
    width: 100%;
    /* height: 52px; */
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.tool-card h5 {
    margin: 0;
    color: #071f38;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

@media (max-width: 1199px) {

    .tool-card {
        min-height: 145px;
    }

}

@media (max-width: 767px) {

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

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

    .tool-card {
        min-height: 135px;
        padding: 20px 12px;
    }

    .tool-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 12px;
    }

    .tool-icon img {
        width: 48px;
        /* height: 48px; */
    }

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

  letter-spacing: -1.5px;
}

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

  margin: 0;

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

  font-size: 16.5px;

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

  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: 13.5px;

  font-weight: 600;
}

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

.contact-input {
  width: 100%;

  min-height: 48px;

  padding: 11px 16px;

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

  border-radius: 12px;

  background: var(--white);

  color: var(--secondary);

  font-size: 14.5px;

  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(22, 137, 200, 0.15);

  outline: none;
}

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

  resize: vertical;
}

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

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

  min-height: 50px;

  margin-top: 8px;

  border: 0;

  border-radius: 50px;

  background: var(--primary);

  color: #ffffff !important;

  font-size: 15px;

  font-weight: 600;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  cursor: pointer;

  box-shadow: 0 8px 22px rgba(22, 137, 200, 0.28);

  transition: all 0.25s ease;
}

.contact-submit-btn i {
  font-size: 20px;
  transition: transform 0.25s ease;
}

.contact-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 137, 200, 0.38);
}

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

/* industry details page */
.industry-hero-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
    padding: 70px 0 70px;
}

.industry-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0px;
    font-size: 15px;
    line-height: 1.5;
    /* position: absolute; */
}

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

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

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

.industry-breadcrumb .current {
    color: var(--text-light);
}

.industry-breadcrumb i {
    font-size: 18px;
    vertical-align: middle;
}

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

.industry-hero-content {
    max-width: 700px;
    padding-right: 35px;
}

.industry-hero-content h1 {
    margin: 0 0 28px;
    color: var(--heading);
    font-size: 60px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -1.8px;
}

.industry-hero-description {
    max-width: 650px;
    margin: 0 0 38px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
}

.industry-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.industry-primary-btn,
.industry-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 34px;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.industry-primary-btn {
    color: var(--white);
    background: var(--gradient);
    box-shadow: 0 12px 28px rgba(22, 137, 200, 0.18);
}

.industry-primary-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(22, 137, 200, 0.24);
}

.industry-secondary-btn {
    color: var(--heading);
    background: var(--white);
    border: 1px solid var(--border);
}

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

.industry-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px 30px;
}

.industry-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--heading);
    font-size: 13px;
    font-weight: 500;
}

.industry-trust-icon {
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #34a853;
    color: var(--white);
}

.industry-trust-icon i {
    font-size: 14px;
    line-height: 1;
}

.industry-hero-image {
    position: relative;
    width: 100%;
    /* max-width: 545px; */
    margin-left: auto;
    overflow: hidden;
    border-radius: 28px;
}

.industry-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.04),
        transparent
    );
}

.industry-hero-image img {
    display: block;
    width: 100%;
    /* height: 475px; */
    object-fit: cover;
}


@media (max-width: 1199px) {

    .industry-hero-content h1 {
        font-size: 52px;
    }

    .industry-hero-content {
        padding-right: 20px;
    }

    .industry-hero-image img {
        /* height: 440px; */
    }

}


@media (max-width: 991px) {

    .industry-hero-section {
        padding: 50px 0 70px;
    }

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

    .industry-hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 45px;
    }

    .industry-hero-content h1 {
        font-size: 46px;
    }

    .industry-hero-image {
        max-width: 100%;
        margin: 0;
    }

}


@media (max-width: 767px) {

    .industry-hero-section {
        padding: 35px 0 55px;
    }

    .industry-breadcrumb {
        margin-bottom: 25px;
        font-size: 14px;
    }

    .industry-hero-content h1 {
        margin-bottom: 20px;
        font-size: 38px;
        letter-spacing: -1px;
    }

    .industry-hero-description {
        margin-bottom: 28px;
        font-size: 15px;
    }

    .industry-hero-buttons {
        align-items: stretch;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .industry-primary-btn,
    .industry-secondary-btn {
        width: 100%;
        min-height: 54px;
    }

    .industry-hero-trust {
        gap: 16px 20px;
    }

    .industry-trust-item {
        font-size: 14px;
    }

    .industry-hero-image {
        border-radius: 22px;
    }

    .industry-hero-image img {
        height: 360px;
    }

}


@media (max-width: 480px) {

    .industry-hero-content h1 {
        font-size: 32px;
    }

    .industry-hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

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

}
.industry-challenges-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.industry-challenges-heading {
    max-width: 900px;
    margin: 0 auto 55px;
}

.industry-challenges-heading h2 {
    margin: 0;
    color: var(--heading);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.8px;
}

.industry-challenges-heading p {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
}

.industry-challenges-grid {
    align-items: stretch;
}

.industry-challenge-card {
    height: 100%;
    /* min-height: 238px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    text-align: center;
    transition: all var(--transition);
}

.industry-challenge-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 14px 35px rgba(22, 137, 200, 0.08);
}

.industry-challenge-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 27px;
    color: var(--primary);
}

.industry-challenge-icon i {
    font-size: 48px;
    line-height: 1;
}

.industry-challenge-card h3 {
    max-width: 180px;
    margin: 0;
    color: var(--heading);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

@media (max-width: 1199px) {

    .industry-challenge-card {
        min-height: 220px;
        padding: 42px 22px 30px;
    }

}

@media (max-width: 991px) {

    .industry-challenges-heading {
        margin-bottom: 45px;
    }

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

    .industry-challenge-card {
        min-height: 215px;
    }

}

@media (max-width: 767px) {

    .industry-challenges-heading {
        padding: 0 15px;
    }

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

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

    .industry-challenge-card {
        min-height: 200px;
        padding: 35px 20px 28px;
    }

    .industry-challenge-icon {
        margin-bottom: 20px;
    }

    .industry-challenge-icon i {
        font-size: 42px;
    }

    .industry-challenge-card h3 {
        font-size: 17px;
    }

}

@media (max-width: 575px) {

    .industry-challenge-card {
        min-height: 180px;
    }

}

/* faqs section */
.faq-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.faq-section-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

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

.faq-section-heading h2 {
    margin: 0;
    color: var(--heading);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 550;
    letter-spacing: -0.8px;
}

.faq-section-heading p {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
}

.faq-list {
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background-color var(--transition);
}

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

.faq-item.active {
    border-color: rgba(22, 137, 200, 0.35);
    background: #f8fcff;
    box-shadow: 0 8px 25px rgba(22, 137, 200, 0.08);
}

.faq-question {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 28px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--heading);
    text-align: left;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
}

.faq-question > span {
    flex: 1;
}

.faq-question > i {
    flex-shrink: 0;
    font-size: 22px;
    color: var(--heading);
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

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

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

.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    opacity: 0;
    transition:
        opacity 0.25s ease,
        padding 0.35s ease;
}

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

.faq-item.active .faq-answer-inner {
    padding: 0 28px 24px;
    opacity: 1;
}

.faq-view-all {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.faq-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 195px;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--white);
    color: var(--heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.faq-view-all-btn:hover {
    color: var(--white);
    border-color: transparent;
    background: var(--gradient);
    box-shadow: 0 10px 25px rgba(22, 137, 200, 0.15);
}


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

@media (max-width: 991px) {

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

    .faq-list {
        max-width: 100%;
    }

}


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

@media (max-width: 767px) {

    .faq-section-heading {
        margin-bottom: 40px;
        padding: 0 15px;
    }

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

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

    .faq-item {
        margin-bottom: 14px;
        border-radius: 14px;
    }

    .faq-question {
        min-height: 68px;
        padding: 18px 20px;
        gap: 15px;
        font-size: 16px;
    }

    .faq-question > i {
        font-size: 20px;
    }

    .faq-answer-inner {
        padding: 0;
        font-size: 15px;
    }

    .faq-item.active .faq-answer-inner {
        padding: 0 20px 22px;
    }

    .faq-view-all {
        margin-top: 35px;
    }

}


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

@media (max-width: 480px) {

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

    .faq-section-heading p {
        font-size: 14px;
    }

    .faq-question {
        padding: 16px 17px;
        font-size: 15px;
    }

    .faq-question > i {
        font-size: 19px;
    }

    .faq-answer-inner {
        padding: 0;
        font-size: 14px;
    }

    .faq-item.active .faq-answer-inner {
        padding: 0 17px 20px;
    }

}
/* =========================================================
   WRITE FOR US
   ========================================================= */

.write-for-us-hero {
    position: relative;
    background: var(--white);
    overflow: hidden;
    margin-top: 50px;
}

.write-for-us-hero-content {
    max-width: 720px;
}

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

.write-for-us-hero-content h1 {
    margin: 0 0 22px;
    color: var(--heading);
    font-size: 48px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -1px;
}

.write-for-us-hero-content p {
    max-width: 680px;
    margin: 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
}


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

.write-for-us-hero .industry-breadcrumb {
    margin-bottom: 55px;
}


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

.write-for-us-hero-image {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.write-for-us-hero-image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 380px;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--section);
}


/* =========================================================
   HERO IMAGE CARD
   ========================================================= */

.write-for-us-image-card {
    display: flex;
    align-items: center;
    gap: 13px;
    position: relative;
    z-index: 2;
    margin: -28px 25px 0;
    padding: 17px 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.write-for-us-image-card > i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--gradient);
    color: var(--white);
    font-size: 23px;
}

.write-for-us-image-card div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.write-for-us-image-card strong {
    color: var(--heading);
    font-size: 14px;
    font-weight: 600;
}

.write-for-us-image-card span {
    color: var(--text);
    font-size: 12px;
    line-height: 1.45;
}


/* =========================================================
   CONTENT
   ========================================================= */
.write-for-us-content-section {
    position: relative;
    background: var(--section);
    overflow: hidden;
}

.write-for-us-content {
    max-width: 100%;
}

.write-for-us-block {
    max-width: 900px;
    margin-bottom: 42px;
}

.write-for-us-block:last-child {
    margin-bottom: 0;
}

.write-for-us-block h2 {
    margin: 0 0 14px;
    color: var(--heading);
    font-size: 26px;
    line-height: 1.35;
    font-weight: 600;
}

.write-for-us-block p {
    margin: 0 0 14px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

.write-for-us-block a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}


/* =========================================================
   LIST
   ========================================================= */

.write-for-us-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.write-for-us-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 22px;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
}

.write-for-us-list li:last-child {
    margin-bottom: 0;
}

.write-for-us-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.write-for-us-list strong {
    color: var(--heading);
    font-weight: 600;
}


/* =========================================================
   TOPICS
   ========================================================= */

.write-for-us-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 40px;
    margin-top: 18px;
}

.write-for-us-topics span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

.write-for-us-topics i {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 18px;
}


/* =========================================================
   CONTRIBUTOR FORM
   ========================================================= */

.contributor-form-wrapper {
    position: sticky;
    top: 110px;
    padding: 35px;
    background: var(--white);
    border: 1px solid rgba(37, 126, 191, 0.12);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(37, 126, 191, 0.10);
}

.contributor-form-header {
    margin-bottom: 28px;
}

.contributor-form-header .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.contributor-form-header h2 {
    margin: 0 0 12px;
    color: var(--heading);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}

.contributor-form-header p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

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

.floating-field {
    position: relative;
}

.floating-field .form-control {
    width: 100%;
    height: 56px;
    padding: 14px 15px;
    color: var(--heading);
    background: var(--white);
    border: 1px solid rgba(37, 126, 191, 0.16);
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.floating-field .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 126, 191, 0.10);
}

.floating-field label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    margin: 0;
    padding: 0 5px;
    color: var(--text);
    background: var(--white);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    pointer-events: none;
    transition: all 0.2s ease;
}

.floating-field .form-control:focus + label,
.floating-field .form-control:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
}

.floating-field select.form-control {
    cursor: pointer;
    appearance: auto;
}

.floating-field select.form-control + label {
    top: 0;
    transform: translateY(-50%);
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
}

.floating-field select.form-control:focus + label {
    color: var(--primary);
}

.contributor-form-terms {
    margin: 3px 0 22px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
}

.contributor-form-terms a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.contributor-submit-btn {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--white);
    background: var(--primary);
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contributor-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 126, 191, 0.20);
}

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


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

.write-for-us-submit-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.write-for-us-submit-content {
    text-align: center;
}

.write-for-us-submit-content h2 {
    margin: 0 0 12px;
    color: var(--heading);
    font-size: 30px;
    line-height: 1.35;
    font-weight: 600;
}

.write-for-us-submit-content p {
    margin: 0 0 24px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}


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

@media (max-width: 991px) {

    .contributor-form-wrapper {
        position: static;
        top: auto;
    }

}

@media (max-width: 767px) {

    .write-for-us-block {
        margin-bottom: 35px;
    }

    .write-for-us-topics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contributor-form-wrapper {
        padding: 28px 24px;
    }

    .contributor-form-header h2 {
        font-size: 25px;
    }

    .write-for-us-submit-content h2 {
        font-size: 26px;
    }

}

@media (max-width: 575px) {

    .contributor-form-wrapper {
        padding: 25px 20px;
        border-radius: 16px;
    }

    .contributor-form-header h2 {
        font-size: 24px;
    }

    .write-for-us-block h2 {
        font-size: 23px;
    }

    .write-for-us-block p,
    .write-for-us-submit-content p {
        font-size: 15px;
    }

}


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

.write-for-us-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 28px;
    background: var(--gradient);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(22, 137, 200, 0.15);
    transition: all var(--transition);
}

.write-for-us-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(22, 137, 200, 0.22);
}

.write-for-us-btn i {
    font-size: 19px;
    transition: transform var(--transition);
}

.write-for-us-btn:hover i {
    transform: translateX(4px);
}


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

@media (max-width: 991px) {

    .write-for-us-hero {
        margin-top: 30px;
    }

    .write-for-us-hero .industry-breadcrumb {
        margin-bottom: 40px;
    }

    .write-for-us-hero-content {
        max-width: 100%;
    }

    .write-for-us-hero-content h1 {
        font-size: 42px;
    }

    .write-for-us-hero-image {
        max-width: 100%;
        margin: 0;
    }

    .write-for-us-hero-image img {
        min-height: 320px;
    }

    .write-for-us-block {
        max-width: 100%;
    }

}


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

@media (max-width: 767px) {

    .write-for-us-hero {
        margin-top: 20px;
    }

    .write-for-us-hero .industry-breadcrumb {
        margin-bottom: 30px;
    }

    .write-for-us-hero-content h1 {
        font-size: 34px;
        letter-spacing: -0.5px;
    }

    .write-for-us-hero-content p {
        font-size: 15px;
    }

    .write-for-us-hero-image img {
        min-height: 280px;
        border-radius: 20px;
    }

    .write-for-us-image-card {
        margin: -22px 15px 0;
    }

    .write-for-us-block {
        margin-bottom: 34px;
    }

    .write-for-us-block h2 {
        font-size: 22px;
    }

    .write-for-us-block p,
    .write-for-us-list li {
        font-size: 15px;
    }

    .write-for-us-topics {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .write-for-us-submit-content h2 {
        font-size: 25px;
    }

}


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

@media (max-width: 480px) {

    .write-for-us-hero-content h1 {
        font-size: 30px;
    }

    .write-for-us-label {
        font-size: 12px;
    }

    .write-for-us-hero-image img {
        min-height: 240px;
        border-radius: 18px;
    }

    .write-for-us-image-card {
        padding: 14px;
    }

    .write-for-us-submit-content h2 {
        font-size: 23px;
    }

}

/* =========================================================
   MODERN UI/UX ENHANCEMENTS & SMOOTHNESS
   ========================================================= */

html {
  scroll-behavior: smooth;
}

/* Page Preloader */
.page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.preloader-spinner {
  position: relative;
  width: 52px;
  height: 52px;
}

.spinner-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(22, 137, 200, 0.12);
  border-top-color: var(--primary);
  animation: preloaderSpin 0.9s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

@keyframes preloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.brand-text strong {
  color: var(--primary);
}

.preloader-bar {
  width: 120px;
  height: 3px;
  border-radius: 99px;
  background: #eef2ff;
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  border-radius: 99px;
  background: var(--gradient-accent);
  animation: preloaderBar 1.2s ease-in-out infinite alternate;
}

@keyframes preloaderBar {
  0% { left: 0%; width: 25%; }
  100% { left: 75%; width: 25%; }
}

/* Scroll Reading Progress Bar */
.scroll-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #1689c8 0%, #38bdf8 60%, #0284c7 100%);
  z-index: 100000;
  transition: width 0.08s linear;
}

/* Sticky Header Frosted Glass */
.header-area {
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header-area.is-sticky {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.08);
  border-bottom-color: rgba(232, 236, 255, 0.75);
}

.header-area.is-sticky .header-wrapper {
  height: 66px;
}

.header-area.is-sticky .header-logo img {
  max-height: 42px;
}

/* Header Right Phone & Quote */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.header-phone:hover {
  transform: translateY(-1px);
}

.phone-icon-pulse {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(22, 137, 200, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
}

.phone-icon-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0.6;
  animation: pulseGlow 2.2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.7; }
  60% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

.phone-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  font-weight: 500;
}

.phone-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary);
}

.header-cta-btn {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  gap: 8px !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  background: var(--gradient) !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(22, 137, 200, 0.28) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.header-cta-btn span {
  display: inline-block !important;
  white-space: nowrap !important;
  color: #ffffff !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: 1 !important;
}

.header-cta-btn i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  color: #ffffff !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  transition: transform 0.25s ease !important;
}

.header-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(22, 137, 200, 0.4) !important;
  color: #ffffff !important;
}

.header-cta-btn:hover i {
  transform: translateX(3px) !important;
}

/* Floating Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(22, 137, 200, 0.22);
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 30px rgba(22, 137, 200, 0.35);
}

.back-to-top svg.progress-ring {
  position: absolute;
  inset: 2px;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.12s linear;
}

.back-to-top i {
  position: relative;
  z-index: 2;
  font-size: 22px;
  color: var(--primary);
}

/* Scroll Reveal Animations */
.reveal-element {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   MODERN MOBILE NAVIGATION & DRAWER SYSTEM
   ========================================================= */

body.menu-locked {
  overflow: hidden !important;
  touch-action: none;
}

/* Desktop Header Backdrop Overlay for Mega Menu & Dropdown */
.header-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 37, 64, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99990;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.header-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 991.98px) {
  .header-backdrop {
    display: none !important;
  }
}

/* Mobile Drawer Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Drawer Container */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 86vw;
  height: 100vh;
  background: #ffffff;
  z-index: 999999;
  box-shadow: -10px 0 35px rgba(15, 23, 42, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 !important;
  box-sizing: border-box;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* Mobile Menu Header inside Drawer */
.mobile-menu-header {
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  flex-shrink: 0;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
}

.mobile-menu-logo img {
  height: 38px;
  width: auto;
  max-width: 145px;
  object-fit: contain;
  display: block;
}

.mobile-menu-close-btn {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 10px !important;
  border: 1px solid #bae6fd !important;
  background: #e0f2fe !important;
  color: var(--primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  cursor: pointer !important;
  padding: 0 !important;
  line-height: 1 !important;
  transition: all 0.25s ease !important;
}

.mobile-menu-close-btn:hover {
  background: var(--gradient) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: rotate(90deg);
}

.mobile-menu-close-btn i {
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Body (Smooth Scrollable) */
.mobile-menu-body {
  padding: 16px 16px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Mobile Menu List */
.mobile-menu-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}

.mobile-menu-list > li {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border-bottom: 1px solid rgba(232, 236, 255, 0.55);
}

.mobile-menu-list > li:last-child {
  border-bottom: none;
}

/* Standard Top-Level Menu Items (Both links and dropdown toggles) */
.mobile-menu-list > li > a,
.mobile-dropdown-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  width: 100% !important;
  min-height: 48px !important;
  padding: 11px 12px !important;
  border-radius: 10px !important;
  color: var(--secondary) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

/* Unified Icon Column Alignment */
.mobile-menu-list > li > a i,
.mobile-dropdown-toggle .mobile-nav-item-title i {
  font-size: 19px !important;
  width: 22px !important;
  text-align: center !important;
  flex-shrink: 0 !important;
  color: var(--primary) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mobile-dropdown-toggle .mobile-nav-item-title {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 1 !important;
}

/* Chevron indicator pushed cleanly to far right */
.mobile-dropdown-toggle .toggle-icon {
  margin-left: auto !important;
  font-size: 18px !important;
  color: var(--text-muted) !important;
  transition: transform 0.25s ease !important;
  flex-shrink: 0 !important;
  width: auto !important;
}

/* Active & Hover States */
.mobile-menu-list > li > a:hover,
.mobile-menu-list > li > a.active,
.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle.active,
.mobile-dropdown.active > .mobile-dropdown-toggle,
.mobile-dropdown.open > .mobile-dropdown-toggle {
  background: #e2f1f8 !important;
  color: #0f6ca8 !important;
  font-weight: 600 !important;
}

.mobile-dropdown.open > .mobile-dropdown-toggle .toggle-icon {
  transform: rotate(180deg) !important;
  color: #0f6ca8 !important;
}

/* Dropdown Sub-menu Accordion */
.mobile-dropdown-menu {
  display: none;
  padding: 6px 0 10px 14px;
  margin-left: 10px;
  border-left: 2px solid rgba(22, 137, 200, 0.25);
}

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

.mobile-subcategory {
  margin-bottom: 6px;
}

.mobile-subcategory:last-child {
  margin-bottom: 0;
}

.mobile-subcategory-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 9px 12px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: var(--heading) !important;
  background: #f8fcfe !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  text-align: left !important;
}

.mobile-subcategory-toggle:hover,
.mobile-subcategory-toggle.active,
.mobile-subcategory.active > .mobile-subcategory-toggle,
.mobile-subcategory.open > .mobile-subcategory-toggle {
  background: #e0f2fe !important;
  color: var(--primary-dark) !important;
  border-color: #bae6fd !important;
}

.mobile-subcategory-toggle .sub-toggle-icon {
  font-size: 16px !important;
  color: var(--text-muted) !important;
  transition: transform 0.25s ease !important;
}

.mobile-subcategory.open > .mobile-subcategory-toggle .sub-toggle-icon {
  transform: rotate(180deg) !important;
  color: var(--primary) !important;
}

.mobile-service-list {
  display: none;
  padding: 4px 0 4px 8px;
}

.mobile-subcategory.open > .mobile-service-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-service-list a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  font-size: 13px !important;
  padding: 7px 10px !important;
  color: var(--text) !important;
  font-weight: 400 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
  border: none !important;
}

.mobile-service-list a i {
  font-size: 14px !important;
  width: 14px !important;
  color: var(--primary) !important;
  flex-shrink: 0 !important;
}

.mobile-service-list a:hover {
  background: #f0f4ff !important;
  color: var(--primary) !important;
  transform: translateX(3px);
}

.mobile-service-list a.active {
  background: #e0f2fe !important;
  color: var(--primary-dark) !important;
  font-weight: 600 !important;
  border-left: 3px solid var(--primary) !important;
  padding-left: 10px !important;
}

.mobile-service-list a.active i {
  color: var(--primary-dark) !important;
}

/* Mobile Action CTA Buttons */
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.mobile-action-btn:hover {
  transform: translateY(-2px);
}

.btn-call {
  background: #e0f2fe;
  color: var(--primary-dark) !important;
  border: 1px solid #bae6fd;
}

.btn-wa {
  background: #25d366;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-audit {
  background: var(--gradient);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(22, 137, 200, 0.25);
}

.mobile-menu-contact-info {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  margin-top: -4px;
}

/* Mobile Hamburger Toggle Button */
.mobile-menu-toggle {
  display: none;
}

.mobile-menu-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: var(--gradient);
  color: #ffffff !important;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(22, 137, 200, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
  line-height: 1;
}

.mobile-menu-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22, 137, 200, 0.35);
}

.mobile-menu-btn:active {
  transform: scale(0.96);
}

.mobile-menu-btn i {
  font-size: 26px;
  line-height: 1;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Hover Elevation & Smooth Dynamics */
.service-card,
.blog-card,
.industry-card,
.testimonial-card,
.why-us-card,
.contact-form-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.service-card:hover,
.blog-card:hover,
.industry-card:hover,
.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(22, 137, 200, 0.14) !important;
  border-color: rgba(22, 137, 200, 0.25) !important;
}

/* Contact Form Alerts */
.contact-form-status.alert {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
}

.industry-outsourcing-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.industry-outsourcing-card {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    min-height: 500px;
    overflow: hidden;
    border-radius: 28px;
    background: var(--section);
}

.industry-outsourcing-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

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

.industry-outsourcing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
}

.industry-outsourcing-content h2 {
    margin: 0 0 32px;
    color: var(--heading);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.8px;
}

.industry-outsourcing-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.industry-outsourcing-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--heading);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.industry-outsourcing-check {
    width: 23px;
    height: 23px;
    min-width: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #34a853;
    color: var(--white);
}

.industry-outsourcing-check i {
    font-size: 15px;
    line-height: 1;
}


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

@media (max-width: 991px) {

    .industry-outsourcing-card {
        grid-template-columns: 1fr 1fr;
        min-height: 440px;
    }

    .industry-outsourcing-image {
        min-height: 440px;
    }

    .industry-outsourcing-content {
        padding: 45px 40px;
    }

    .industry-outsourcing-content h2 {
        font-size: 34px;
        margin-bottom: 28px;
    }

    .industry-outsourcing-list {
        gap: 15px;
    }

    .industry-outsourcing-list li {
        font-size: 15px;
    }

}


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

@media (max-width: 767px) {

    .industry-outsourcing-card {
        display: flex;
        flex-direction: column;
        min-height: auto;
        border-radius: 22px;
    }

    .industry-outsourcing-image {
        min-height: 300px;
        height: 300px;
    }

    .industry-outsourcing-content {
        padding: 40px 25px;
    }

    .industry-outsourcing-content h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .industry-outsourcing-list {
        gap: 14px;
    }

    .industry-outsourcing-list li {
        font-size: 15px;
    }

}


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

@media (max-width: 480px) {

    .industry-outsourcing-image {
        height: 250px;
        min-height: 250px;
    }

    .industry-outsourcing-content {
        padding: 32px 20px;
    }

    .industry-outsourcing-content h2 {
        font-size: 26px;
    }

}
/* blog index page */
.blog-hero-section {
    position: relative;
    padding: 100px 0 85px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(22, 137, 200, 0.08),
            transparent 38%
        ),
        var(--white);
    overflow: hidden;
}

.blog-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

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

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

.blog-hero-breadcrumb span:first-of-type {
    color: var(--text-light);
    font-size: 20px;
    line-height: 1;
}

.blog-hero-row {
    align-items: center !important;
}

.blog-hero-content {
    max-width: 780px;
    padding-right: 30px;
}

.blog-hero-content h1 {
    margin: 0;
    color: var(--heading);
    font-size: 56px;
    line-height: 1.16;
    font-weight: 750;
    letter-spacing: -1.8px;
}

.blog-hero-content h1 span {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-hero-content > p {
    max-width: 650px;
    margin: 25px 0 32px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
}

.blog-hero-search {
    position: relative;
    width: 100%;
    max-width: 475px;
    height: 58px;
    display: flex;
    align-items: center;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.blog-hero-search input {
    width: 100%;
    height: 100%;
    padding: 0 65px 0 20px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--heading);
    font-family: inherit;
    font-size: 15px;
}

.blog-hero-search input::placeholder {
    color: var(--text-light);
}

.blog-hero-search button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(22, 137, 200, 0.2);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.blog-hero-search button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 22px rgba(22, 137, 200, 0.28);
}

.blog-hero-search button i {
    font-size: 23px;
}

.blog-hero-image {
    width: 100%;
    /* max-width: 500px; */
    /* margin-left: auto; */
    overflow: hidden;
    border-radius: 28px;
    background: var(--section);
}

.blog-hero-image img {
    display: block;
    width: 100%;
    /* height: 430px; */
    object-fit: cover;
}


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

@media (max-width: 1199px) {

    .blog-hero-content h1 {
        font-size: 50px;
    }

    .blog-hero-image img {
        height: 350px;
    }

}

@media (max-width: 991px) {

    .blog-hero-section {
        padding: 45px 0 65px;
    }

    .blog-hero-row {
        align-items: flex-start !important;
    }

    .blog-hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 45px;
    }

    .blog-hero-content h1 {
        font-size: 46px;
    }

    .blog-hero-image {
        max-width: 100%;
        margin-left: 0;
    }

}


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

@media (max-width: 767px) {

    .blog-hero-section {
        padding: 35px 0 55px;
    }

    .blog-hero-breadcrumb {
        margin-bottom: 25px;
        font-size: 13px;
    }

    .blog-hero-content {
        margin-bottom: 35px;
    }

    .blog-hero-content h1 {
        font-size: 38px;
        line-height: 1.18;
        letter-spacing: -1px;
    }

    .blog-hero-content > p {
        margin: 20px 0 25px;
        font-size: 15px;
        line-height: 1.65;
    }

    .blog-hero-search {
        max-width: 100%;
        height: 54px;
    }

    .blog-hero-search button {
        width: 44px;
        height: 44px;
    }

    .blog-hero-search input {
        padding-left: 17px;
        padding-right: 58px;
        font-size: 14px;
    }

    .blog-hero-image {
        border-radius: 22px;
    }

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

}


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

@media (max-width: 480px) {

    .blog-hero-content h1 {
        font-size: 32px;
    }

    .blog-hero-image img {
        height: 250px;
    }

}
/* about core values */
.core-values-area {
    background: #f7faff;
}

.core-value-card {
    height: 100%;
    padding: 45px 35px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e8eef5;
    transition: all 0.3s ease;
}

.core-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(37, 126, 191, 0.12);
}

.core-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #257ebf;
    color: #ffffff;
    font-size: 38px;
    box-shadow: 0 12px 25px rgba(37, 126, 191, 0.20);
}

.core-value-content h4 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.core-value-content p {
    margin: 0;
    line-height: 1.8;
    color: #596579;
}

@media (max-width: 767px) {
    .core-value-card {
        padding: 35px 25px;
    }

    .core-value-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .core-value-content h4 {
        font-size: 21px;
    }
}
/* blog home section */
.blog-section {
    width: 100%;
}

.blog-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.blog-heading {
    max-width: 700px;
}

.blog-heading h2 {
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--heading);
}

.blog-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
}

.blog-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.blog-nav {
    width: 46px;
    height: 46px;
    border: 1px solid #d9e4ee;
    border-radius: 50%;
    background: #fff;
    color: var(--heading);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

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

.blog-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    margin: 0 -12px;
}

.blog-slide {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 12px;
    box-sizing: border-box;
}

.blog-card {
    height: 100%;
    min-height: 435px;
    border: 1px solid #cfe0ed;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 126, 191, 0.10);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.blog-category {
    position: absolute;
    left: 14px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 13px;
    border-radius: 30px;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.blog-card-content {
    padding: 16px 15px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.4;
    color: #111;
}

.blog-card-meta > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta i {
    color: var(--primary);
    font-size: 15px;
}

.blog-author {
    font-weight: 600;
    text-align: right;
}

.blog-card-title {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card-title a {
    color: #111;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-card-excerpt {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #183b58;
}

.blog-card-footer {
    margin-top: auto;
    padding-top: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more i {
    font-size: 19px;
    transition: transform 0.3s ease;
}

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

.blog-read-more:hover i {
    transform: translateX(4px);
}

.blog-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.blog-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cfd8e2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary);
}

.blog-view-all {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 1px solid var(--primary);
    border-radius: 30px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-view-all-btn:hover {
    background: transparent;
    color: var(--primary);
}

.blog-no-results {
    width: 100%;
    padding: 40px 15px;
    text-align: center;
}

.blog-no-results p {
    margin: 0;
    color: var(--text);
}

@media (max-width: 1199px) {
    .blog-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .blog-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .blog-navigation {
        align-self: flex-end;
    }

    .blog-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .blog-card {
        min-height: 420px;
    }
}
/* home pricing section */
.home-pricing-section {
    width: 100%;
    background: #f7fafd;
}

.home-pricing-section-title {
    margin-bottom: 50px;
}

.home-pricing-section-title h2 {
    margin-top: 12px;
}

.home-pricing-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #257ebf;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.home-pricing-subtitle-dot {
    width: 18px;
    height: 2px;
    background: #257ebf;
    display: inline-block;
}

.home-pricing-gradient-text {
    background: linear-gradient(90deg, #257ebf 0%, #159fa4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-pricing-card {
    position: relative;
    height: 100%;
    min-height: 550px;
    padding: 30px 24px 25px;
    background: #ffffff;
    border: 1px solid #d8e5ef;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d8e5ef;
}

.home-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 126, 191, 0.10);
}

.home-pricing-card-popular {
    border-color: #72aee0;
}

.home-pricing-card-popular::before {
    background: linear-gradient(90deg, #257ebf, #159fa4);
}

.home-pricing-popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 7px 13px;
    border-radius: 20px;
    background: #257ebf;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
}

.home-pricing-card-top {
    min-height: 125px;
}

.home-pricing-plan-name {
    display: block;
    margin-bottom: 17px;
    color: #60758a;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
}

.home-pricing-price {
    display: flex;
    align-items: baseline;
    color: #071f38;
    line-height: 1;
}

.home-pricing-currency {
    margin-right: 4px;
    font-size: 18px;
    font-weight: 600;
}

.home-pricing-amount {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.home-pricing-period {
    margin-left: 3px;
    color: #60758a;
    font-size: 13px;
}

.home-pricing-description {
    margin: 8px 0 0;
    color: #55718b;
    font-size: 13px;
    line-height: 1.5;
}

.home-pricing-features {
    flex: 1;
    padding-top: 25px;
}

.home-pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    /*! min-height: 20px; */
    color: #385b78;
    font-size: 12px;
    line-height: 1.5;
    /* border-bottom: 1px solid var(--border,rgba(79,70,229,.06)); */
    margin-bottom: 12px;
    font-weight: normal;
}

.home-pricing-feature-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-pricing-feature-active .home-pricing-feature-icon {
    /*! background: #e4f6f2; */
    /*! border: 1px solid #b9e8df; */
    color: #159f8d;
}

.home-pricing-feature-inactive {
    color: #8195a7;
}

.home-pricing-feature-inactive .home-pricing-feature-icon {
    background: #f1f4f7;
    border: 1px solid #dce4ea;
    color: #a5b3be;
}

.home-pricing-feature-icon i {
    font-size: 20px;
    font-weight: 700;
}

.home-pricing-card-footer {
    padding-top: 25px;
}

.home-pricing-btn {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.home-pricing-btn i {
    font-size: 19px;
    transition: transform 0.3s ease;
}

.home-pricing-btn:hover i {
    transform: translateX(4px);
}

.home-pricing-btn-outline {
    background: #ffffff;
    border: 1px solid #c8dbea;
    color: #173b59;
}

.home-pricing-btn-outline:hover {
    background: #257ebf;
    border-color: #257ebf;
    color: #ffffff;
}

.home-pricing-btn-primary {
    border: 1px solid #257ebf;
    background: var(--gradient);
    color: #ffffff;
    box-shadow: 0 7px 18px rgba(37, 126, 191, 0.20);
}

.home-pricing-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 126, 191, 0.25);
}

@media (max-width: 991px) {

    .home-pricing-card {
        min-height: 0;
    }

}

@media (max-width: 767px) {

    .home-pricing-section-title {
        margin-bottom: 35px;
    }

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

    .home-pricing-card {
        padding: 26px 20px 22px;
    }

    .home-pricing-amount {
        font-size: 40px;
    }

}
.floating-whatsapp {
    position: fixed;
    right: 27px;
    bottom: 90px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    text-decoration: none;
    z-index: 9999;
}

.floating-whatsapp::before,
.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: whatsapp-wave 2s infinite;
    pointer-events: none;
}

.floating-whatsapp::after {
    animation-delay: 1s;
}

@keyframes whatsapp-wave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .floating-whatsapp {
        right: 15px;
        bottom: 75px;
        width: 48px;
        height: 48px;
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        right: 12px;
        bottom: 70px;
        width: 46px;
        height: 46px;
        font-size: 38px;
    }
}
/* table of content */
.custom-table-of-contents {
    border: 1px solid #9aa7b3;
    border-radius: 2px;
    margin: 25px 0;
    overflow: hidden;
}

.custom-table-of-contents .toc-header {
    min-height: 68px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #9aa7b3;
    cursor: pointer;
}

.custom-table-of-contents .toc-header h2,
.custom-table-of-contents .toc-header .toc-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.custom-table-of-contents .toc-toggle {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.custom-table-of-contents .toc-content {
    padding: 20px;
}

.custom-table-of-contents .toc-content ol {
    margin: 0;
    padding-left: 28px;
}

.custom-table-of-contents .toc-content li {
    margin-bottom: 16px;
    padding-left: 2px;
}

.custom-table-of-contents .toc-content li:last-child {
    margin-bottom: 0;
}

.custom-table-of-contents .toc-content a {
    color: #111;
    text-decoration: none;
}

.custom-table-of-contents .toc-content a:hover {
    text-decoration: underline;
}

.custom-table-of-contents.toc-collapsed .toc-header {
    border-bottom: 0;
}

.custom-table-of-contents.toc-collapsed .toc-content {
    display: none;
}

@media (max-width: 767px) {
    .custom-table-of-contents {
        margin: 20px 0;
    }

    .custom-table-of-contents .toc-header {
        min-height: 58px;
        padding: 0 15px;
    }

    .custom-table-of-contents .toc-header h2,
    .custom-table-of-contents .toc-header .toc-title {
        font-size: 16px;
    }

    .custom-table-of-contents .toc-content {
        padding: 15px;
    }

    .custom-table-of-contents .toc-content ol {
        padding-left: 25px;
    }

    .custom-table-of-contents .toc-content li {
        margin-bottom: 12px;
    }
}
