/* @import url('./variables.css'); */

body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.tp-section-title .ai-hero-title {
  font-family: var(--ff-heading);
  letter-spacing: 0.02em;
  font-weight: 800;
}

.tp-section-title-phudu {
  font-family: var(--ff-body);
}

p,
li,
span,
a,
button,
input,
select,
textarea,
nav {
  font-family: var(--ff-body);
}

/* ── Header Bar ─────────────────────────────────────────────── */
.tp-header-10-area {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 !important;
  /* background: rgba(255, 255, 255, 0.82) !important; */
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(1, 1, 96, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 28px rgba(1, 1, 96, 0.09),
    0 1px 6px rgba(1, 187, 245, 0.08);
  transition: var(--nav-ease);

  background: linear-gradient(90deg,
      rgb(241 207 132) 0%,
      rgb(253 217 193) 35%,
      rgb(246 246 246 / 65%) 65%,
      rgba(128, 225, 255, 0.45) 100%) !important;
}

/* Scrolled state — crisp white glass */
.tp-header-10-area.sticky-scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow:
    0 4px 40px rgba(1, 1, 96, 0.13),
    0 1px 0 rgba(1, 1, 96, 0.06);
}

/* Inner wrapper */
.tp-header-10-wrapper {
  display: flex;
  align-items: stretch;
  min-height: 72px;
  overflow: visible !important;
  position: relative;
  z-index: 1;
}

/* Subtle left-edge brand glow */

/* ── Logo ───────────────────────────────────────────────────── */
.tp-header-logo {
  display: flex;
  align-items: center;
  /* padding: 12px 16px !important; */
}

.tp-header-logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(1, 1, 96, 0.12));
  transition: var(--nav-ease);
}

.tp-header-logo:hover img {
  filter: drop-shadow(0 2px 8px rgba(1, 187, 245, 0.4));
  transform: translateY(-1px);
}

/* ── Desktop Navigation ─────────────────────────────────────── */
.tp-header-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.tp-header-menu nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.tp-header-menu nav ul li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 12px;
}

.tp-header-menu nav ul li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 5px;
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--nav-text) !important;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--nav-ease);
  position: relative;
}

/* Underline hover indicator */
.tp-header-menu nav ul li>a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg,
      var(--tp-common-secondary),
      var(--tp-common-blue));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.tp-header-menu nav ul li:hover>a,
.tp-header-menu nav ul li.active>a {
  color: var(--tp-common-blue) !important;
  background: rgba(1, 114, 245, 0.06);
}

.tp-header-menu nav ul li:hover>a::after,
.tp-header-menu nav ul li.active>a::after {
  transform: scaleX(1);
}

.tp-header-menu nav ul li.has-dropdown::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23010160' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 7.5l5 5 5-5'/%3E%3C/svg%3E");
}

.tp-header-menu nav ul li.has-dropdown:hover::after,
.tp-header-menu nav ul li.has-dropdown.active::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%230172f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 7.5l5 5 5-5'/%3E%3C/svg%3E");
}

/* ── Mega Menu ──────────────────────────────────────────────── */
.tp-header-menu>nav>ul>li.has-megamenu {
  position: static !important;
}

.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 50px 0 55px;
  /* background: rgba(1, 1, 96, 0.85); */

  border-top: 1px solid rgba(1, 187, 245, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset; */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--nav-ease);
  z-index: 999;
  overflow: hidden;

  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  background:
    radial-gradient(ellipse at 12% 55%,
      rgb(255 165 47 / 76%) 0%,
      transparent 62%),
    radial-gradient(ellipse at 88% 25%, rgb(20 199 255 / 89%) 0%, #f7dfd0 58%),
    radial-gradient(ellipse at 55% 95%, rgb(255 208 155) 0%, transparent 50%),
    linear-gradient(145deg, #fef6ee 0%, #5db8d8 45%, #4165e5 100%);
}

/* Decorative Corner Glows - Liquid Glass Effect */
.mega-menu-wrapper::before,
.mega-menu-wrapper::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
  transition: var(--nav-ease);
}

/* Top Right Corner Glow (Cyan Tint) */
.mega-menu-wrapper::before {
  top: -250px;
  right: -150px;
  background: radial-gradient(circle,
      var(--tp-common-secondary) 0%,
      transparent 70%);
}

/* Bottom Left Corner Glow (Amber Tint) */
.mega-menu-wrapper::after {
  bottom: -250px;
  left: -150px;
  background: radial-gradient(circle,
      var(--tp-common-primary) 0%,
      transparent 70%);
}

.tp-header-menu>nav>ul>li:hover .mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-title {
  display: block;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tp-common-secondary);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Services grid */
