/* ====== Decon Theme ====== */
:root{
  --bg: #0B1F2B;            /* page background */
  --card: #122B3A;          /* cards/sections */
  --card-2: #0E2431;        /* darker card */
  --text: #DDE8EF;          /* body text */
  --heading: #FFFFFF;       /* headings */
  --accent: #71D0FF;        /* cyan accent */
  --accent-2:#9FE870;       /* soft green for outlines */
  --chip: #1B3A4B;          /* badge/bg chips */
}

html, body{
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

.text-body{ color: var(--text); }

/* Navbar */
/* Navbar */
/* Navbar - Updated logo + text */
/* ===== Navbar Styling ===== */
.decon-nav {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 0.3rem 2rem;
}

.decon-nav .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.decon-nav .logo-img {
  height: 50px;
  width: auto;
  margin-right: 8px;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b1f2b;
  letter-spacing: 0.5px;
}

.decon-nav .navbar-collapse {
  justify-content: flex-end !important; /* pushes nav links to right edge */
}

.decon-nav .nav-link {
  color: #0b1f2b;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  top: 9px; /* lifts links slightly upward */
}

.decon-nav .nav-link:hover,
.decon-nav .nav-link:focus {
  color: #0056b3;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.nav-link.active {
  color: #3d8720 !important;
  font-weight: 600;
}
/* NAVBAR must allow overflow so dropdowns won't be clipped */
.navbar {
  overflow: visible;
  z-index: 1100; /* ensure navbar above other page elements */
}
.navbar,
.dropdown-menu {
  overflow: visible !important;
}

/* ===== DROPDOWN STYLING ===== */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu.services-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 0;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: block; /* Changed from none to block */
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.nav-item.dropdown:hover .dropdown-menu.services-dropdown,
.nav-item.dropdown.show .dropdown-menu.services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-menu.services-dropdown {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Submenu styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .submenu-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  min-width: 250px;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-submenu:hover > .submenu-menu {
  display: block;
  animation: slideIn 0.2s ease-in-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(5px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Dropdown items */
.dropdown-item {
  padding: 8px 20px;
  color: #333;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-item:hover, 
.dropdown-item:focus {
  background: #f8f9fa;
  color: #0d6efd;
}

.dropdown-item .bi-chevron-right {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Mobile styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .dropdown-menu {
    position: static !important;
    border: none;
    box-shadow: none;
    padding-left: 15px;
  }
  
  .dropdown-submenu > .submenu-menu {
    position: static;
    box-shadow: none;
    padding-left: 15px;
  }
  
  .dropdown-item {
    padding: 8px 10px;
  }
}

.nav-item.dropdown.show .dropdown-menu.services-dropdown {
  opacity: 1;
  pointer-events: auto;
  left: 0;
transform: none;

}

/* FINAL SUBMENU CSS */
.dropdown-submenu {
  position: relative;
}

.submenu-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  min-width: 240px;
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
  display: none;
  z-index: 3000;
}

.dropdown-submenu:hover > .submenu-menu {
  display: block;
}

@media (max-width: 992px) {
  .submenu-menu {
    left: 0;
    top: 100%;
  }
}


.pt-6{ padding-top: 6.5rem; }

/* ======= HERO SECTION (Full Front Page - Keep Original Design) ======= */
.hero-section {
  position: relative;
  width: 100%;
  height: 120vh; /* Full screen height */
  overflow: hidden;
  margin-top: 70px; /* below navbar */
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1) contrast(1.05) saturate(1.05);
}


/* Overlay layer */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.15);
}

/* Keep your existing white angular box exactly as it was */
.hero-text-box {
  background: rgba(255, 255, 255, 0.75);
  padding: 10px 60px 10px 25px;
  max-width: 560px;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  color: #0b1f2b;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Text inside hero box */
.hero-text-box h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1f2b;
  margin-bottom: 6px;
  line-height: 1.1;
}

.hero-text-box p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0b1f2b;
  margin: 0;
  line-height: 1.5;
}

/* Optional subtle fade at bottom for smooth transition */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(11,31,43,0), #0b1f2b 100%);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .hero-text-box {
    padding: 25px;
    max-width: 85%;
    background: rgba(255, 255, 255, 0.92);
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  }

  .hero-text-box h2 {
    font-size: 1.8rem;
  }

  .hero-text-box p {
    font-size: 1rem;
  }
}


/* ===== ABOUT US SECTION ===== */
#about {
  margin-top: 0;
  padding-top: 4rem;
}

.about-section {
  background-color: #0b1f2b;
  color: #dde8ef;
}

