:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Montserrat", sans-serif;

  --background-color: #0b0f19;
  --default-color: #cbd5e1;
  --heading-color: #ffffff;

  --accent-color: #6366f1;
  --accent-gradient: linear-gradient(135deg, #6366f1, #22d3ee);

  --surface-color: #111827;
  --surface-light: #1f2937;
  --contrast-color: #ffffff;

  --nav-color: #cbd5e1;
  --nav-hover-color: #8b5cf6;
  --nav-mobile-background-color: #0b0f19;
  --nav-dropdown-background-color: #111827;
  --nav-dropdown-color: #cbd5e1;
  --nav-dropdown-hover-color: #8b5cf6;

  --header-background: rgba(11, 15, 25, 0.72);
  --header-scrolled-background: rgba(11, 15, 25, 0.92);
  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-color: rgba(0, 0, 0, 0.18);

  --industry-section-bg: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color) 4%, var(--background-color)),
    var(--background-color)
  );
  --industry-overlay-top: color-mix(in srgb, var(--background-color) 10%, transparent);
  --industry-overlay-mid: color-mix(in srgb, var(--background-color) 55%, transparent);
  --industry-overlay-bottom: color-mix(in srgb, var(--background-color) 86%, transparent);
  --industry-card-text: #ffffff;
  --industry-card-text-soft: rgba(255, 255, 255, 0.88);
  --industry-icon-bg: color-mix(in srgb, var(--accent-color) 16%, transparent);
  --industry-icon-border: color-mix(in srgb, var(--accent-color) 20%, transparent);
  --industry-glow: color-mix(in srgb, var(--accent-color) 18%, transparent);

  scroll-behavior: smooth;
}

body.light-theme {
  --background-color:  #e3f2fd;   
  --default-color: #475569;
  --heading-color: #0f172a;

  --surface-color: #F7FCFF;
  --surface-light: #f1f5f9;
  --contrast-color: #ffffff;

  --nav-color: #334155;
  --nav-hover-color: #6366f1;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #334155;
  --nav-dropdown-hover-color: #6366f1;

  --header-background: rgba(255, 255, 255, 0.75);
  --header-scrolled-background: rgba(255, 255, 255, 0.96);
  --border-color: rgba(15, 23, 42, 0.08);
  --shadow-color: rgba(15, 23, 42, 0.08);

  --accent-gradient: linear-gradient(135deg, #6366f1, #06b6d4);

  --industry-section-bg: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color) 6%, var(--background-color)),
    var(--background-color)
  );
  --industry-overlay-top: rgba(255, 255, 255, 0.04);
  --industry-overlay-mid: rgba(15, 23, 42, 0.28);
  --industry-overlay-bottom: rgba(15, 23, 42, 0.72);
  --industry-card-text: #ffffff;
  --industry-card-text-soft: rgba(255, 255, 255, 0.88);
  --industry-icon-bg: rgba(255, 255, 255, 0.14);
  --industry-icon-border: rgba(255, 255, 255, 0.18);
  --industry-glow: color-mix(in srgb, var(--accent-color) 16%, transparent);
}