.services-mega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-mega-card {
  background: rgb(255 255 255 / 31%);
  border: 1px solid rgb(247 186 117);
  padding: 28px 20px;
  border-radius: 10px;
  transition: var(--nav-ease);
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.service-mega-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 194, 241, 0.4);
  transform: translateY(-5px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(0, 194, 241, 0.1);
}

.service-mega-icon {
  font-size: 28px;
  color: var(--tp-common-secondary);
  margin-bottom: 14px;
  display: block;
  transition: var(--nav-ease);
}

.service-mega-card:hover .service-mega-icon {
  text-shadow: 0 0 12px var(--tp-common-secondary);
}

.service-mega-card h4 {
  color: var(--tp-dark-blue);
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
}

.service-mega-card p {
  color: var(--nav-text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* Products grid */
.products-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-mega-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-radius: 10px;
  transition: var(--nav-ease);
  text-decoration: none;
  background: rgb(255 255 255 / 31%);
  border: 1px solid rgba(0, 16, 109, 0.15);
  padding: 28px 20px;
  border-radius: 10px;
  transition: var(--nav-ease);
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.product-mega-item:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-mega-icon {
  width: 134px;
  height: 134px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(0.75) saturate(0.6);
  border-radius: 8px;
  transition: var(--nav-ease);
}

.product-mega-item:hover .product-mega-icon {
  filter: brightness(1) saturate(1);
  transform: scale(1.08);
}

.product-mega-item h5 {
  color: var(--tp-dark-blue);
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
}

.industry-mega-item h5 {
  color: var(--tp-dark-blue);
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
}

.industry-mega-item span {
  color: var(--nav-text-muted);
  font-size: 12px;
}

.product-mega-item span {
  color: var(--nav-text-muted);
  font-size: 12px;
}

.industries-mega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

@media (min-width: 767px) and (max-width: 1200px) {
  .industries-mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 280px) and (max-width: 766px) {
  .industries-mega-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.industry-mega-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-radius: 10px;
  transition: var(--nav-ease);
  text-decoration: none;
  background: rgb(255 255 255 / 31%);
  border: 1px solid rgba(0, 16, 109, 0.15);
  padding: 28px 20px;
  border-radius: 10px;
  transition: var(--nav-ease);
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

/* Facilities/Locations grid */
.facilities-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.facility-column h5 {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0387ca;
  margin-bottom: 18px;
}

.facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  align-items: start !important;
}

.facility-list li {
  margin-bottom: 10px;
}

.facility-list a {
  color: var(--nav-text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--nav-ease);
  text-decoration: none;
}

.facility-list a i {
  color: var(--tp-common-secondary);
  font-size: 12px;
}

.facility-list a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* ── Small Mega (About) ─────────────────────────────────────── */
.tp-header-menu>nav>ul>li.has-megamenu.relative-megamenu {
  position: relative !important;
}

.small-mega-wrapper {
  max-width: 280px !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px);
  right: auto !important;
  padding: 20px 0 !important;
  border-radius: 10px;
}

.tp-header-menu>nav>ul>li:hover .small-mega-wrapper {
  transform: translateX(-50%) translateY(0);
}

.small-mega-wrapper .container {
  padding: 0 24px;
}

.small-mega-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.small-mega-wrapper ul li a {
  color: var(--nav-text);
  padding: 9px 0;
  display: block;
  font-size: 14px;
  font-weight: 500;
  transition: var(--nav-ease);
  text-decoration: none;
}

.small-mega-wrapper ul li a:hover {
  color: var(--tp-common-secondary);
  padding-left: 5px;
}

/* ── CTA Button (Header "Request Quote") ────────────────────── */
.tp-btn-black-radius {
  font-family: var(--ff-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 26px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff !important;
  background: linear-gradient(135deg,
      #5050e1 0%,

      #01bbf5 100%);
  border: 1px solid rgba(1, 187, 245, 0.3);
  box-shadow:
    0 4px 20px rgba(1, 187, 245, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  position: relative;
  overflow: hidden;
  transition: var(--nav-ease);
  white-space: nowrap;
}

/* Shimmer layer */
.tp-btn-black-radius::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.tp-btn-black-radius:hover {
  background: linear-gradient(135deg, #f9c17d 0%, #ebc696fa 100%);
  box-shadow:
    0 6px 28px rgba(1, 187, 245, 0.55),
    0 0 0 2px rgba(1, 187, 245, 0.25),
    0 2px 0 rgba(255, 255, 255, 0.22) inset;
  transform: translateY(-2px) scale(1.01);
  color: #ffffff !important;
}

.tp-btn-black-radius:hover::before {
  left: 130%;
}

.tp-btn-black-radius:focus {
  outline: 2px solid var(--tp-common-secondary);
  outline-offset: 3px;
  color: #ffffff !important;
}

/* Glass / outline variant — dark treatment for light hero */
.tp-btn-black-radius.btn-blur,
.tp-btn-black-radius.btn-glass {
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: rgba(255, 255, 255, 0.55);
  border: 1.5px solid rgba(1, 1, 96, 0.2);
  box-shadow:
    0 2px 12px rgba(1, 1, 96, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  color: #010160 !important;
}

.tp-btn-black-radius.btn-blur:hover,
.tp-btn-black-radius.btn-glass:hover {
  background: rgba(1, 114, 245, 0.08);
  border-color: var(--tp-common-blue);
  box-shadow:
    0 0 20px rgba(1, 187, 245, 0.22),
    0 2px 12px rgba(1, 1, 96, 0.1);
  color: #0172f5 !important;
  transform: translateY(-2px);
}

/* Outline variant used in CTA section */
.tp-btn-outline {
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 26px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff !important;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: var(--nav-ease);
}

.tp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--tp-common-secondary);
  color: #ffffff !important;
  box-shadow: 0 0 18px rgba(0, 194, 241, 0.2);
  transform: translateY(-2px);
}

/* ── Hamburger (mobile toggle) ──────────────────────────────── */
.tp-offcanvas-open-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 40px;
  height: 40px;
  background: rgba(1, 1, 96, 0.05);
  border: 1px solid rgba(1, 1, 96, 0.14);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--nav-ease);
  padding: 0;
}

.tp-offcanvas-open-btn i {
  display: block;
  width: 20px;
  height: 2px;
  background: #010160;
  border-radius: 2px;
  transition: var(--nav-ease);
}

.tp-offcanvas-open-btn:hover {
  background: rgba(1, 187, 245, 0.1);
  border-color: var(--tp-common-secondary);
  box-shadow: 0 0 12px rgba(1, 187, 245, 0.2);
}

/* ── Mobile Offcanvas ───────────────────────────────────────── */
.tp-offcanvas-menu nav {
  position: relative;
  overflow: hidden;
}

.tp-offcanvas-menu nav>ul {
  transition: var(--nav-ease);
}

.tp-offcanvas-menu nav>ul.slide-out {
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
}

.mobile-submenu-panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: transparent;

  transition: var(--nav-ease);
  z-index: 10;
  visibility: hidden;
  padding: 0 15px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #f5a133 rgba(0, 0, 0, 0.05);
}

/* Custom Scrollbar for Webkit */
.mobile-submenu-panel::-webkit-scrollbar {
  width: 4px;
}

.mobile-submenu-panel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-submenu-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #00106d, #0387ca);
  border-radius: 10px;
}