.section-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Main rectangle box */
.about-box {
  background: #122b3a;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Text Box */
.about-text-box {
  flex: 1 1 55%;
  color: #dde8ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text-box p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.about-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #dde8ef;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-service-list li::marker {
  color: #71d0ff;
}

.btn-learn {
  background-color: #71d0ff;
  color: #0b1f2b;
  font-weight: 600;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-learn:hover {
  background-color: #5cbfe8;
  color: #052533;
}

/* Image Box */
.about-image-box {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  object-fit: cover;
  height: auto;
}

/* Responsive design */
@media (max-width: 768px) {
  .about-box {
    flex-direction: column;
    text-align: center;
  }

  .about-text-box {
    flex: 1 1 100%;
    align-items: center;
  }

  .about-img {
    max-width: 80%;
    margin-top: 1rem;
  }

  .about-service-list {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .btn-learn {
    align-self: center;
  }
}

/* ===== OUR SERVICES SECTION ===== */
/* ===== OUR SERVICES SECTION ===== */
.services-section {
  background-color: #0b1f2b;
  color: #dde8ef;
}

.services-section .section-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Service Card */
.service-card {
  background: #122b3a;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Placeholder for service images */
.service-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: #0e2431;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  margin-bottom: 0.8rem;
}

/* Text */
.service-card h6 {
  color: #dde8ef;
  font-weight: 600;
  font-size: 1rem;
}

/* Button */
.btn-view {
  background-color: #71d0ff;
  color: #0b1f2b;
  font-weight: 600;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background-color: #5cbfe8;
  color: #052533;
}


.service-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  object-fit: cover;
  background-color: #0e2431;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

@keyframes serviceFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.service-link:hover {
  text-decoration: none !important;
  color: inherit !important;
}


/* Fade-in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeInUp 0.5s ease forwards;
}

/* Responsive layout */
@media (max-width: 768px) {
  .service-card {
    padding: 0.8rem;
  }

  .service-card h6 {
    font-size: 0.95rem;
  }
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-section {
  background-color: #0b1f2b; /* same as services */
  color: #dde8ef;
}

.why-section .section-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

/* Card Style */
.why-card {
  background: #122b3a; /* matches service card color */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Image inside cards */
.why-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.why-card:hover .why-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Text */
.why-card h6 {
  color: #dde8ef;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .why-card {
    padding: 0.8rem;
  }

  .why-img {
    height: 150px;
  }

  .why-card h6 {
    font-size: 0.95rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }
}
/* ===== JOIN OUR TEAM SECTION ===== */
.careers-section {
  background-color: #0b1f2b;
  color: #dde8ef;
}

.career-box {
  background: #122b3a;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 700px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

/* Text Styling */
.career-box p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 600px;
  color: #dde8ef;
}

.career-box .highlight {
  color: #71d0ff;
  font-weight: 600;
}

/* Career Button */
.btn-career {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #71d0ff;
  color: #0b1f2b;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.btn-career:hover {
  background-color: #5cbfe8;
  color: #031a23;
  transform: scale(1.03);
}

/* Responsive design */
@media (max-width: 768px) {
  .career-box {
    padding: 1.5rem;
  }

  .career-box p {
    font-size: 0.95rem;
  }

  .btn-career {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
}
/* ===== BLOG SECTION ===== */
.blogs-section {
  background-color: #0b1f2b;
  color: #dde8ef;
}

.blog-card {
  background: #122b3a;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

/* Blog Image */
.blog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid rgba(113, 208, 255, 0.5);
  transition: filter 0.3s ease;
}

.blog-card:hover .blog-img {
  filter: brightness(1.1);
}

/* Blog Content */
.blog-content {
  padding: 1.2rem;
}

.blog-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.blog-text {
  font-size: 0.95rem;
  color: #dde8ef;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Read More Button */
.btn-read {
  background-color: #71d0ff;
  color: #0b1f2b;
  font-weight: 600;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-read:hover {
  background-color: #5cbfe8;
  color: #031a23;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-img {
    height: 180px;
  }
  .blog-title {
    font-size: 1rem;
  }
  .blog-text {
    font-size: 0.9rem;
  }
}
/* ===== OUR CUSTOMERS SECTION ===== */
.customers-section {
  background-color: #0b1f2b;
  color: #dde8ef;
}

.customers-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

/* Category Headings */
.customer-heading {
  display: inline-block;
  background-color: #1b3a4b;
  color: #71d0ff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: 25px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(113, 208, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-heading:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(113, 208, 255, 0.6);
}

/* Logo Section */
.customer-logos img {
  width: 110px;
  height: auto;
  filter: brightness(0.9);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.customer-logos img:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .customer-logos img {
    width: 90px;
  }
  .customer-heading {
    font-size: 1rem;
  }
}
.fade-in-up.visible {
  animation: fadeInUp 1s ease forwards;
}
/* ===== OUR CUSTOMERS SECTION ===== */
.customers-section {
  background-color: #0b1f2b;
  color: #dde8ef;
  text-align: center;
}

.customers-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

/* Category Heading */
.customer-heading {
  display: inline-block;
  background-color: #1b3a4b;
  color: #71d0ff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: 25px;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* White Box for Logos */
.white-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Carousel Container */
.logo-carousel {
  position: relative;
  width: 100%;
}

/* Logo Row (Single Line Scroll) */
.logo-track {
  display: flex;
  gap: 60px;
  animation: scroll-horizontal 25s linear infinite;
  width: max-content;
}

.logo-track img {
  width: 130px;
  height: auto;
  filter: brightness(1);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Animation for Continuous Scroll */
@keyframes scroll-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track img {
    width: 90px;
  }
  .customer-heading {
    font-size: 1rem;
  }
}
/* ===== OUR CUSTOMERS SECTION (Both Boxes Scroll Same Direction) ===== */
.customers-section {
  background-color: #0b1f2b;
  color: #dde8ef;
  text-align: left;
}

.customers-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
}

/* White curved boxes */
.customer-box {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  padding: 25px 15px;
  margin-bottom: 40px;
  width: 85%;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-left: 5%; /* aligned slightly from left */
}

.customer-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

/* Logo container */
.logo-scroll {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

/* Logo track (logos arranged inline) */
.logo-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  animation: scrollLeft 35s linear infinite;
}

.logo-track img {
  height: 65px;
  width: auto;
  filter: grayscale(30%) brightness(0.95);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1.1);
}

/* Smooth continuous leftward scrolling */
@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Apply same scroll to both boxes */
.left-scroll .logo-track,
.right-scroll .logo-track {
  animation: scrollLeft 35s linear infinite;
}

/* Pause animation on hover */
.customer-box:hover .logo-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .customers-section .container {
    align-items: center;
  }

  .customer-box {
    width: 95%;
    margin-left: 0;
  }

  .logo-track img {
    height: 50px;
    gap: 40px;
  }
}

/* ===== FOOTER (Himavat-style compact layout) ===== */
.footer-section {
  position: relative;
  background: #061f31 !important;
  background-image: none !important;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #f39a24, #62ad32, #2c8be7);
}

.footer-section::after {
  content: "";
  position: absolute;
  right: -130px;
  top: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(98, 173, 50, 0.08);
  pointer-events: none;
}

.footer-overlay {
    padding: 35px 0 20px;
    position: relative;
    z-index: 1;
}

/* Titles */

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #8be864;
    margin-bottom: 8px;
}

.footer-section .col-md-4:nth-child(2) .footer-title {
  color: #71d0ff;
}

.footer-section .col-md-4:nth-child(3) .footer-title {
  color: #f39a24;
}
/* Text */
.footer-text {
  font-size: 0.9rem;
  color: #e6f1f8;
  line-height: 1.4;
}

.footer-link {
  color: #e8f7ff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #8be864;
  text-decoration: underline;
}

/* Viewer Guides */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 4px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #f39a24, #62ad32);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Divider and Copy */
.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-copy {
  font-size: 0.8rem;
  color: #d6e8f2;
  opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-links {
    text-align: center;
  }
}
/* ===== GLOBAL SPACING OPTIMIZATION (No Design Change) ===== */

/* Reduce section top & bottom padding for more compact look */
section {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Reduce margin under section titles */
.section-title {
  margin-bottom: 1.5rem !important;
}

/* Compact the "Our Customers" boxes spacing */
.customer-box {
  margin-bottom: 25px !important;
  padding: 20px 10px !important;
}

/* Reduce space under headings in footer */
.footer-section .row {
  margin-bottom: 10px !important;
}

/* Compact About, Services, Why Choose, Careers, Blogs sections */
.about-box,
.career-box,
.blog-card,
.why-card,
.service-card {
  margin-bottom: 15px !important;
}

/* Compact footer padding overall */
.footer-overlay {
  padding: 25px 0 15px !important;
}

/* Remove large gaps between sections that come from Bootstrap py-5 */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Reduce gap between blog cards and other grid elements */
.row.g-4 {
  --bs-gutter-y: 1.5rem;
  --bs-gutter-x: 1.5rem;
}

/* Keep mobile padding proportional */
@media (max-width: 768px) {
  section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}
/* ===== CONTACT HEADER ===== */

/* =====================================================
   SERVICE LOCATIONS SECTION
===================================================== */

.service-locations-section {
  position: relative;
  overflow: hidden;
  background: #0b1f2b;
  color: #dde8ef;
}

.service-locations-section::before {
  display: none;
}

.location-heading {
  max-width: 760px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.service-locations-section .section-title {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
}

.service-map-image-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 1.5rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(113, 208, 255, 0.2);
  border-radius: 8px;
  background: #122b3a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.service-map-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.location-small-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  color: #71d0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.location-description {
  max-width: 720px;
  margin: 0 auto;
  color: #b9cbd6;
  font-size: 15px;
  line-height: 1.8;
}

.service-map-wrapper {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(113, 208, 255, 0.2);
  border-radius: 8px;
  background: #122b3a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

#serviceLocationMap {
  width: 100%;
  height: 100%;
  min-height: 518px;
  z-index: 1;
}

.map-info-box {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
  padding: 13px 16px;
  border: 1px solid rgba(113, 208, 255, 0.28);
  border-radius: 8px;
  background: rgba(18, 43, 58, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.map-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #71d0ff;
  color: #0b1f2b;
  font-size: 18px;
}

.map-info-box strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.map-info-box span {
  display: block;
  margin-top: 2px;
  color: #b9cbd6;
  font-size: 11px;
}

.location-list-card {
  height: 100%;
  min-height: 520px;
  padding: 24px;
  border: 1px solid rgba(113, 208, 255, 0.2);
  border-radius: 8px;
  background: #122b3a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.location-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(113, 208, 255, 0.18);
}

.location-list-header span {
  color: #71d0ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.location-list-header h4 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
}

.location-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(113, 208, 255, 0.12);
  color: #71d0ff;
  font-size: 18px;
  font-weight: 900;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 8px 10px;
  border: 1px solid rgba(113, 208, 255, 0.16);
  border-radius: 8px;
  background: #0e2431;
  color: #dde8ef;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.location-item:hover,
.location-item.active {
  border-color: #71d0ff;
  background: rgba(113, 208, 255, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(113, 208, 255, 0.12);
  color: #71d0ff;
  font-size: 12px;
}

.location-contact-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 8px;
  background: #0e2431;
  border: 1px solid rgba(113, 208, 255, 0.18);
  color: #ffffff;
}

.location-contact-box > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(113, 208, 255, 0.12);
  color: #71d0ff;
  font-size: 19px;
}

.location-contact-box strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.location-contact-box p {
  margin: 5px 0 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.6;
}

.location-contact-box a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #71d0ff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.location-contact-box a:hover {
  gap: 11px;
  color: #ffffff;
}

.service-map-popup {
  min-width: 150px;
  text-align: center;
}

.service-map-popup strong {
  display: block;
  margin-bottom: 5px;
  color: #0f172a;
  font-size: 14px;
}

.service-map-popup span {
  color: #64748b;
  font-size: 11px;
}

.custom-location-marker {
  background: transparent;
  border: none;
}

.custom-marker-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  box-shadow: 0 5px 15px rgba(29, 78, 216, 0.4);
  transform: rotate(-45deg);
}

.custom-marker-inner i {
  color: #ffffff;
  font-size: 13px;
  transform: rotate(45deg);
}

.service-locations-section .leaflet-control-zoom a,
.service-locations-section .leaflet-control-attribution {
  color: #0b1f2b;
}

@media (max-width: 991px) {
  .service-map-wrapper,
  .location-list-card {
    min-height: auto;
  }

  #serviceLocationMap {
    min-height: 470px;
  }
}

@media (max-width: 575px) {
  .service-locations-section {
    padding-left: 5px;
    padding-right: 5px;
  }

  .service-map-wrapper {
    min-height: 400px;
    border-width: 5px;
    border-radius: 8px;
  }

  #serviceLocationMap {
    min-height: 400px;
  }

  .map-info-box {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: auto;
  }

  .location-list-card {
    padding: 18px;
    border-radius: 8px;
  }

  .location-list {
    grid-template-columns: 1fr;
  }

  .location-item {
    min-height: 43px;
    font-size: 13px;
  }
}