body.dark-theme {
  --background-color: #020617;
  --default-color: #e2e8f0;
  --heading-color: #ffffff;

  --surface-color: #0f172a;
  --surface-light: #1e293b;
  --contrast-color: #ffffff;

  --nav-color: #cbd5e1;
  --nav-hover-color: #8b5cf6;
  --nav-mobile-background-color: #0b1220;
  --nav-dropdown-background-color: #111827;
  --nav-dropdown-color: #cbd5e1;
  --nav-dropdown-hover-color: #8b5cf6;

  --header-background: rgba(11, 15, 25, 0.72);
  --header-scrolled-background: rgba(11, 15, 25, 0.92);
  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-color: rgba(0, 0, 0, 0.18);

  --accent-gradient: linear-gradient(135deg, #6366f1, #22d3ee);

  --industry-section-bg: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color) 4%, var(--background-color)),
    var(--background-color)
  );
  --industry-overlay-top: color-mix(in srgb, var(--background-color) 10%, transparent);
  --industry-overlay-mid: color-mix(in srgb, var(--background-color) 55%, transparent);
  --industry-overlay-bottom: color-mix(in srgb, var(--background-color) 86%, transparent);
  --industry-card-text: #ffffff;
  --industry-card-text-soft: rgba(255, 255, 255, 0.88);
  --industry-icon-bg: color-mix(in srgb, var(--accent-color) 16%, transparent);
  --industry-icon-border: color-mix(in srgb, var(--accent-color) 20%, transparent);
  --industry-glow: color-mix(in srgb, var(--accent-color) 18%, transparent);
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #22d3ee;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.form-error {
  display: none;
  background: #ef4444;
  color: #ffffff;
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-weight: 500;
}

.form-success {
  display: none;
  background: #10b981;
  color: #ffffff;
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-weight: 500;
}

.form-loading {
  display: none;
  background: var(--surface-color);
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: center;
  color: var(--default-color);
}

.form-loading::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 5px;
  width: 99%;
  z-index: 999;
  background: var(--header-background);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: var(--header-scrolled-background);
  box-shadow: 0 12px 30px var(--shadow-color);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.logo-text h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: 0.5px;
}

.logo-text span {
  font-size: 10px;
  color: var(--default-color);
  opacity: 0.7;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
}

.navmenu {
  margin-left: auto;
}

.navmenu ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.navmenu li {
  position: relative;
}

.navmenu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  margin: 0 8px;
  font-family: var(--nav-font);
  font-size: 15px;
  color: var(--nav-color);
  transition: all 0.3s ease;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--nav-hover-color);
}

.navmenu a::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

.navmenu a:hover::after,
.navmenu a.active::after {
  width: calc(100% - 16px);
}

.nav-arrow {
  display: none;
}

/* Header actions */

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
  flex-shrink: 0;
}

/* CTA */

.btn-getstarted {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-getstarted:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35);
}

/* Theme toggle */