.mobile-submenu-panel.active {
  left: 0;
  visibility: visible;
}

.back-to-menu {
  color: #000000;
  font-size: 15px;
  font-family: var(--ff-body);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 12px 0;
}

.submenu-title {
  color: var(--tp-dark-blue);
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.tp-offcanvas-menu nav>ul>li {
  margin-bottom: 10px;
}

.tp-offcanvas-menu nav>ul>li>a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 18px;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.tp-offcanvas-menu nav>ul>li>a::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  font-size: 13px;
  color: var(--tp-common-secondary);
}

.tp-offcanvas-mail {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      var(--tp-common-blue),
      var(--tp-common-secondary));
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
}

.tp-offcanvas-close-btn {
  color: #000000 !important;
}

.tp-offcanvas-logo img {
  max-height: 40px;
}

/* Mobile mega menu resets */
.tp-offcanvas-menu .mega-menu-wrapper {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: transparent;
  padding: 0 15px 20px;
  display: none;
  box-shadow: none;
  border: none;
}

.tp-offcanvas-menu .mobile-submenu-panel .mega-menu-wrapper {
  display: block !important;
  position: static !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.tp-offcanvas-menu .mobile-submenu-panel .container {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.tp-offcanvas-menu .services-mega-grid,
.tp-offcanvas-menu .products-mega-grid,
.tp-offcanvas-menu .facilities-mega-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.tp-offcanvas-menu .service-mega-card {
  padding: 14px;
}

.tp-offcanvas-menu .product-mega-item {
  flex-direction: row;
  text-align: left;
  align-items: center;
  padding: 10px;
}

.tp-offcanvas-menu .product-mega-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  margin-right: 14px;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.ai-faq-accordion-wrap .accordion-items {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-bottom: 14px;
  border-radius: 10px !important;
  transition: var(--nav-ease);
}

.ai-faq-accordion-wrap .accordion-items:hover {
  border-color: rgba(0, 194, 241, 0.2) !important;
}

.ai-faq-accordion-wrap .accordion-buttons {
  background: transparent !important;
  color: #ffffff !important;
  padding: 20px 24px !important;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 500;
}

.ai-faq-accordion-wrap .accordion-buttons:not(.collapsed) {
  color: var(--tp-common-secondary) !important;
  box-shadow: none !important;
  background: transparent !important;
}

.ai-faq-accordion-wrap .accordion-body {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.5) !important;
  padding: 0 24px 22px !important;
  font-size: 15px;
  line-height: 1.65;
}

/* ── Section Subtitle ───────────────────────────────────────── */
.tp-section-subtitle.border-bg {
  background: rgba(0, 194, 241, 0.08) !important;
  color: var(--tp-common-secondary) !important;
  border: 1px solid rgba(0, 194, 241, 0.2) !important;
}

/* ================================================================
   HERO SECTION — Premium Redesign
   ================================================================ */

/* ── Hero Container ─────────────────────────────────────────── */
.ai-hero-area {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(145deg, #fef6ee 0%, #f8f9ff 45%, #eef4ff 100%);
  padding-bottom: 12px !important;
}

@media (max-width: 767px) {
  .ai-hero-area {
    padding-bottom: 85px !important;
  }
}

/* ── Ambient Design Blobs ───────────────────────────────────── */
.ai-hero-ambient-blobs {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.blob-orange {
  width: 120%;
  height: 50%;
  background: #ff750f;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.9;
}

.blob-orange-left {
  width: 35%;
  height: 13%;
  background: #ff750f;
  top: 73%;
  left: -15%;
  opacity: 0.7;
}

.blob-blue {
  width: 479px;
  height: 400px;
  background: #6695c4;
  left: 49%;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .blob-blue {
    display: none;
  }
}

.blob-peach {
  width: 600px;
  height: 600px;
  background: #c4947f;
  top: -1%;
  right: -100px;
}

.blob-cyan {
  width: 70%;
  height: 80%;
  background: #ffc59f;
  top: -100px;
  left: -200px;
}

/* Subtle dot-grid overlay */
.ai-hero-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle,
      rgba(1, 1, 96, 0.04) 1px,
      transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* ── Hero Title ─────────────────────────────────────────────── */
.ai-hero-title {
  font-family: var(--ff-heading) !important;
  font-weight: 700 !important;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.95 !important;
  letter-spacing: -0.02em !important;
  color: #010160;
  margin-bottom: 24px !important;
  text-shadow: 0 4px 12px rgba(1, 1, 96, 0.1);
}

@media (max-width: 991px) {
  .ai-hero-title {
    font-size: clamp(36px, 6.5vw, 54px);
  }
}

/* @media (max-width: 767px) {
  .ai-hero-title {
    font-size: 38px;
    margin-bottom: 18px !important;
  }
} */

/* ── Hero Badge ─────────────────────────────────────────────── */
.ai-hero-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  color: #010160;
  background: linear-gradient(90deg, #fdcccb 0%, #fcd9d0 100%);
  border: 1px solid rgba(1, 1, 96, 0.1);
  padding: 20px 32px;
  border-radius: var(--radius-pill);
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(251, 213, 203, 0.4);
  letter-spacing: 1px;
  box-shadow: 2px -1px 2px white;
}

@media (max-width: 767px) {
  .ai-hero-badge {
    font-size: 13px;
    padding: 12px 15px;
    margin-bottom: 15px;
  }
}

/* ── Hero Description ───────────────────────────────────────── */
.ai-hero-description {
  font-family: var(--ff-body) !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: rgba(1, 1, 96, 0.8) !important;
  max-width: 540px;
  margin-top: 20px;
  margin-bottom: 0;
}

/* ── Hero CTA Row ───────────────────────────────────────────── */
.tp-service-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Image Slider Column ───────────────────────────────────── */
.ai-hero-slider-main {
  height: 100vh;
  margin-left: 95px;
  position: relative;
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .ai-hero-slider-main {
    margin-left: 55px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .ai-hero-slider-main {
    margin-left: 0;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .ai-hero-slider-main {
    /* height: 880px; */
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ai-hero-slider-main {
    /* height: 700px; */
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .ai-hero-slider-main {
    height: 400px;
    margin-left: 0;
  }
}

/*
 * Slider top/bottom fade — matches the warm off-white gradient
 * at top (amber tint) and the cool off-white at bottom.
 */
.ai-hero-slider-main::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 101%;
  /* background: linear-gradient(180deg,
      rgba(254, 246, 238, 0.92) 0%,
      rgba(254, 246, 238, 0) 22%,
      rgba(238, 244, 255, 0) 70%,
      rgba(238, 244, 255, 0.92) 100%); */
  z-index: 1;
  pointer-events: none;
}

/* Premium glass image cards */
.ai-hero-slider-item {
  margin-bottom: 12px;
  /* border-radius: var(--radius-lg); */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 4px 24px rgba(1, 1, 96, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: var(--ease);
}

.ai-hero-slider-item:hover {
  border-color: rgba(1, 187, 245, 0.35);
  box-shadow:
    0 8px 36px rgba(1, 114, 245, 0.18),
    0 0 0 1px rgba(1, 187, 245, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.ai-hero-slider-item img {
  height: calc((100vh - 24px) / 3) !important;
  object-fit: cover;
  width: 100%;
  /* border-radius: var(--radius-lg); */
  transition: transform 0.6s ease;
  display: block;
}

.ai-hero-slider-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .ai-hero-slider-item img {
    height: 300px !important;
  }
}

.ai-hero-slider-2 {
  transform: scale(1, -1);
}

.ai-hero-slider-2 img {
  transform: scale(1, -1);
}

/* ── Hero Padding ───────────────────────────────────────────── */
.ai-hero-ptb {
  padding-top: 140px;
  padding-bottom: 60px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .ai-hero-ptb {
    padding-top: 140px;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .ai-hero-ptb {
    padding-top: 140px;
    padding-bottom: 50px;
  }
}

/* ── Text Gradient Utility ──────────────────────────────────── */
.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.dark-bg-parent .text-gradient {
  background: linear-gradient(90deg, #1a8bab 0%, #3cc5f0 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Shape Divider ──────────────────────────────────── */
.tp-shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
  pointer-events: none;
}

.tp-shape-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  transform: scaleX(1.02);
  shape-rendering: geometricPrecision;
}

@media (min-width: 280px) and (max-width: 576px) {
  .tp-shape-divider svg {
    height: 32px;
  }
}

/* Gateway (Header/Hero) Divider */

.tp-shape-divider.home-divider-gateway {
  bottom: -2px;
}

.tp-shape-divider.home-divider-gateway svg {
  height: 60px;
  width: 100%;
  transform: scaleX(1.02) scaleY(1.1) rotate(180deg);
  transform-origin: center;
}

.tp-shape-divider.divider-gateway {
  bottom: -2px;
}

.tp-shape-divider.divider-gateway svg {
  height: 60px;
  width: 100%;
  transform: scaleX(1.02) scaleY(1.1) rotate(180deg);
  transform-origin: center;
}

.tp-shape-divider.divider-services-cta {
  top: -2px;
}

/* CTA (Waves) Divider */
.tp-shape-divider.divider-cta {
  top: -2px;
}

.tp-shape-divider.our-process-divider {
  top: -2px;
}

.tp-shape-divider.divider-faq {
  top: -2px;
}

.tp-shape-divider.divider-footer {
  top: -2;
}

.tp-shape-divider.divider-cta svg {
  height: 70px;
  width: 100%;
  transform: scaleX(1.02) scaleY(1.1);
  transform-origin: top;
}

@media (max-width: 767px) {
  .tp-shape-divider.divider-gateway svg {
    height: 40px;
  }

  .tp-shape-divider.divider-cta svg {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .tp-shape-divider.divider-gateway svg {
    height: 24px;
  }

  .tp-shape-divider.divider-cta svg {
    height: 24px;
  }
}

.tp-shape-divider .shape-fill {
  fill: #ffffff;
}

/* Specific Colors for Different Sections */
.tp-shape-divider.divider-gateway svg,
.tp-shape-divider.divider-hubs svg {
  transform: rotate(180deg);
}

.tp-shape-divider.divider-gateway .shape-fill {
  fill: #eef9fe;
}

.tp-shape-divider.divider-cta .shape-fill {
  fill: #fef8f0;
  /* fill: #eefafe; */
}

.tp-shape-divider.our-process-divider .shape-fill {
  /* fill: #edf3f1; */

  fill: #eefafe;
}

.tp-shape-divider.divider-hubs .shape-fill {
  fill: #f8faff;
}

.tp-shape-divider.divider-faq .shape-fill {
  fill: #eef9fe;
}

.tp-shape-divider.divider-footer .shape-fill {
  fill: #ffffff;
}

.tp-shape-divider.divider-services-cta .shape-fill {
  fill: #eef9fe;
}