.page-banner {
  margin-top: 75px;
  height: 14vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CONTACT HEADER (MATCH OTHER PAGES) ===== */
/* ===== CONTACT HEADER (MATCH OTHER PAGES) ===== */
.contact-header {
  margin-top: 75px; /* same as page-banner */
  height: 14vh;     /* SAME HEIGHT */
  background: #1A3A4E; /* flat color like others */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.contact-content {
  color: #fff;
  max-width: 700px;
}

.contact-content h1 {
  font-size: 1.6rem; /* was 2.6rem */
  font-weight: 700;
}

.contact-content p {
  font-size: 0.9rem;
  opacity: 0.85;
}


/* ===== CONTACT BOX ===== */
.contact-box {
  background: #122b3a;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* ===== INPUTS (DARK THEME) ===== */
.contact-input {
  background-color: #0e2431;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.contact-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-input:focus {
  background-color: #0e2431;
  border-color: #71d0ff;
  box-shadow: none;
  color: #fff;
}

/* ===== BUTTON ===== */
.btn-primary {
  background-color: #71d0ff;
  border: none;
  color: #0b1f2b;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #5cbfe8;
}


.page-banner {
      background: #1A3A4E;
      text-align: center;
      margin-top: 75px;
      height: 14vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .page-banner h1 {
      color: white;
      font-size: 26px;
      font-weight: 700;
      margin: 0;
    }

    /* CONTENT BOX */
    .content-box {
      background: #122b3a;
      border-radius: 12px;
      padding: 35px 40px;
      border: 1px solid rgba(113, 208, 255, 0.25);
      color: #d8e9f6;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      margin-bottom: 40px;
    }

    .content-box h2 {
      color: #71D0FF;
      font-size: 30px;
      margin-bottom: 20px;
    }

    .product-img {
      width: 100%;
      max-height: 320px;
      object-fit: contain;
      border-radius: 14px;
    }

    .para {
      font-size: 18px;
      line-height: 1.6;
      color: #d8e9f6;
    }

    /* SERVICES ICON ROW */
    .service-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 16px;
      font-size: 18px;
    }
    .service-item i {
      color: #71D0FF;
      font-size: 26px;
      margin-right: 12px;
      margin-top: 4px;
    }

    /* ADVANTAGES */
    .adv-box ul {
      list-style: none;
      padding-left: 0;
    }
    .adv-box li {
      padding: 8px 0;
      font-size: 18px;
      line-height: 1.6;
      color: #d8e9f6;
    }
    .adv-box i {
      color: #71D0FF;
      margin-right: 8px;
      font-size: 20px;
    }

/* -------- Footer (Inner Pages) -------- */
body > footer {
    text-align: center;
    color: #dde8ef;
    padding: 12px 10px;
    border-top: 1px solid rgba(113, 208, 255, 0.35);
    background-color: rgba(11, 31, 43, 0.95);
    font-size: 0.9rem;
}

.inner-footer {
    text-align: center;
    color: #dde8ef;
    padding: 12px 0;
    border-top: 1px solid rgba(113, 208, 255, 0.35);
    background-color: rgba(11, 31, 43, 0.95);
    font-size: 0.85rem;
}

/* ===============================
   RESPONSIVE FIXES
   =============================== */
@media (max-width: 768px) {

    .page-banner {
        min-height: 90px;
        padding: 15px;
    }

    .page-banner h1 {
        font-size: 1.4rem;
    }

    .content-box {
        padding: 25px 20px;
    }

    .product-img {
        margin-bottom: 20px;
        max-height: 240px;
    }

    .content-box h2 {
        font-size: 1.35rem;
    }

    .service-item,
    .adv-box li {
        font-size: 0.95rem;
    }
}

/* ===== CODEX HOME UPDATE START ===== */
/* =========================
   DECON SOLAR HOME PAGE
========================= */
:root {
  --home-navy: #06253a;
  --home-blue: #0b4f78;
  --home-green: #62ad32;
  --home-green-dark: #3d8720;
  --home-orange: #f39a24;
  --home-orange-dark: #dd7613;
  --home-white: #ffffff;
  --home-ink: #102534;
  --home-muted: #607382;
  --home-bg: #f4f9fc;
  --home-border: #dce8ef;
  --home-shadow: 0 18px 45px rgba(6, 37, 58, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  background: #ffffff;
  color: var(--home-ink);
  font-family: "Poppins", sans-serif;
}

/* NAVBAR */
.navbar.decon-nav {
  background: #ffffff;
  padding: 0.3rem 2rem;
  box-shadow: 0 4px 18px rgba(6, 37, 58, 0.08);
  overflow: visible;
  z-index: 1100;
}

.decon-nav .logo-img {
  height: 50px;
  width: auto;
}

.decon-nav .navbar-collapse {
  justify-content: flex-end !important;
}

.decon-nav .nav-link {
  color: var(--home-ink) !important;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 10px;
}

.decon-nav .nav-link:hover,
.decon-nav .nav-link.active {
  color: var(--home-green-dark) !important;
}

.nav-upneda-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  min-height: 50px;
  margin-left: 10px;
  padding: 4px;
  border: 2px solid #3d8720;
  border-radius: 6px;
  background: #ffffff;
}

.nav-hareda-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  min-height: 50px;
  margin-left: 4px;
  padding: 4px;
  border: 2px solid #3d8720;
  border-radius: 6px;
  background: #ffffff;
}

.nav-upneda-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.nav-hareda-logo img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 42px;
}

.mobile-upneda-logo,
.mobile-hareda-logo {
  display: none;
}

/* HERO */
.home-hero {
  width: 100%;
  max-width: 100vw;
  min-height: 112vh;
  height: 112vh;
  max-height: none;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #06253a;
}

/* ===============================
   DECON SOLAR CHATBOT
================================ */
.decon-chatbot {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 99998;
  font-family: inherit;
}

.chatbot-launcher {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0d6fa8, #083b58);
  color: #ffffff;
  font-size: 23px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(4, 34, 53, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  transform: translateY(-3px);
  background: linear-gradient(145deg, #138fcf, #0b4d70);
  box-shadow: 0 16px 34px rgba(4, 34, 53, 0.32);
  outline: none;
}

.chatbot-window {
  position: absolute;
  right: 68px;
  bottom: -42px;
  width: min(340px, calc(100vw - 32px));
  height: min(420px, calc(100vh - 190px));
  display: none;
  overflow: hidden;
  border: 1px solid rgba(10, 84, 120, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(3, 27, 43, 0.26);
}

.chatbot-window.active {
  display: flex;
  flex-direction: column;
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  background: linear-gradient(135deg, #083b58, #0d6f8f);
  color: #ffffff;
}

.chatbot-header strong,
.chatbot-header small {
  display: block;
}

.chatbot-header strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.chatbot-header small {
  margin-top: 3px;
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
}

#chatbotClose {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}

.chatbot-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  overflow-y: auto;
  background: linear-gradient(180deg, #f6fbfd, #ffffff);
}

.chatbot-message {
  max-width: 88%;
  padding: 9px 11px;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.4;
  white-space: pre-line;
}

.chatbot-message.bot {
  align-self: flex-start;
  border-top-left-radius: 4px;
  background: #eaf5fa;
  color: #06283d;
}

.chatbot-message.user {
  align-self: flex-end;
  border-top-right-radius: 4px;
  background: #0b4f78;
  color: #ffffff;
}

.chatbot-options {
  display: grid;
  gap: 7px;
  max-height: 178px;
  padding: 10px 12px 12px;
  overflow-y: auto;
  border-top: 1px solid #dcecf3;
  background: #ffffff;
}

.chatbot-option {
  width: 100%;
  border: 1px solid #cfe5ee;
  border-radius: 10px;
  padding: 8px 10px;
  background: #ffffff;
  color: #06283d;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.chatbot-option:hover,
.chatbot-option:focus-visible {
  border-color: #f39a1e;
  background: #fff7ea;
  color: #083b58;
  transform: translateX(2px);
  outline: none;
}

.chatbot-option.primary {
  border-color: #f39a1e;
  background: #f39a1e;
  color: #ffffff;
}

.chatbot-option.secondary {
  background: #edf8f1;
  border-color: #b8e3c4;
}

@media (max-width: 768px) {
  .decon-chatbot {
    right: 16px;
    bottom: 84px;
  }

  .chatbot-launcher {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .chatbot-window {
    right: 62px;
    bottom: -34px;
    width: min(318px, calc(100vw - 92px));
    height: min(390px, calc(100vh - 180px));
  }
}

/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  text-decoration: none !important;
  font-size: 25px;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.22),
    0 0 0 0 rgba(37, 211, 102, 0.5);
  z-index: 99999;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.28),
    0 0 0 8px rgba(37, 211, 102, 0.12);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #083b58;
  color: #ffffff;
  padding: 8px 13px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.25s ease;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 8px 25px rgba(0, 0, 0, .22),
      0 0 0 0 rgba(37, 211, 102, .45);
  }
  70% {
    box-shadow:
      0 8px 25px rgba(0, 0, 0, .22),
      0 0 0 13px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 8px 25px rgba(0, 0, 0, .22),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 18px;
    font-size: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

.home-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-hero-video-mobile {
  display: none;
}

.home-sound-btn {
  position: absolute;
  left: 30px;
  right: auto;
  bottom: 118px;
  z-index: 5;
  width: 48px;
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(6, 37, 58, 0.96), rgba(8, 62, 91, 0.9));
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 0 4px rgba(243, 154, 36, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.home-sound-btn i {
  color: #f39a24;
  font-size: 22px;
  filter: drop-shadow(0 2px 5px rgba(243, 154, 36, 0.35));
}

.home-sound-btn:hover {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(145deg, #0b4f78, #3d8720);
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.3),
    0 0 0 7px rgba(243, 154, 36, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(4, 31, 49, 0.84) 0%,
    rgba(5, 43, 66, 0.68) 38%,
    rgba(5, 43, 66, 0.28) 62%,
    rgba(5, 43, 66, 0.02) 100%
  );
  pointer-events: none;
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -170px;
  top: 80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 173, 50, 0.16), transparent 68%);
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  z-index: 3;
  max-width: 570px;
  padding: 125px 0 132px;
  color: #ffffff;
}

@media (min-width: 1200px) {
  .home-hero-content {
    margin-left: -12px;
  }
}

.home-eyebrow,
.home-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-eyebrow {
  color: #b8ec94;
}

.home-eyebrow::before,
.home-section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--home-orange);
}

.home-hero h1 {
  max-width: 570px;
  margin: 16px 0 18px;
  font-size: clamp(2rem, 3.55vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.home-green {
  color: var(--home-green);
}

.home-orange {
  color: var(--home-orange);
}

.home-hero p {
  max-width: 555px;
  margin: 0;
  color: #e5eff4;
  font-size: 0.95rem;
  line-height: 1.72;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.home-btn {
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 750;
  transition: 0.24s ease;
}

.home-btn-primary {
  background: linear-gradient(135deg, var(--home-orange), var(--home-orange-dark));
  color: #ffffff;
  box-shadow: 0 13px 28px rgba(243, 154, 36, 0.25);
}

.home-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(243, 154, 36, 0.34);
}

.home-btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(7px);
}

.home-btn-outline:hover {
  color: var(--home-navy);
  background: #ffffff;
}

.home-btn-dark {
  margin-top: 6px;
  background: var(--home-navy);
  color: #ffffff;
}

.home-btn-dark:hover {
  color: #ffffff;
  background: var(--home-blue);
  transform: translateY(-2px);
}

.home-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-hero-tags span {
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(4,31,49,0.42);
  color: #ffffff;
  backdrop-filter: blur(7px);
  font-size: 0.78rem;
  font-weight: 600;
}

.home-hero-tags i {
  color: var(--home-orange);
}

.home-hero-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  height: 78px;
  pointer-events: none;
}

.home-hero-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-divider-fill {
  fill: #ffffff;
}

.home-divider-line {
  fill: none;
  stroke: url(#homeCurveGradient);
  stroke-width: 5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

/* SHARED */
.home-section {
  padding: 88px 0;
}

.home-section-header {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.home-section-title {
  margin: 10px 0 17px;
  color: var(--home-navy);
  font-size: clamp(1.75rem, 3.3vw, 3.2rem);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-section-title span {
  color: var(--home-green-dark);
}

.home-section-copy {
  color: var(--home-muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

/* ABOUT */
.home-about {
  background:
    linear-gradient(135deg, rgba(244,250,253,0.92) 0%, #ffffff 46%, rgba(239,249,242,0.82) 100%),
    radial-gradient(circle at 3% 18%, rgba(98,173,50,0.08), transparent 23%),
    radial-gradient(circle at 96% 85%, rgba(44,139,231,0.1), transparent 25%),
    #ffffff;
}

.home-about .row {
  align-items: flex-start !important;
}

.home-about .home-section-title {
  max-width: 530px;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.04;
}

.home-about .home-section-copy {
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.62;
}

.home-about-copy-card {
  height: 100%;
  position: relative;
  padding: 28px 34px 30px;
  overflow: hidden;
  border: 1px solid rgba(203,225,236,0.95);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,255,0.95)),
    repeating-linear-gradient(135deg, rgba(11,79,120,0.035) 0 1px, transparent 1px 12px);
  box-shadow:
    0 22px 52px rgba(6,37,58,0.11),
    0 24px 70px rgba(44,139,231,0.12);
}

.home-about-copy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--home-orange), var(--home-green), var(--home-blue-sky));
}

.home-about-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin: 16px 0;
}

.home-about-proof div {
  padding: 12px 14px;
  border: 1px solid rgba(203,225,236,0.9);
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f4fbff);
  box-shadow: 0 12px 26px rgba(6,37,58,0.07);
}

.home-about-proof strong,
.home-about-proof span {
  display: block;
}

.home-about-proof strong {
  color: var(--home-navy);
  font-size: 0.96rem;
  font-weight: 850;
}

.home-about-proof span {
  margin-top: 2px;
  color: var(--home-muted);
  font-size: 0.82rem;
}

.home-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 9px;
  margin: 17px 0 20px;
}