.theme-toggle {
  width: 42px;
  height: 42px;
  background: var(--surface-color);
  color: var(--heading-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.theme-toggle i {
  font-size: 18px;
  line-height: 1;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* Mobile buttons */

.mobile-nav-toggle,
.mobile-nav-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  background: var(--surface-color);
  color: var(--heading-color);
  font-size: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 12px;
  flex-shrink: 0;
}

.mobile-nav-toggle:hover,
.mobile-nav-close:hover {
  border-color: rgba(99, 102, 241, 0.35);
}

.navmenu-top,
.mobile-menu-actions,
.mobile-theme-toggle {
  display: none;
}

/* ≤ 1399px */

@media (max-width: 1399px) {
  .header-inner {
    gap: 10px;
  }

  .logo {
    flex: 1;
  }

  .logo img {
    height: 50px;
  }

  .logo-text h1 {
    font-size: 18px;
  }

  .logo-text span {
    font-size: 9px;
    letter-spacing: 0.6px;
    max-width: 150px;
  }

  .navmenu a {
    margin: 0 4px;
    padding: 10px 6px;
    font-size: 14px;
  }

  .header-actions {
    gap: 6px;
  }

  .btn-getstarted {
    padding: 8px 14px;
    font-size: 12px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }
}

/* ≤ 1199px */

@media (max-width: 1199px) {
  .header-inner {
    min-height: 74px;
    gap: 8px;
  }

  .logo {
    flex: 1;
  }

  .logo img {
    height: 50px;
  }

  .logo-text h1 {
    font-size: 17px;
  }

  .logo-text span {
    font-size: 8px;
    letter-spacing: 0.5px;
    max-width: 130px;
  }

  .desktop-cta,
  .desktop-theme-toggle {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    gap: 6px;
  }

  .btn-getstarted {
    padding: 8px 12px;
    font-size: 12px;
  }

  .theme-toggle,
  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
  }

  .navmenu {
    position: fixed;
    top: 16px;
    right: 16px;
    width: min(360px, calc(100% - 32px));
    height: calc(100vh - 32px);
    background: var(--nav-mobile-background-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 18px 18px 24px;
    transform: translateX(115%);
    transition: transform 0.35s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  }

  .navmenu.active {
    transform: translateX(0);
  }

  .navmenu-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
  }

  .mobile-theme-toggle,
  .mobile-nav-close {
    display: inline-flex;
  }

  .navmenu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .navmenu li {
    width: 100%;
  }

  .navmenu a {
    width: 100%;
    margin: 0;
    padding: 14px 14px;
    font-size: 16px;
    color: var(--heading-color);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    justify-content: space-between;
  }

  .navmenu a:hover,
  .navmenu a.active {
    color: var(--heading-color);
    border-color: rgba(99, 102, 241, 0.35);
    background: var(--surface-light);
  }

  .navmenu a::after {
    display: none;
  }

  .nav-arrow {
    display: inline-flex;
    font-size: 18px;
    color: var(--accent-color);
  }

  .mobile-menu-actions {
    display: block;
    margin-top: 18px;
  }

  .mobile-menu-actions .btn-getstarted {
    width: 100%;
  }
}

/* ≤ 991px */

@media (max-width: 991px) {
  .logo img {
    height: 45px;
  }

  .logo-text h1 {
    font-size: 16px;
  }

  .logo-text span {
    font-size: 8px;
    max-width: 115px;
  }

  .header-actions {
    gap: 5px;
  }

  .btn-getstarted {
    padding: 7px 11px;
    font-size: 11px;
  }

  .theme-toggle,
  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
  }
}

/* ≤ 767px */

@media (max-width: 767px) {
  .header-inner {
    gap: 6px;
  }

  .logo img {
    height: 40px;
  }

  .logo-text h1 {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-text span {
    font-size: 7px;
    max-width: 100px;
  }

  .header-actions {
    gap: 5px;
  }

  .btn-getstarted {
    padding: 7px 10px;
    font-size: 11px;
  }

  .theme-toggle,
  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
  }

  .navmenu {
    top: 12px;
    right: 12px;
    width: calc(100% - 24px);
    height: calc(100vh - 24px);
    border-radius: 20px;
  }
}

/* ≤ 575px */

@media (max-width: 575px) {
  html,
  body {
    overflow-x: hidden;
  }

  .header-inner {
    gap: 6px;
  }

  .logo {
    flex: 1;
  }

  .logo img {
    height: 35px;
  }

  .logo-text h1 {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions {
    gap: 5px;
  }

  .btn-getstarted {
    padding: 6px 10px;
    font-size: 11px;
  }

  .theme-toggle,
  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
  }
}

/* Theme-specific */
body.light-theme .theme-toggle,
body.light-theme .mobile-nav-toggle,
body.light-theme .mobile-nav-close {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

body.dark-theme .theme-toggle,
body.dark-theme .mobile-nav-toggle,
body.dark-theme .mobile-nav-close {
  background: var(--surface-color);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

/* Scroll To Top */

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



/* Disable AOS delay on mobile */
@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Page Title */

.page-title {
  padding: 30px 0;
  background: var(--background-color);
}

.page-title h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading-color);
}

.breadcrumbs {
  font-size: 14px;
  color: var(--default-color);
  margin-top: 5px;
}

.breadcrumbs span {
  margin: 0 6px;
  opacity: 0.5;
}

/* Sections */

.section {
  background: var(--background-color);
}


/* Section Titles */

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

.section-title h2 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--default-color);
  opacity: 0.7;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

/* HERO SECTION */

.hero {
  padding: 100px 0;
  padding-bottom: 50px;
}

.hero-content {
  max-width: 600px;
}

/* Tag */

.hero-tag {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Title */

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero h1 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */

.hero p {
  font-size: 16px;
  color: var(--default-color);
  opacity: 0.8;
  margin-bottom: 25px;
}

/* Features */

.hero-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hero-features li {
  margin-bottom: 8px;
  font-size: 14px;
}
.hero-cta {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.hero-cta .btn {
  flex: 1;
  white-space: nowrap;
  font-size: 13px;
  padding: 8px 10px;
}
.btn-primary {
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--accent-gradient);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
  padding: 12px 22px;
  border-radius: 8px;
  border: 1.5px solid var(--contrast-color);
  color: var(--heading-color);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background:linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color) 6%, var(--background-color)),
    var(--background-color)
  )
}


/* Hero Image */

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 12px;
}

/* Floating Cards */

.stat-card {
  position: absolute;
  background: var(--surface-color);
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stat-card.top {
  top: -20px;
  right: -20px;
}

.stat-card.bottom {
  bottom: -20px;
  left: -20px;
}

.stat-card strong {
  display: block;
  font-size: 18px;
  color: var(--accent-color);
}

/* Mobile Fix */

@media (max-width: 768px) {
  .hero {
    padding: 70px 0;
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

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

  .hero-image-wrapper {
    margin-top: 40px;
  }

  .stat-card {
    position: static;
    margin-top: 15px;
  }
}


.hero-carousel-wrap {
  position: relative;
}

.hero-experience-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  z-index: 5;
  width: 170px;
  padding: 18px 16px;
  border-radius: 22px;
  background: #22d3ee;
  color: #000;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  animation: badgeWaggle 3s ease-in-out infinite;
}

.hero-experience-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-experience-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-experience-text h4 {
  margin: 0 0 4px;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
  color: #000;
}

.hero-experience-text p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
}

.hero-carousel-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px var(--shadow-color);
}
.hero-carousel-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.05)
  );
}
@keyframes badgeWaggle {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  15% {
    transform: rotate(-4deg) translateY(-4px);
  }
  30% {
    transform: rotate(4deg) translateY(0);
  }
  45% {
    transform: rotate(-3deg) translateY(-3px);
  }
  60% {
    transform: rotate(3deg) translateY(0);
  }
  75% {
    transform: rotate(-1deg) translateY(-2px);
  }
}

body.light-theme .hero-experience-badge {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

body.dark-theme .hero-experience-badge {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

@media (max-width: 991px) {
  .hero-experience-badge {
    left: 10px;
    bottom: 16px;
    width: 150px;
    padding: 16px 14px;
  }

  .hero-experience-text h4 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .hero-experience-badge {
    left: 12px;
    bottom: 12px;
    width: 130px;
    padding: 14px 12px;
    border-radius: 18px;
  }

  .hero-experience-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .hero-experience-text h4 {
    font-size: 28px;
  }

  .hero-experience-text p {
    font-size: 13px;
  }
}

/* ABOUT SECTION */
.about {
  padding: 90px 0;
  background: var(--surface-color);
}

.about .row {
  align-items: stretch;
}

/* LEFT VISUAL SIDE */
.about-visual-single {
  position: relative;
  height: 100%;
  min-height: 620px;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 50px var(--shadow-color);
}

.about-image-main {
  height: 100%;
  min-height: 620px;
}

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

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

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--background-color) 36%, transparent),
    color-mix(in srgb, var(--background-color) 4%, transparent)
  );
  pointer-events: none;
}

/* ROUND EXPERIENCE BADGE */
.about-years-badge {
  position: absolute;
  right: -24px;
  bottom: 28px;
  z-index: 3;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--contrast-color);
  box-shadow: 0 18px 40px var(--shadow-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  border: 6px solid var(--background-color);
}

.about-years-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--contrast-color) 16%, transparent);
  margin-bottom: 10px;
}