.home-check-grid div {
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--home-border);
  border-radius: 11px;
  border-left: 4px solid rgba(98,173,50,0.85);
  background: rgba(255,255,255,0.94);
  color: var(--home-ink);
  font-size: 0.88rem;
  font-weight: 650;
  box-shadow: 0 12px 24px rgba(6,37,58,0.07);
}

.home-check-grid i {
  color: var(--home-green-dark);
}

.home-about-image {
  min-height: 455px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    0 26px 64px rgba(6,37,58,0.18),
    0 28px 80px rgba(44,139,231,0.17);
}

.home-about-image img {
  width: 100%;
  height: 100%;
  min-height: 455px;
  object-fit: cover;
  display: block;
}

.home-about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 54%, rgba(4,33,51,0.72));
}

.home-about-image::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 18px;
  pointer-events: none;
}

.home-image-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  max-width: 330px;
  padding: 18px 20px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  background: rgba(4,33,51,0.87);
  color: #ffffff;
  backdrop-filter: blur(9px);
}

.home-image-badge i {
  color: var(--home-orange);
  font-size: 1.6rem;
}

.home-image-badge strong {
  display: block;
  margin-bottom: 3px;
}

.home-image-badge span {
  color: #d9e8ee;
  font-size: 0.82rem;
}

/* SOLUTIONS */
.home-solutions {
  background: var(--home-bg);
}

.home-solutions {
  padding-top: 54px;
}

.home-solutions .home-section-header {
  max-width: 980px;
  margin-bottom: 28px;
}

.home-solutions .home-section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-solutions .home-section-kicker::before {
  width: 28px;
}

.home-solutions .home-section-title {
  margin: 7px 0 10px;
  font-size: clamp(1.45rem, 2.15vw, 1.95rem);
  line-height: 1.08;
  white-space: nowrap;
}

.home-solutions .home-section-copy {
  max-width: 590px;
  margin: 0 auto;
  font-size: 0.86rem;
  line-height: 1.55;
}

.home-solution-card {
  aspect-ratio: 1 / 1;
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--home-shadow);
  text-decoration: none;
}

.home-solution-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-solution-card:hover img {
  transform: scale(1.06);
}

.home-solution-overlay {
  position: absolute;
  inset: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 28%, rgba(4,31,49,0.96));
  color: #ffffff;
}

.home-solution-overlay > span {
  width: 43px;
  height: 43px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--home-orange);
  font-weight: 800;
}

.home-solution-overlay h3,
.home-card-title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
}

.home-solution-overlay p {
  margin: 0 0 15px;
  color: #d7e5ec;
  font-size: 0.87rem;
  line-height: 1.6;
}

.home-solution-overlay strong {
  color: #b8ec94;
  font-size: 0.88rem;
}

/* PROCESS */
.home-process {
  background: #ffffff;
}

.home-process .home-section-header {
  max-width: 980px;
  margin-bottom: 30px;
}