.about-years-icon i {
  font-size: 20px;
  color: var(--contrast-color);
}

.about-years-badge h3 {
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--contrast-color);
}

.about-years-badge p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--contrast-color);
}

/* RIGHT CONTENT SIDE */
.about-content {
  width: 100%;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.about-text {
  color: var(--default-color);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
  opacity: 0.95;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  color: var(--heading-color);
  box-shadow: 0 8px 20px var(--shadow-color);
  transition: all 0.25s ease;
  font-size: 14px;
  cursor: default;
}

.about-feature i {
  color: var(--accent-color);
  font-size: 16px;
  transition: transform 0.25s ease;
}

.about-feature span {
  font-weight: 600;
  line-height: 1.4;
}

.about-feature:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent-color) 30%, var(--border-color));
  box-shadow: 0 12px 26px var(--shadow-color);
}

.about-feature:hover i {
  transform: scale(1.2);
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.about-stat {
  padding: 22px 16px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(135deg, var(--surface-color), var(--surface-light));
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 28px var(--shadow-color);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-stat:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color) 28%, var(--border-color));
}

.about-stat h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.about-stat p {
  margin: 0;
  color: var(--default-color);
  font-size: 14px;
}

[data-aos] {
  transition-property: transform, opacity;
}

.about-stat,
.about-image,
.about-years-badge {
  will-change: transform;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about {
    padding: 80px 0;
  }

  .about-visual-single {
    min-height: 420px;
  }

  .about-image-main {
    min-height: 420px;
  }

  .about-years-badge {
    right: 18px;
    bottom: 18px;
    width: 160px;
    height: 160px;
    border-width: 4px;
  }

  .about-years-badge h3 {
    font-size: 34px;
  }

  .about-content {
    padding-left: 0;
  }

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

@media (max-width: 767px) {
  .about {
    padding: 70px 0;
  }

  .about-image {
    border-radius: 18px;
  }

  .about-visual-single {
    min-height: 320px;
  }

  .about-image-main {
    min-height: 320px;
  }

  .about-years-badge {
    right: 12px;
    bottom: 12px;
    width: 130px;
    height: 130px;
    padding: 12px;
  }

  .about-years-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }

  .about-years-icon i {
    font-size: 16px;
  }

  .about-years-badge h3 {
    font-size: 28px;
  }

  .about-years-badge p {
    font-size: 12px;
  }

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

  .about-text {
    font-size: 16px;
  }

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

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.services
{
 padding: 50px 0;
 background: var(--surface-color);
}

.service-item {
  display: flex;
  height: 100%;
}

.service-card {
  width: 100%;
  background: var(--contast-color);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px var(--shadow-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px var(--shadow-color);
  border-color: color-mix(in srgb, var(--accent-color) 30%, var(--border-color));
}

.service-thumb {
  position: relative;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
  background: var(--surface-light);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-thumb img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--background-color) 72%, transparent),
    color-mix(in srgb, var(--background-color) 12%, transparent)
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
}

.service-action {
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--contrast-color) 18%, transparent);
  background: color-mix(in srgb, var(--surface-color) 82%, transparent);
  color: var(--heading-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.service-action:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  transform: scale(1.06);
}

.service-info {
  padding: 26px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.service-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 28%, transparent);
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.service-badge {
  font-size: 15px;
  font-weight: 700;
  color: #f59e0b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-info h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-bottom: 14px;
}

.service-info p {
  color: var(--default-color);
  opacity: 0.95;
  margin-bottom: 18px;
  line-height: 1.7;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.service-tags span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: color-mix(in srgb, var(--accent-color) 80%, var(--heading-color));
  background: color-mix(in srgb, var(--accent-color) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent-color) 16%, transparent);
}

.service-link {
  border: none;
  background: transparent;
  padding: 0;
  font-weight: 700;
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--accent-color);
}

.services-banner {
  margin-top: 50px;
  padding: 28px 32px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color) 12%, var(--surface-color)),
    color-mix(in srgb, #22d3ee 8%, var(--surface-light))
  );
  border: 1px solid color-mix(in srgb, var(--accent-color) 20%, var(--border-color));
  box-shadow: 0 14px 35px var(--shadow-color);
}

.services-banner h4 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.services-banner p {
  margin-bottom: 0;
  color: var(--default-color);
  opacity: 0.92;
}

.btn-launch,
.btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-launch {
  background: var(--accent-gradient);
  color: #fff;
  margin-right: 10px;
  border: none;
}

.btn-launch:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.btn-explore {
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, var(--border-color));
  color: var(--heading-color);
  background: transparent;
}

.btn-explore:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color) 6%, transparent);
}

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

  .service-info {
    padding: 22px;
  }
}

@media (max-width: 767px) {
  .service-card {
    border-radius: 18px;
  }

  .service-thumb {
    min-height: 210px;
  }

  .service-info h3 {
    font-size: 18px;
  }

  .services-banner {
    padding: 24px 20px;
    text-align: center;
  }

  .btn-launch,
  .btn-explore {
    width: 100%;
    margin: 6px 0;
  }
}

/* Modal */
.service-modal .modal-content {
  background: linear-gradient(
    135deg,
    var(--surface-color),
    var(--surface-light)
  );
  border: 1px solid color-mix(in srgb, var(--accent-color) 20%, var(--border-color));
  border-radius: 20px;
  color: var(--default-color);
  box-shadow: 0 20px 60px var(--shadow-color);
}

.service-modal .modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 24px;
}

.service-modal .modal-title {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.service-modal .modal-body {
  padding: 24px;
}

.service-modal .modal-body p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--default-color);
}

.service-modal .modal-body ul {
  margin: 0;
  padding-left: 18px;
}

.service-modal .modal-body li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.service-modal .btn-close {
  filter: none;
  opacity: 0.85;
}

body.dark-theme .service-modal .btn-close {
  filter: invert(1);
}



.clients {
  padding: 50px 0;
  overflow: hidden;
  background: var(--background-color);
}

.clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
}

.clients-slider + .clients-slider {
  margin-top: 20px;
}

.clients-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.clients-track.track-1 {
  animation-name: clients-scroll-left;
}

.clients-track.track-2 {
  animation-name: clients-scroll-right;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-slide {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  overflow: hidden;
}

.clients-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transition: transform 0.6s ease;
}

.clients-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.clients-slide:hover::before {
  transform: translateX(100%);
}

.clients-slide img {
  max-width: 78%;
  max-height: 58%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.clients-slide:hover img {
  transform: scale(1.04);
}

@keyframes clients-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes clients-scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .clients-slide {
    width: 170px;
    height: 88px;
    margin: 0 14px;
  }

  .clients-track {
    animation-duration: 24s;
  }
}

@media (max-width: 767px) {
  .clients {
    padding: 40px 0;
  }

  .clients-slide {
    width: 140px;
    height: 72px;
    margin: 0 10px;
    border-radius: 12px;
  }

  .clients-track {
    animation-duration: 20s;
  }
}


/* INDUSTRIES SECTION */
.industries {
  padding: 90px 0;
  background: var(--industry-section-bg);
}

.industries .section-title {
  margin-bottom: 50px;
}

.industries .section-title h2 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin-bottom: 12px;
}

.industries .section-title p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--default-color);
  line-height: 1.8;
}

/* CARD */
.industry-card {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 18px 50px var(--shadow-color);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px var(--shadow-color);
  border-color: color-mix(in srgb, var(--accent-color) 28%, var(--border-color));
}

/* IMAGE */
.industry-image {
  position: absolute;
  inset: 0;
}

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

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