.home-process .home-section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-process .home-section-title {
  margin: 7px 0 0;
  font-size: clamp(1.45rem, 2.15vw, 1.95rem);
  line-height: 1.08;
  white-space: nowrap;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.home-process-step {
  position: relative;
  padding: 28px 20px;
  border: 1px solid var(--home-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow:
    0 18px 40px rgba(6,37,58,0.12),
    0 20px 52px rgba(44,139,231,0.16);
}

.home-process-step:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  right: -19px;
  top: 50%;
  z-index: 3;
  color: var(--home-green);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 3px 8px rgba(61,135,32,0.22);
  transform: translateY(-50%);
}

.home-process-number {
  color: var(--home-orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-process-step > i {
  width: 48px;
  height: 48px;
  margin: 14px 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  font-size: 1.45rem;
  background: linear-gradient(145deg, var(--home-blue), #1688bf);
  box-shadow: 0 12px 24px rgba(11,79,120,0.22);
}

.home-process-step h3,
.home-step-title {
  color: var(--home-navy);
  font-size: 1rem;
  font-weight: 800;
}

.home-process-step p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* UPNEDA */
.home-upneda {
  padding: 42px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--home-navy), #083c58 62%, #0d5b77);
  color: #ffffff;
}

.home-upneda::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.035);
}

.home-upneda .container {
  position: relative;
  z-index: 2;
}

.home-upneda-logo {
  width: 120px;
  height: 106px;
  padding: 12px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.home-upneda-fallback {
  color: #0b4f78;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-upneda-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.home-kicker-light {
  color: #b8ec94;
}

.home-upneda h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.12;
  font-weight: 800;
}

.home-upneda p {
  margin: 0;
  color: #d7e6ed;
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-upneda-benefits {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.home-upneda-benefits h3,
.home-benefits-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.home-upneda-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.home-upneda-benefit-grid span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #eef8fc;
  font-size: 0.8rem;
  font-weight: 700;
}

.home-upneda-benefit-grid i {
  color: #9bd76d;
  font-size: 0.82rem;
}

/* WHY */
.home-why {
  background: #ffffff;
  padding-top: 58px;
  padding-bottom: 62px;
}

.home-why .container {
  width: min(100% - 48px, 1120px);
}

.home-why .home-section-header {
  max-width: 980px;
  margin-bottom: 30px;
}

.home-why .home-section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-why .home-section-title {
  margin: 7px 0 0;
  font-size: clamp(1.45rem, 2.15vw, 1.95rem);
  line-height: 1.08;
  white-space: nowrap;
}

.home-why .row {
  padding: 22px;
  border: 1px solid rgba(203,225,236,0.85);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  box-shadow:
    0 22px 48px rgba(6,37,58,0.1),
    0 24px 58px rgba(44,139,231,0.15);
}

.home-why-card {
  height: 100%;
  padding: 22px 20px;
  border: 1px solid var(--home-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(6,37,58,0.07);
  transition: 0.24s ease;
}

.home-why-card:hover {
  transform: translateY(-7px);
  border-color: rgba(98,173,50,0.5);
  box-shadow: var(--home-shadow);
}

.home-why-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.45rem;
  background: linear-gradient(145deg, var(--home-blue), #1688bf);
}

.home-why-card:nth-child(2n) .home-why-icon {
  background: linear-gradient(145deg, var(--home-green-dark), var(--home-green));
}

.home-why-card h3,
.home-why-title {
  color: var(--home-navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.home-why-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

/* LOCATIONS */
.home-locations {
  background: var(--home-bg);
  padding-top: 56px;
  padding-bottom: 62px;
}

.home-locations .home-section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-locations .home-section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-locations .home-section-title {
  margin: 7px 0 10px;
  font-size: clamp(1.45rem, 2.15vw, 1.95rem);
  line-height: 1.08;
}

.home-locations .home-section-copy {
  font-size: 0.86rem;
  line-height: 1.55;
}

.home-map-wrap {
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--home-shadow);
}

.home-map-wrap img {
  width: 100%;
  display: block;
}

.home-city-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.home-city-list span {
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--home-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--home-navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.home-city-list i {
  color: var(--home-orange);
}

/* OTHER CAPABILITIES */
.home-capabilities {
  background: #ffffff;
  padding-top: 56px;
  padding-bottom: 62px;
}

.home-capabilities .home-section-header {
  max-width: 820px;
  margin-bottom: 30px;
}

.home-capabilities .home-section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-capabilities .home-section-title {
  margin: 7px 0 10px;
  font-size: clamp(1.45rem, 2.15vw, 1.95rem);
  line-height: 1.08;
}

.home-capabilities .home-section-copy {
  font-size: 0.86rem;
  line-height: 1.55;
}

.home-capability-card {
  height: 100%;
  display: block;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 16px 36px rgba(6,37,58,0.14),
    0 8px 18px rgba(13,111,168,0.10);
  color: var(--home-navy);
  text-align: center;
  text-decoration: none;
  transition: 0.24s ease;
}

.home-capability-card:hover {
  color: var(--home-green-dark);
  transform: translateY(-6px);
  box-shadow:
    0 22px 46px rgba(6,37,58,0.20),
    0 12px 24px rgba(243,154,36,0.16);
}

.home-capability-card img {
  width: 100%;
  aspect-ratio: 1/0.82;
  object-fit: cover;
}

.home-capability-card span {
  min-height: 58px;
  padding: 12px;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 750;
}

/* BLOGS */
.home-blogs {
  background: var(--home-bg);
  padding-top: 42px;
  padding-bottom: 46px;
}

.home-blogs .home-section-header {
  max-width: 820px;
  margin-bottom: 22px;
}

.home-blogs .home-section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-blogs .home-section-title {
  margin: 7px 0 0;
  font-size: clamp(1.45rem, 2.15vw, 1.95rem);
  line-height: 1.08;
}

.home-blog-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(6,37,58,0.15),
    0 8px 18px rgba(13,111,168,0.09);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home-blog-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 24px 54px rgba(6,37,58,0.21),
    0 12px 24px rgba(98,173,50,0.13);
}

.home-blog-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.home-blog-content {
  padding: 18px 20px;
}

.home-blog-category {
  color: var(--home-green-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-blog-content h3,
.home-blog-title {
  margin: 6px 0;
  color: var(--home-navy);
  font-size: 1rem;
  font-weight: 800;
}

.home-blog-content p {
  margin-bottom: 10px;
  color: var(--home-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.home-blog-content a {
  color: var(--home-blue);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
}

/* FAQ */
.home-faq {
  background: #f7fafc;
  padding-top: 48px;
  padding-bottom: 52px;
}

.home-faq .home-section-header {
  max-width: 820px;
  margin-bottom: 0;
}

.home-faq .home-section-title {
  margin: 7px 0 10px;
  font-size: clamp(1.45rem, 2.15vw, 1.95rem);
  line-height: 1.08;
}

.home-faq .home-section-copy {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.86rem;
  line-height: 1.55;
}

.home-faq-list {
  max-width: 950px;
  margin: 30px auto 0;
}

.home-faq-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #e3e9ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(6,37,58,0.07);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-faq-item:hover {
  border-color: #78b944;
  box-shadow:
    0 16px 36px rgba(6,37,58,0.13),
    0 8px 18px rgba(98,173,50,0.08);
}

.home-faq-question {
  width: 100%;
  border: 0;
  padding: 17px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  color: #12324a;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.home-faq-question i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf7e8;
  color: #5ca12d;
  font-size: 1rem;
  transition: 0.3s ease;
}

.home-faq-item.active .home-faq-question {
  color: #4f9628;
}

.home-faq-item.active .home-faq-question i {
  background: #5ca12d;
  color: #ffffff;
}

.home-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.home-faq-answer > div {
  overflow: hidden;
}

.home-faq-item.active .home-faq-answer {
  grid-template-rows: 1fr;
}

.home-faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: #5c6b76;
  font-size: 0.86rem;
  line-height: 1.7;
}

.home-faq-contact {
  margin: 0 22px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2384bd;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.home-faq-contact:hover {
  color: #5ca12d;
}

/* CUSTOMERS */
.home-customers {
  background:
    radial-gradient(circle at 8% 15%, rgba(98,173,50,0.08), transparent 24%),
    radial-gradient(circle at 94% 78%, rgba(11,79,120,0.08), transparent 24%),
    #ffffff;
  padding-top: 52px;
  padding-bottom: 58px;
}

.home-customers .home-section-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-customers .home-section-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.11em;
}

.home-customers .home-section-title {
  margin: 7px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.home-customers .home-section-copy {
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.8rem;
  line-height: 1.5;
}

.home-customer-marquee {
  display: grid;
  gap: 24px;
}

.home-customer-box {
  position: relative;
  padding: 24px 0;
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow:
    0 18px 40px rgba(6,37,58,0.1),
    0 18px 44px rgba(44,139,231,0.14);
}

.home-customer-box::before,
.home-customer-box::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.home-customer-box::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0));
}

.home-customer-box::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255,255,255,0));
}

.home-logo-scroll {
  overflow: hidden;
}

.home-customers .home-logo-track {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 54px;
  padding: 0 27px;
  animation: homeLogoScrollLeft 34s linear infinite;
}

.home-logo-scroll-right .home-logo-track {
  animation-name: homeLogoScrollRight;
  animation-duration: 30s;
}

.home-customer-box:hover .home-logo-track {
  animation-play-state: paused;
}

.home-customers .home-logo-track img {
  height: 62px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: grayscale(24%) saturate(0.9);
  opacity: 0.88;
  transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

.home-customers .home-logo-track img:hover {
  transform: translateY(-3px) scale(1.08);
  filter: grayscale(0%) saturate(1.08);
  opacity: 1;
}

@keyframes homeLogoScrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes homeLogoScrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* FINAL CTA */
.home-final-cta {
  padding: 58px 0 50px !important;
  position: relative;
  overflow: hidden;
  background: #f4f9fc;
  color: #ffffff;
}

.home-final-cta .container {
  padding: 38px 44px;
  border-radius: 24px;
  background: linear-gradient(
    110deg,
    rgba(61,135,32,.98),
    rgba(98,173,50,.96)
  );
  box-shadow:
    0 22px 50px rgba(6,37,58,0.12),
    0 24px 64px rgba(98,173,50,0.22);
}

.home-final-cta h2 {
  margin: 9px 0;
  font-weight: 800;
}

.home-final-cta p {
  margin: 0;
  color: #efffe8;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .home-hero {
    height: auto;
    min-height: 108vh;
    max-height: none;
    background-position: 64% center;
  }

  .home-hero-content {
    max-width: 560px;
    padding: 112px 0 128px;
  }

  .home-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-process-step:not(:last-child)::after {
    display: none;
  }

  .home-upneda {
    text-align: center;
  }

  .home-upneda-logo {
    margin: 0 auto;
  }

  .home-upneda-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .navbar.decon-nav {
    padding: 0.35rem 1rem;
  }

  .nav-upneda-logo {
    width: 78px;
    min-height: 44px;
    margin: 8px 0 0;
  }

  .home-hero {
    min-height: 106vh;
    background-position: 68% center;
  }

  .home-hero-video-desktop {
    display: none;
  }

  .home-hero-video-mobile {
    display: block;
  }

  .home-hero-video {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 100%;
    max-width: none;
    transform: none;
    object-position: center center;
  }

  .home-hero-content {
    padding: 98px 0 116px;
  }

  .home-hero h1 {
    font-size: 2rem;
  }

  .home-hero p {
    font-size: 0.92rem;
  }

  .home-sound-btn {
    left: 16px;
    right: auto;
    bottom: 82px;
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 16px;
  }

  .home-hero-divider {
    height: 58px;
  }

  .home-section {
    padding: 66px 0;
  }

  .home-about-copy-card {
    padding: 26px 18px;
    border-radius: 20px;
  }

  .home-about-copy-card::before {
    left: 18px;
    right: 18px;
  }

  .home-about-proof,
  .home-check-grid,
  .home-process-grid {
    grid-template-columns: 1fr;
  }

  .home-about-proof {
    gap: 10px;
  }

  .home-about-image,
  .home-about-image img {
    min-height: 390px;
  }

  .home-solution-card {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .home-upneda {
    padding: 38px 0;
  }

  .home-final-cta {
    text-align: center;
  }

  .home-customer-box {
    padding: 20px 0;
  }

  .home-customer-box::before,
  .home-customer-box::after {
    width: 46px;
  }

  .home-customers .home-logo-track {
    gap: 34px;
  }

  .home-customers .home-logo-track img {
    height: 48px;
    max-width: 118px;
  }

  .home-final-cta .home-btn {
    margin-top: 20px;
  }
}
/* ===== CODEX HOME UPDATE END ===== */

/* =========================================================
   FINAL HOME ABOUT - ONE SCREEN DESKTOP LAYOUT
   Keep this block at the END of the stylesheet.
========================================================= */
@media (min-width: 992px) {
  #about.home-about {
    min-height: calc(100vh - 78px);
    height: calc(100vh - 78px);
    max-height: 690px;
    padding: 26px 0 !important;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  #about.home-about .container {
    width: min(100% - 48px, 1120px);
    max-width: 1120px;
  }

  #about .home-about-row {
    height: min(570px, calc(100vh - 130px));
    min-height: 500px;
    margin-top: 0;
    margin-bottom: 0;
    align-items: stretch !important;
  }

  #about .home-about-row > [class*="col-"] {
    display: flex;
    min-height: 0;
  }

  #about .home-about-copy-card,
  #about .home-about-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
  }

  #about .home-about-copy-card {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  #about .home-about-copy-card::before {
    left: 28px;
    right: 28px;
    height: 4px;
  }

  #about .home-section-kicker {
    font-size: 0.70rem;
    letter-spacing: 0.12em;
  }

  #about .home-section-kicker::before {
    width: 28px;
  }

  #about .home-section-title {
    margin: 7px 0 10px;
    font-size: clamp(1.75rem, 2.35vw, 2.35rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
  }

  #about .home-section-copy {
    margin: 0 0 10px;
    font-size: 0.80rem;
    line-height: 1.52;
  }

  #about .home-about-proof {
    gap: 10px;
    margin: 4px 0 10px;
  }

  #about .home-about-proof div {
    padding: 9px 12px;
    border-radius: 12px;
  }

  #about .home-about-proof strong {
    font-size: 0.88rem;
  }

  #about .home-about-proof span {
    font-size: 0.68rem;
  }

  #about .home-about-services-copy {
    margin-bottom: 10px !important;
  }

  #about .home-check-grid {
    gap: 7px 9px;
    margin: 0 0 12px;
  }

  #about .home-check-grid div {
    min-height: 38px;
    padding: 7px 9px;
    gap: 7px;
    border-radius: 9px;
    border-left-width: 3px;
    font-size: 0.70rem;
    line-height: 1.25;
    box-shadow: 0 7px 15px rgba(6,37,58,0.055);
  }

  #about .home-check-grid i {
    font-size: 0.77rem;
  }

  #about .home-btn-dark {
    min-height: 40px;
    margin-top: 0;
    padding: 8px 15px;
    align-self: flex-start;
    border-radius: 9px;
    font-size: 0.76rem;
  }

  #about .home-about-image {
    border-radius: 22px;
  }

  #about .home-about-image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    object-fit: cover;
  }

  #about .home-about-image::before {
    inset: 13px;
  }

  #about .home-image-badge {
    left: 18px;
    bottom: 18px;
    max-width: 305px;
    padding: 13px 15px;
    gap: 10px;
    border-radius: 13px;
  }

  #about .home-image-badge i {
    font-size: 1.25rem;
  }

  #about .home-image-badge strong {
    font-size: 0.82rem;
  }

  #about .home-image-badge span {
    font-size: 0.69rem;
    line-height: 1.4;
  }
}