/* OVERLAY */
.industry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(
    to top,
    var(--industry-overlay-bottom) 0%,
    var(--industry-overlay-mid) 40%,
    var(--industry-overlay-top) 100%
  );
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--industry-icon-bg);
  border: 1px solid var(--industry-icon-border);
  backdrop-filter: blur(8px);
}

.industry-icon i {
  font-size: 24px;
  color: var(--industry-card-text);
}

.industry-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--industry-card-text);
  margin-bottom: 10px;
}

.industry-overlay p {
  margin: 0;
  color: var(--industry-card-text-soft);
  line-height: 1.7;
  font-size: 15px;
  max-width: 95%;
}

/* SOFT GLOW */
.industry-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 180px;
  height: 180px;
  background: var(--industry-glow);
  filter: blur(55px);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.industry-card:hover::after {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .industries {
    padding: 80px 0;
  }

  .industry-card {
    min-height: 380px;
  }

  .industry-overlay {
    padding: 24px;
  }

  .industry-overlay h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .industries {
    padding: 70px 0;
  }

  .industries .section-title {
    margin-bottom: 35px;
  }

  .industry-card {
    min-height: 320px;
    border-radius: 18px;
  }

  .industry-overlay {
    padding: 20px;
  }

  .industry-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

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

  .industry-overlay h3 {
    font-size: 20px;
  }

  .industry-overlay p {
    font-size: 14px;
  }
}



.contact {
  padding: 90px 0;
}

.contact .main-contact-wrapper {
  background: var(--surface-color);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 25px 80px var(--shadow-color);
  border: 1px solid var(--border-color);
  height: 100%;
}

.contact .info-box {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent-color) 8%, var(--surface-color)),
    var(--surface-color)
  );
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 18%, var(--border-color));
  height: 100%;
  transition: all 0.3s ease;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-color);
  border-color: color-mix(in srgb, var(--accent-color) 40%, var(--border-color));
}

.contact .info-box:hover .icon-wrap {
  background: var(--accent-color);
  transform: scale(1.08);
}

.contact .info-box:hover .icon-wrap i {
  color: var(--contrast-color);
}

.contact .info-box .icon-wrap {
  width: 56px;
  height: 56px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.contact .info-box .icon-wrap i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .info-box h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact .info-box p {
  font-size: 15px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 6px;
  line-height: 1.6;
}

.contact .info-box .availability {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
  display: block;
}

.contact .form-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.contact .form-section .form-intro {
  margin-bottom: 30px;
}

.contact .form-section .form-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.contact .form-section .form-intro p {
  font-size: 15px;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact .form-section .php-email-form .input-group-custom {
  position: relative;
}

.contact .form-section .php-email-form .input-group-custom i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  z-index: 2;
  transition: color 0.3s ease;
}

.contact .form-section .php-email-form .input-group-custom.textarea-group i {
  top: 20px;
  transform: none;
}

.contact .form-section .php-email-form .input-group-custom:focus-within i {
  color: var(--accent-color);
}

.contact .form-section .php-email-form .form-control {
  padding: 15px 18px 15px 50px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background-color: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.contact .form-section .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent-color) 12%, transparent);
  outline: none;
  background-color: var(--background-color);
  color: var(--default-color);
}

.contact .form-section .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color) 58%, transparent);
}

.contact .form-section .php-email-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact .form-section .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  gap: 20px;
}

.contact .form-section .form-footer .form-messages {
  flex: 1;
}

.contact .form-section .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gradient);
  color: var(--contrast-color);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact .form-section .btn-submit i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.contact .form-section .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow-color);
}

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

/* RIGHT SIDE MAP PANEL */
.contact .map-panel {
  position: relative;
  height: 100%;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 80px var(--shadow-color);
  background: var(--surface-color);
}

.contact .map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  display: block;
}

.contact .map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    color-mix(in srgb, var(--background-color) 28%, transparent),
    transparent 45%
  );
  pointer-events: none;
}