@media (min-width: 992px) and (max-height: 720px) {
  #about.home-about {
    height: 610px;
    min-height: 610px;
    max-height: 610px;
    padding: 20px 0 !important;
  }

  #about .home-about-row {
    height: 570px;
    min-height: 570px;
  }

  #about .home-about-copy-card {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 991px) {
  #about.home-about {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 54px 0 !important;
    overflow: visible;
  }

  #about .home-about-copy-card,
  #about .home-about-image {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 767px) {
  #about.home-about {
    padding: 18px 0 22px !important;
  }

  #about.home-about .container {
    width: min(100% - 26px, 420px);
  }

  #about .home-about-row {
    --bs-gutter-y: 1rem;
  }

  #about .home-about-copy-card {
    padding: 16px 15px 18px;
    border-radius: 14px;
  }

  #about .home-about-copy-card::before {
    left: 15px;
    right: 15px;
    height: 3px;
  }

  #about .home-section-kicker {
    margin-bottom: 6px;
    font-size: 0.60rem;
    letter-spacing: 0.10em;
  }

  #about .home-section-kicker::before {
    width: 28px;
  }

  #about .home-section-title {
    margin: 0 0 8px;
    font-size: 1.46rem;
    line-height: 1.06;
    letter-spacing: 0;
  }

  #about .home-section-copy {
    margin: 0 0 8px;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  #about .home-about-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin: 6px 0;
  }

  #about .home-about-proof div {
    min-height: 38px;
    padding: 6px 8px;
    border-radius: 8px;
  }

  #about .home-about-proof strong {
    font-size: 0.70rem;
    line-height: 1.1;
  }

  #about .home-about-proof span {
    margin-top: 1px;
    font-size: 0.58rem;
    line-height: 1.15;
  }

  #about .home-about-services-copy {
    margin-bottom: 8px !important;
  }

  #about .home-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 8px 0 12px;
  }

  #about .home-check-grid div {
    min-height: 29px;
    padding: 5px 7px;
    gap: 5px;
    border-radius: 8px;
    border-left-width: 3px;
    font-size: 0.62rem;
    line-height: 1.15;
  }

  #about .home-check-grid i {
    font-size: 0.62rem;
    flex: 0 0 auto;
  }

  #about .home-btn-dark {
    min-height: 32px;
    padding: 6px 11px;
    gap: 6px;
    border-radius: 7px;
    font-size: 0.69rem;
  }

  #about .home-about-image {
    display: none;
  }

  .home-faq {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .home-faq-list {
    margin-top: 24px;
  }

  .home-faq-question {
    padding: 15px 16px;
    font-size: 0.88rem;
  }

  .home-faq-question i {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .home-faq-answer p {
    padding: 0 16px 18px;
    font-size: 0.82rem;
  }

  .home-faq-contact {
    margin: 0 16px 20px;
  }
}

/* =========================================
   FINAL HERO RESPONSIVE FIX
   KEEP AT VERY END OF CSS
========================================= */

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* HERO itself can be full width */
.home-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow: hidden !important;
}

/* Keep Bootstrap container behavior intact for desktop alignment. */
.home-hero > .container {
  position: relative;
  z-index: 3;
}

/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {
  .home-hero > .container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-hero-content {
    max-width: 570px;
    margin-left: 0 !important;
  }

  .home-hero h1 {
    font-size: clamp(2.5rem, 3.6vw, 3.6rem);
  }

  .home-hero p {
    font-size: 0.95rem;
  }
}

/* =========================================
   MOBILE
========================================= */

main,
.home-hero {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .home-hero {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 106vh;
    overflow: hidden !important;
    background: #06253a;
  }

  .home-hero-video-desktop {
    display: none !important;
  }

  .home-hero-video-mobile {
    display: block !important;
  }

  video.home-hero-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  .home-hero > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin: 0 auto;
  }

  .home-hero-content {
    max-width: 100%;
    padding: 82px 0 105px !important;
    margin-left: 0 !important;
  }

  .home-eyebrow {
    font-size: 0.65rem !important;
    letter-spacing: 0.11em;
    line-height: 1.45;
  }

  .home-hero h1 {
    font-size: 1.65rem !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em;
    margin-top: 14px;
    margin-bottom: 15px;
  }

  .home-hero p {
    max-width: 100%;
    font-size: 0.78rem !important;
    line-height: 1.65;
  }

  .home-hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .home-hero-actions .home-btn {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.76rem;
    border-radius: 9px;
  }

  .home-sound-btn {
    left: 16px;
    bottom: 78px;
    width: 42px;
    height: 42px;
    min-height: 42px;
    font-size: 15px;
  }
}

@media screen and (max-width: 390px) {
  .home-hero > .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .home-hero h1 {
    font-size: 1.48rem !important;
  }

  .home-hero p {
    font-size: 0.74rem !important;
  }

  .home-eyebrow {
    font-size: 0.6rem !important;
  }

  .home-hero-actions .home-btn {
    font-size: 0.72rem;
    padding: 8px 12px;
  }
}

/* =========================================
   FINAL MOBILE NAVBAR FIX
   KEEP AT VERY END OF CSS
========================================= */

@media screen and (max-width: 991px) {
  .navbar.decon-nav {
    padding: 0.35rem 0;
    overflow: visible !important;
  }

  .decon-nav .container-fluid {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .decon-nav .logo-img {
    height: 50px;
    margin-right: 0;
  }

  .mobile-upneda-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    min-height: 34px;
    margin-left: auto;
    margin-right: 6px;
    padding: 3px;
    border: 1px solid rgba(61, 135, 32, 0.55);
    border-radius: 6px;
    background: #ffffff;
    text-decoration: none;
  }

  .mobile-hareda-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    min-height: 34px;
    margin-right: 10px;
    padding: 3px;
    border: 1px solid rgba(61, 135, 32, 0.55);
    border-radius: 6px;
    background: #ffffff;
    text-decoration: none;
  }

  .mobile-upneda-logo img,
  .mobile-hareda-logo img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 28px;
  }

  .decon-nav .navbar-toggler {
    width: 42px;
    height: 36px;
    padding: 0;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-width: 1px;
  }

  .decon-nav .navbar-toggler-icon {
    width: 1.25em;
    height: 1.25em;
  }

  .decon-nav .navbar-collapse:not(.show) {
    display: none !important;
  }

  .decon-nav .navbar-collapse.show {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: block !important;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    overflow-x: hidden !important;
    padding: 18px 16px;
    margin: 0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(6, 37, 58, 0.14);
  }

  .decon-nav .navbar-nav {
    gap: 0 !important;
  }

  .decon-nav .nav-link {
    top: 0;
    margin-left: 0;
    padding: 10px 8px;
    font-size: 0.98rem;
  }

  .nav-upneda-logo,
  .nav-hareda-logo {
    display: none !important;
  }

  .nav-item.dropdown .dropdown-menu.services-dropdown,
  .dropdown-submenu > .submenu-menu,
  .submenu-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    display: none !important;
    min-width: 0 !important;
    width: 100%;
    margin: 4px 0 8px;
    padding: 8px 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    border: 1px solid rgba(6, 37, 58, 0.08);
    border-radius: 8px;
    box-shadow: none !important;
    background: #ffffff;
  }

  .nav-item.dropdown .dropdown-menu.services-dropdown.show,
  .dropdown-submenu > .submenu-menu.show,
  .submenu-menu.show {
    display: block !important;
  }

  .nav-item.dropdown:hover .dropdown-menu.services-dropdown:not(.show),
  .dropdown-submenu:hover > .submenu-menu:not(.show) {
    display: none !important;
  }

  .decon-nav .dropdown-item {
    min-height: 38px;
    padding: 8px 10px;
    white-space: normal;
    color: #333333;
  }

  .decon-nav .dropdown-submenu > .dropdown-item .bi-chevron-right {
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 390px) {
  .mobile-upneda-logo {
    width: 62px;
    margin-right: 5px;
  }

  .mobile-hareda-logo {
    width: 50px;
    margin-right: 8px;
  }

  .mobile-upneda-logo img,
  .mobile-hareda-logo img {
    max-height: 24px;
  }

  .decon-nav .navbar-toggler {
    width: 38px;
    height: 34px;
  }
}