.contact .map-overlay-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-color) 84%, transparent);
  border: 1px solid color-mix(in srgb, var(--contrast-color) 10%, transparent);
  backdrop-filter: blur(10px);
}

.contact .map-overlay-card h4 {
  margin: 0 0 6px;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.contact .map-overlay-card p {
  margin: 0;
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.6;
}


.contact .row.align-items-stretch > [class*="col-"] {
  display: flex;
}

.contact .row.align-items-stretch > [class*="col-"] > * {
  width: 100%;
}


body.light-theme .contact .main-contact-wrapper {
  background: #ffffff;
}

body.light-theme .contact .map-overlay-card {
  background: rgba(255, 255, 255, 0.86);
}


body.dark-theme .contact .map-overlay-card {
  background: rgba(15, 23, 42, 0.78);
}

@media (max-width: 992px) {
  .contact .main-contact-wrapper {
    padding: 30px;
  }

  .contact .form-section .form-intro h3 {
    font-size: 24px;
  }

  .contact .map-panel {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .contact .main-contact-wrapper {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .contact .form-section {
    margin-top: 30px;
    padding-top: 30px;
  }

  .contact .form-section .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact .form-section .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .contact .map-panel {
    min-height: 320px;
    border-radius: 22px;
  }

  .contact .map-overlay-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.quote-modal.active {
  opacity: 1;
  visibility: visible;
}

.quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, 0.6);
  backdrop-filter: blur(6px);
}

.quote-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  color: #1f2937;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  padding: 32px;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.28s ease;
}

.quote-modal.active .quote-modal-dialog {
  transform: translateY(0) scale(1);
}

.dark-theme .quote-modal-dialog {
  background: #111827;
  color: #f3f4f6;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.quote-modal-close:hover {
  transform: rotate(90deg);
}

.dark-theme .quote-modal-close {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.quote-modal-header {
  margin-bottom: 24px;
}

.quote-modal-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
}

.quote-modal-header p {
  margin: 0;
  opacity: 0.8;
}

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

.quote-form-group {
  margin-bottom: 18px;
}

.quote-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  background: #fff;
  color: #111827;
}

.dark-theme .quote-form-group input,
.dark-theme .quote-form-group select,
.dark-theme .quote-form-group textarea {
  background: #0f172a;
  color: #f9fafb;
  border: 1px solid #334155;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.quote-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #0f766e);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.quote-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
}

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

.quote-form-status {
  margin: 8px 0 18px;
  font-size: 14px;
  min-height: 20px;
}

.quote-form-status.success {
  color: #16a34a;
}

.quote-form-status.error {
  color: #dc2626;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .quote-modal-dialog {
    padding: 22px;
    border-radius: 16px;
  }

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

  .quote-modal-header h2 {
    font-size: 24px;
  }
}

.footer {
  background: var(--surface-color);
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
  margin-top: 80px;
}

.footer-brand h4 {
  color: var(--heading-color);
  margin-top: 12px;
  font-weight: 700;
}

.footer-logo {
  height: 40px;
}

.footer-brand p {
  color: var(--default-color);
  line-height: 1.7;
  margin-top: 10px;
}

.footer-links h5,
.footer-contact h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 16px;
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--default-color);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-contact p {
  margin: 6px 0;
  color: var(--default-color);
}

.footer-socials {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid var(--industry-overlay-bottom);
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
  color: var(--default-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-copy .sitename {
  font-weight: 600;
  color: var(--heading-color);
}


.footer-copy a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 400;        
  font-size: inherit;      
  line-height: 1;
  transition: 0.3s ease;
}


.footer-copy a:hover {
  color: var(--accent-color);
}


.footer-copy img {
  height: 14px;
  width: auto;
  transform: translateY(1px); 
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

@media (max-width: 767px) {
  .footer {
    text-align: center;
  }

  .footer-copy {
    justify-content: center;
  }
}