/* FINAL MOBILE FOOTER COMPACT */
@media screen and (max-width: 767px) {
  .footer-section::before {
    height: 3px;
  }

  .footer-section::after {
    right: -180px;
    top: -190px;
    width: 300px;
    height: 300px;
  }

  .footer-overlay {
    padding: 15px 0 12px !important;
  }

  .footer-section .container {
    width: min(100% - 28px, 420px);
  }

  .footer-section .row {
    --bs-gutter-y: 0.45rem;
    padding-top: 0.55rem !important;
    padding-bottom: 0.45rem !important;
    margin-bottom: 4px !important;
  }

  .footer-section .col-md-4 {
    margin-bottom: 0.35rem !important;
  }

  .footer-title {
    margin-bottom: 4px;
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .footer-text,
  .footer-link {
    font-size: 0.73rem;
    line-height: 1.32;
  }

  .footer-text {
    margin-bottom: 3px !important;
  }

  .social-icons {
    gap: 6px;
    margin-top: 5px;
  }

  .social-link {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    font-size: 0.74rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px 10px;
    max-width: 310px;
    margin: 0 auto;
  }

  .footer-links li {
    margin-bottom: 0;
    line-height: 1.2;
  }

  .footer-divider {
    margin-top: 0.45rem !important;
    margin-bottom: 0.55rem !important;
  }

  .footer-copy {
    max-width: 330px;
    margin: 0 auto !important;
    font-size: 0.66rem;
    line-height: 1.3;
  }
}

/* FINAL MOBILE CTA COMPACT */
@media screen and (max-width: 767px) {
  .home-final-cta {
    padding: 18px 0 22px !important;
    text-align: center;
  }

  .home-final-cta .container {
    width: min(100% - 28px, 420px);
    padding: 18px 18px 20px !important;
    border-radius: 18px;
  }

  .home-final-cta .row {
    --bs-gutter-y: 0.75rem;
  }

  .home-final-cta .home-section-kicker {
    margin-bottom: 7px;
    font-size: 0.62rem;
    line-height: 1.2;
    letter-spacing: 0.11em;
  }

  .home-final-cta .home-section-kicker::before {
    width: 30px;
  }

  .home-final-cta h2 {
    max-width: 280px;
    margin: 0 auto 8px;
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .home-final-cta p {
    max-width: 300px;
    margin: 0 auto;
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .home-final-cta .home-btn {
    min-height: 36px;
    margin-top: 0 !important;
    padding: 8px 13px;
    gap: 7px;
    border-radius: 8px;
    font-size: 0.76rem;
  }
}

/* FINAL MOBILE CUSTOMERS COMPACT */
@media screen and (max-width: 767px) {
  .home-customers {
    padding: 24px 0 26px !important;
  }

  .home-customers .home-section-header {
    margin-bottom: 18px;
  }

  .home-customers .home-section-kicker {
    margin-bottom: 7px;
    font-size: 0.60rem;
    line-height: 1.2;
    letter-spacing: 0.10em;
  }

  .home-customers .home-section-kicker::before {
    width: 28px;
  }

  .home-customers .home-section-title {
    max-width: 300px;
    margin: 0 auto 8px;
    font-size: 1.32rem;
    line-height: 1.08;
  }

  .home-customers .home-section-copy {
    max-width: 315px;
    margin: 0 auto;
    font-size: 0.73rem;
    line-height: 1.42;
  }

  .home-customer-stack {
    gap: 12px;
  }

  .home-customer-box {
    padding: 12px 0 !important;
    border-radius: 14px;
  }

  .home-customer-box::before,
  .home-customer-box::after {
    width: 28px;
  }

  .home-customers .home-logo-track {
    gap: 26px;
    padding: 0 14px;
  }

  .home-customers .home-logo-track img {
    height: 34px;
    max-width: 90px;
  }
}

/* FINAL MOBILE FAQ COMPACT */
@media screen and (max-width: 767px) {
  .home-faq {
    padding: 22px 0 24px !important;
  }

  .home-faq .home-section-header {
    margin-bottom: 0;
  }

  .home-faq .home-section-kicker {
    margin-bottom: 6px;
    font-size: 0.60rem;
    line-height: 1.2;
    letter-spacing: 0.10em;
  }

  .home-faq .home-section-kicker::before {
    width: 28px;
  }

  .home-faq .home-section-title {
    max-width: 330px;
    margin: 0 auto 8px;
    font-size: 1.30rem;
    line-height: 1.08;
  }

  .home-faq .home-section-copy {
    max-width: 330px;
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .home-faq-list {
    margin-top: 18px;
  }

  .home-faq-item {
    margin-bottom: 8px;
    border-radius: 11px;
  }

  .home-faq-question {
    min-height: 48px;
    padding: 10px 12px 10px 14px;
    gap: 10px;
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .home-faq-question i {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 0.82rem;
  }

  .home-faq-answer p {
    padding: 0 14px 12px;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .home-faq-contact {
    margin: 0 14px 14px;
    font-size: 0.74rem;
  }
}

/* FINAL MOBILE BLOGS COMPACT */
@media screen and (max-width: 767px) {
  .home-blogs {
    padding: 22px 0 24px !important;
  }

  .home-blogs .home-section-header {
    margin-bottom: 16px;
  }

  .home-blogs .home-section-kicker {
    margin-bottom: 6px;
    font-size: 0.60rem;
    line-height: 1.2;
    letter-spacing: 0.10em;
  }

  .home-blogs .home-section-kicker::before {
    width: 28px;
  }

  .home-blogs .home-section-title {
    max-width: 340px;
    margin: 0 auto;
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .home-blogs .row.g-4 {
    --bs-gutter-y: 0.9rem;
  }

  .home-blog-card {
    border-radius: 13px;
  }

  .home-blog-card img {
    height: 136px;
  }

  .home-blog-content {
    padding: 12px 14px 13px;
  }

  .home-blog-category {
    font-size: 0.62rem;
    line-height: 1.15;
    letter-spacing: 0.09em;
  }

  .home-blog-title {
    margin: 5px 0 6px;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .home-blog-content p {
    margin-bottom: 8px;
    font-size: 0.70rem;
    line-height: 1.35;
  }

  .home-blog-content a {
    font-size: 0.70rem;
    line-height: 1.2;
  }
}

/* FINAL MOBILE CAPABILITIES COMPACT */
@media screen and (max-width: 767px) {
  .home-capabilities {
    padding: 22px 0 24px !important;
  }

  .home-capabilities .home-section-header {
    margin-bottom: 16px;
  }

  .home-capabilities .home-section-kicker {
    margin-bottom: 6px;
    font-size: 0.60rem;
    line-height: 1.2;
    letter-spacing: 0.10em;
  }

  .home-capabilities .home-section-kicker::before {
    width: 28px;
  }

  .home-capabilities .home-section-title {
    max-width: 335px;
    margin: 0 auto 7px;
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .home-capabilities .home-section-copy {
    max-width: 320px;
    margin: 0 auto;
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .home-capabilities .row.g-4 {
    --bs-gutter-x: 0.85rem;
    --bs-gutter-y: 0.85rem;
  }

  .home-capability-card {
    border-radius: 12px;
  }

  .home-capability-card img {
    aspect-ratio: 1 / 0.64;
  }

  .home-capability-card span {
    min-height: 38px;
    padding: 7px 6px;
    font-size: 0.70rem;
    line-height: 1.15;
  }
}

/* FINAL MOBILE LOCATIONS COMPACT */
@media screen and (max-width: 767px) {
  .home-locations {
    padding: 20px 0 22px !important;
  }

  .home-locations .home-section-header {
    margin-bottom: 14px;
  }

  .home-locations .home-section-kicker {
    margin-bottom: 6px;
    font-size: 0.60rem;
    line-height: 1.2;
    letter-spacing: 0.10em;
  }

  .home-locations .home-section-kicker::before {
    width: 28px;
  }

  .home-locations .home-section-title {
    max-width: 330px;
    margin: 0 auto 7px;
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .home-locations .home-section-copy {
    max-width: 320px;
    margin: 0 auto;
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .home-map-wrap {
    width: min(100% - 24px, 390px);
    border-radius: 14px;
  }

  .home-map-wrap img {
    height: 190px;
    object-fit: cover;
    object-position: center;
  }

  .home-city-list {
    gap: 6px;
    margin-top: 12px;
  }

  .home-city-list span {
    padding: 5px 8px;
    gap: 5px;
    font-size: 0.66rem;
  }
}

/* FINAL MOBILE WHY COMPACT */
@media screen and (max-width: 767px) {
  .home-why {
    padding: 20px 0 22px !important;
  }

  .home-why .container {
    width: min(100% - 26px, 420px);
  }

  .home-why .home-section-header {
    margin-bottom: 14px;
  }

  .home-why .home-section-kicker {
    margin-bottom: 6px;
    font-size: 0.60rem;
    line-height: 1.2;
    letter-spacing: 0.10em;
  }

  .home-why .home-section-kicker::before {
    width: 28px;
  }

  .home-why .home-section-title {
    max-width: 340px;
    margin: 0 auto;
    white-space: normal;
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .home-why .row {
    --bs-gutter-x: 0.65rem;
    --bs-gutter-y: 0.65rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    border-radius: 15px;
  }

  .home-why .row > [class*="col-"] {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }

  .home-why-card {
    padding: 11px 9px;
    border-radius: 11px;
  }

  .home-why-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    border-radius: 10px;
    font-size: 0.96rem;
  }

  .home-why-title {
    font-size: 0.70rem;
    line-height: 1.14;
  }

  .home-why-card p {
    margin-top: 4px;
    font-size: 0.62rem;
    line-height: 1.3;
  }
}

/* FINAL MOBILE UPNEDA COMPACT */
@media screen and (max-width: 767px) {
  .home-upneda {
    padding: 20px 0 22px !important;
  }

  .home-upneda::after {
    width: 190px;
    height: 190px;
    right: -90px;
    top: -95px;
  }

  .home-upneda .container {
    width: min(100% - 28px, 420px);
  }

  .home-upneda-logo {
    width: 78px;
    height: 68px;
    padding: 8px;
    margin-bottom: 12px !important;
    border-radius: 11px;
  }

  .home-upneda .home-section-kicker {
    margin-bottom: 6px;
    font-size: 0.60rem;
    line-height: 1.2;
    letter-spacing: 0.10em;
  }

  .home-upneda .home-section-kicker::before {
    width: 28px;
  }

  .home-upneda h2 {
    max-width: 310px;
    margin: 0 auto 7px;
    font-size: 1.30rem;
    line-height: 1.08;
  }

  .home-upneda p {
    max-width: 340px;
    margin: 0 auto;
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .home-upneda-benefits {
    margin-top: 10px;
    padding: 10px 11px;
    border-radius: 11px;
  }

  .home-benefits-title {
    margin-bottom: 7px;
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .home-upneda-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 9px;
  }

  .home-upneda-benefit-grid span {
    gap: 5px;
    font-size: 0.64rem;
    line-height: 1.2;
  }

  .home-upneda-benefit-grid i {
    font-size: 0.66rem;
  }
}

/* FINAL MOBILE PROCESS COMPACT */
@media screen and (max-width: 767px) {
  .home-process {
    padding: 20px 0 22px !important;
  }

  .home-process .home-section-header {
    margin-bottom: 14px;
  }

  .home-process .home-section-kicker {
    margin-bottom: 6px;
    font-size: 0.60rem;
    line-height: 1.2;
    letter-spacing: 0.10em;
  }

  .home-process .home-section-kicker::before {
    width: 28px;
  }

  .home-process .home-section-title {
    max-width: 340px;
    margin: 0 auto;
    white-space: normal;
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .home-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .home-process-step {
    min-height: 142px;
    padding: 10px 9px 11px;
    border-radius: 12px;
  }

  .home-process-number {
    font-size: 0.58rem;
    letter-spacing: 0.10em;
  }

  .home-process-step > i {
    width: 34px;
    height: 34px;
    margin: 9px 0;
    border-radius: 10px;
    font-size: 0.98rem;
  }

  .home-step-title {
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .home-process-step p {
    margin-top: 4px;
    font-size: 0.62rem;
    line-height: 1.28;
  }

  .home-process-step:not(:last-child)::after {
    display: none;
  }
}

/* FINAL MOBILE SOLUTIONS + FLOAT BUTTONS COMPACT */
@media screen and (max-width: 767px) {
  .home-solutions {
    padding: 22px 0 24px !important;
  }

  .home-solutions .home-section-header {
    margin-bottom: 16px;
  }

  .home-solutions .home-section-kicker {
    margin-bottom: 6px;
    font-size: 0.60rem;
    line-height: 1.2;
    letter-spacing: 0.10em;
  }

  .home-solutions .home-section-kicker::before {
    width: 28px;
  }

  .home-solutions .home-section-title {
    max-width: 350px;
    margin: 0 auto 7px;
    white-space: normal;
    font-size: 1.28rem;
    line-height: 1.08;
  }

  .home-solutions .home-section-copy {
    max-width: 340px;
    margin: 0 auto;
    font-size: 0.72rem;
    line-height: 1.38;
  }

  .home-solutions .row.g-4 {
    --bs-gutter-y: 0.9rem;
  }

  .home-solution-card {
    aspect-ratio: 1 / 0.56;
    border-radius: 14px;
  }

  .home-solution-overlay {
    padding: 10px 14px;
    background: linear-gradient(180deg, transparent 30%, rgba(4,31,49,0.96));
  }

  .home-solution-overlay > span {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
    border-radius: 9px;
    font-size: 0.68rem;
  }

  .home-card-title {
    margin-bottom: 4px;
    font-size: 0.90rem;
    line-height: 1.12;
  }

  .home-solution-overlay p {
    margin-bottom: 5px;
    font-size: 0.62rem;
    line-height: 1.24;
  }

  .home-solution-overlay strong {
    font-size: 0.64rem;
    line-height: 1.2;
  }

  .decon-chatbot {
    right: 14px;
    bottom: 70px;
  }

  .chatbot-launcher {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .chatbot-window {
    right: 52px;
    bottom: -28px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}
/* =========================================
   FLOATING SOLAR CALCULATOR
========================================= */
/* =========================================
   FLOATING SOLAR CALCULATOR
========================================= */

.global-floating-calculator {
    position: fixed;

    /* Same horizontal alignment as Message */
    right: 24px;

    /*
       Message:
       bottom: 90px
       height: 54px

       Message top = 90px + 54px = 144px

       Calculator:
       height = 50px
       8px gap above Message

       Calculator bottom = 144px + 8px = 152px
    */
    bottom: 152px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f39a24;
    color: #ffffff !important;
    border-radius: 50%;
    border: none;
    outline: none;
    text-decoration: none !important;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
    z-index: 99998;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.global-floating-calculator:hover {
    background: #e88916;
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.06);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.28);
}


/* MOBILE */
@media (max-width: 768px) {
    .global-floating-calculator {
        right: 16px;
        bottom: 142px;
        width: 50px;
        height: 50px;
        font-size: 21px;
    }

}
