/* =============================================
   ELTECH SERVICES - CUSTOM STYLES
   Bootstrap 5 Custom Theme
============================================= */

/* CSS Variables */
:root {
  --primary: #c82333;
  --primary-red: #c82333;
  --primary-red-dark: #a71d2a;
  --primary-red-light: #dc3545;
  --gray-600: #6c757d;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-900: #212529;
  --white: #ffffff;
  /* --primary-red-light: #c82333; */
}

/* =============================================
   GLOBAL STYLES
============================================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--gray-900);
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
  color: inherit;
}

a:hover {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================================
   UTILITY CLASSES
============================================= */
/* Eyebrow / kicker above section headings (about page, etc.) */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

/* Red pill eyebrow (contact hero, QMS commitment, etc.) */
.section-pill-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-red);
  background-color: rgba(200, 35, 51, 0.1);
  padding: 0.5rem 1.125rem;
  border-radius: 999px;
}

/* Primary section titles (about page, etc.) */
.section-heading {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 0.85rem;
}

/* Body copy under section headings (about page, etc.) */
.section-copy {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: .8rem;
}

.text-primary-red {
  color: var(--primary-red) !important;
}

.text-primary-red-light {
  color: var(--primary-red-light) !important;
}

.bg-primary-red {
  background-color: var(--primary-red) !important;
}

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

.btn-primary-red:hover,
.btn-primary-red:focus {
  background-color: var(--primary-red-dark);
  border-color: var(--primary-red-dark);
  color: var(--white);
}

.btn-outline-primary-red {
  color: var(--primary-red);
  border-color: var(--primary-red);
  background-color: transparent;
}

.btn-outline-primary-red:hover,
.btn-outline-primary-red:focus {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 800px;
  margin: 0 auto;
}

/* =============================================
   TOP BAR
============================================= */
.top-bar {
  background-color: var(--primary-red);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.875rem;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar .iso-badge {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 500;
}

/* Top bar: phone left, email right — single row on all breakpoints */
.top-bar-inner {
  flex-wrap: nowrap !important;
  gap: 0.75rem;
}

.top-bar-phone,
.top-bar-email {
  min-width: 0;
  flex: 1 1 0;
  max-width: 50%;
}

.top-bar-phone>a,
.top-bar-email>a {
  min-width: 0;
  width: 100%;
}

.top-bar-email>a {
  justify-content: flex-end;
}

.top-bar-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: inherit;
}

@media (max-width: 575.98px) {
  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar-inner {
    gap: 0.35rem;
  }

  .top-bar-phone .bi,
  .top-bar-email .bi {
    font-size: 1rem;
  }
}

/* =============================================
   NAVIGATION
============================================= */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 45px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--gray-900);
  font-weight: 500;
  padding: 10px 20px !important;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-red);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-link:focus-visible {
  box-shadow: none;
}
:focus-visible{
  outline: none;
}

/* =============================================
   NAVBAR DROPDOWNS (theme overrides)
============================================= */
.navbar .nav-link.dropdown-toggle::after {
  display: none !important;
  /* hide Bootstrap caret */
}

.navbar .nav-link.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.navbar .nav-link .nav-chevron {
  font-size: 0.9em;
  line-height: 1;
}

/* Dropdown on hover (desktop) */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
  }

  .navbar .dropdown-menu {
    margin-top: 0;
  }
}

.navbar .dropdown-menu {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 0.5rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.navbar .dropdown-item {
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-weight: 500;
  color: var(--gray-900);
  transition: background-color 0.2s ease, color 0.2s ease;
  font-size: 0.9rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: rgba(200, 35, 51, 0.08);
  color: var(--primary-red);
}

.navbar .dropdown-item:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}



/* =============================================
   HERO SECTION
============================================= */
.hero-section {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  padding: 60px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(circle, rgba(200, 35, 51, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 500px;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 5px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.hero-feature-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(200, 35, 51, 0.08);
  transform: translateY(-2px);
}

.hero-feature-card .icon {
  width: 50px;
  height: 50px;
  background: rgba(200, 35, 51, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-red);
  font-size: 1.5rem;
}

.hero-feature-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-feature-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
  background-color: var(--white);
}

.about-badge {
  display: inline-block;
  background: rgba(200, 35, 51, 0.1);
  color: var(--primary-red);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.capability-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
}

.capability-list li i {
  color: var(--primary-red);
  font-size: 1.2rem;
}

.info-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(200, 35, 51, 0.08);
}

.info-card .icon {
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* =============================================
   SERVICES SECTION
   .feature-card — shared with Core Strengths (about) and any icon + title + body blocks
============================================= */
.services-section {
  background-color: var(--gray-100);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 15px 40px rgba(200, 35, 51, 0.1);
  transform: translateY(-5px);
}

.feature-card .icon {
  width: 70px;
  height: 70px;
  background: rgba(200, 35, 51, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-red);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .icon {
  background: var(--primary-red);
  color: var(--white);
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* =============================================
   PRODUCTS SECTION
============================================= */
.products-section {
  background-color: var(--white);
}

.product-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-red);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.product-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 15px 40px rgba(200, 35, 51, 0.1);
}

.product-card:hover::before {
  transform: scaleY(1);
}

.product-card .badge {
  background: var(--primary-red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: fit-content;
}

.product-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0;
}

.product-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.product-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-900);
}

.product-card ul li i {
  color: var(--primary-red);
}

.product-card .product-action-btn-primary {
  width: fit-content;
}

/* =============================================
   CLIENTS SECTION
============================================= */
.clients-section {
  background-color: var(--gray-100);
}

.client-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.client-card:hover {
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(200, 35, 51, 0.08);
}

.client-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(200, 35, 51, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-red);
  font-size: 1.5rem;
}

.client-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 0.5rem;
}

.client-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.global-presence {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
}

.market-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.market-item:last-child {
  border-bottom: none;
}

.market-item .flag {
  font-size: 2rem;
}

.market-item .info h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.market-item .info p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* =============================================
   ABOUT US - OUR CLIENTS
============================================= */
.about-clients-section {
  background-color: var(--white);
  padding: 86px 0 110px;
}

.about-clients-section .text-center .section-copy {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Swiper carousel (Our Clients) — arrows beside slides, no pagination */
.about-clients-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.about-clients-carousel-wrap .about-clients-swiper {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

.about-clients-swiper .swiper-slide {
  height: auto;
}

.about-clients-carousel-wrap .swiper-button-prev,
.about-clients-carousel-wrap .swiper-button-next {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
  transform: none !important;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: var(--primary-red);
  align-self: center;
}

.about-clients-carousel-wrap .swiper-button-prev::after,
.about-clients-carousel-wrap .swiper-button-next::after {
  font-size: 1.15rem;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .about-clients-carousel-wrap {
    gap: 6px;
  }

  .about-clients-carousel-wrap .swiper-button-prev,
  .about-clients-carousel-wrap .swiper-button-next {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .about-clients-carousel-wrap .swiper-button-prev::after,
  .about-clients-carousel-wrap .swiper-button-next::after {
    font-size: 1rem;
  }
}

/* Override global .client-card to behave like "logo cards" */
.about-clients-section .client-card {
  padding: 1.6rem 1rem 1.55rem;
  border-radius: 14px;
  background: var(--white);
}

.about-clients-section .about-client-logo {
  width: 100%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.about-clients-section .about-client-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.about-clients-section .client-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 0.25rem;
}

.about-clients-section .client-card p {
  color: var(--gray-600);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 991.98px) {
  .about-clients-section {
    padding: 70px 0 90px;
  }
}

@media (max-width: 575.98px) {
  .about-clients-section {
    padding: 56px 0 70px;
  }

  .about-clients-section .client-card {
    padding: 1.35rem 0.85rem 1.25rem;
  }

  .about-clients-section .about-client-logo {
    max-width: 140px;
    padding: 8px 10px;
  }

  .about-clients-section .about-client-logo img {
    max-height: 48px;
  }
}
/* =============================================
   CONTACT SECTION
============================================= */
.contact-section {
  background-color: var(--white);
}

.contact-info-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item .info h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item .info p,
.contact-item .info a {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-item .info a:hover {
  color: var(--primary-red);
}

.contact-form-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-form-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.form-control {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(200, 35, 51, 0.1);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background-color: var(--gray-900);
  color: rgba(255, 255, 255, 0.8);
  /* padding: 80px 0 0; */
}

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--primary-red-light);
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   SCROLL TO TOP BUTTON
============================================= */
.scroll-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 54px;
  height: 54px;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(200, 35, 51, 0.3);
}

.scroll-top:hover {
  background: var(--primary-red-dark);
  transform: translateY(-3px);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 575.98px) {
  .scroll-top {
    left: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
}

/* =============================================
   RESPONSIVE STYLES
============================================= */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .navbar-collapse .nav-item {
    width: fit-content;
  }

  .navbar-collapse .dropdown {
    width: unset;
  }

}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 40px 0 30px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .global-presence {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 12px 24px;
  }
}

.product-action-btn-primary,
.product-action-btn-outline {
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-action-btn-primary {
  background-color: var(--primary-red);
  color: var(--white);
  border: 2px solid var(--primary-red);
}

.product-action-btn-primary:hover,
.product-action-btn-primary:focus-visible {
  background-color: var(--primary-red-dark);
  border-color: var(--primary-red-dark);
  color: var(--white);
}

.product-action-btn-outline {
  background-color: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.product-action-btn-outline:hover,
.product-action-btn-outline:focus-visible {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
}

.product-action-btn-primary:focus-visible,
.product-action-btn-outline:focus-visible {
  outline: 2px solid var(--primary-red-light);
  outline-offset: 2px;
}

.navbar .product-action-btn-primary {
  padding: 0.3rem 0.6rem;
}

/* =============================================
  PAGE HERO SECTION
============================================= */

.about-page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 118px 0 72px;
  overflow: hidden;
  /* background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%); */
  background-color: var(--gray-900);
  color: var(--gray-900);
}

.about-page-hero-bg {
  position: absolute;
  /* background: #00000080; */
  width: 100%;
  height: 100%;
  top: 0;
}

.about-page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg,
      rgba(200, 35, 51, 0.06) 0%,
      transparent 48%,
      rgba(0, 0, 0, 0.03) 100%); */

}

.about-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
}

.about-page-breadcrumb-link {
  /* color: var(--gray-600); */
  color: var(--white);
  font-weight: 500;
}

.about-page-breadcrumb-link:hover {
  /* color: var(--primary-red); */
  color: var(--white);
}

.about-page-breadcrumb-sep {
  /* color: rgba(26, 26, 46, 0.4); */
  color: var(--white);
  font-weight: 400;
  user-select: none;
}

.about-page-breadcrumb-current {
  /* color: var(--gray-900); */
  color: var(--white);
  font-weight: 700;
}

.about-page-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  /* color: var(--gray-900); */
  color: var(--white);
  margin: 0 0 0.5rem;
}

.about-page-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  /* color: var(--gray-600); */
  color: var(--white);
  margin: 0;
  letter-spacing: 0.01em;
}

.about-page-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  /* color: var(--gray-600); */
  color: var(--white);
  margin: 0;
  letter-spacing: 0.01em;
}

.about-page-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  /* color: var(--gray-600); */
  color: var(--white);
  margin: 0;
  letter-spacing: 0.01em;
}


.about-page-hero-subtitle-home {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  /* color: var(--gray-600); */
  color: var(--gray-900);
  margin: 0;
  letter-spacing: 0.01em;
}

.about-page-hero-subtitle-home {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  /* color: var(--gray-600); */
  color: var(--gray-900);
  margin: 0;
  letter-spacing: 0.01em;
}

.about-page-hero-subtitle-home {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  /* color: var(--gray-600); */
  color: var(--gray-900);
  margin: 0;
  letter-spacing: 0.01em;
}
.service-more-content-sub {
    font-size: 0.9rem;
    color: var(--gray-900);
}
@media (max-width: 575.98px) {
  .about-page-hero {
    min-height: 280px;
    padding: 100px 0 56px;
  }
}

.float-contact-us-mobile-btn {
  position:fixed;
  top: 140px;
  right: 20px;
  z-index: 99;
  font-size: 0.8rem;
  padding: 8px 15px;
  background-color: var(--primary-red);
  color: var(--white);
}

/* .float-contact-us-mobile-btn {
  position: absolute;
  top: 160px;
  right: 20px;
  z-index: 9999;
  font-size: 0.8rem;
  padding: 8px 15px;
  background-color: var(--primary-red);
  color: var(--white);
  transition: all 0.3s ease;
}

.float-contact-us-mobile-btn.fixed {
  position: fixed;
  top: 100px;
  right: 20px;
} */

/* =============================================
   MAP (below contact — shared block name)
============================================= */
.enquiry-map {
  margin-top: 1.75rem;
}

.enquiry-map-frame {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 40vh;
  background: linear-gradient(180deg, rgba(11, 58, 73, 0.95), rgba(11, 58, 73, 0.85));
}

.enquiry-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.9) contrast(1.05);
  opacity: 0.62;
}

.enquiry-map-btn {
  position: absolute;
  left: calc(2rem + 0px);
  right: auto;
  bottom: calc(2rem + 0px);

  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;

  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gray-900);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 991.98px) {
  .enquiry-map-btn {
    left: 1.25rem;
    bottom: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .enquiry-map-frame {
    height: 155px;
  }
}

/* =============================================
   GLOBAL REACH SECTION
============================================= */
.global-reach-section {
  background: #f6f7fb;
  padding: 70px 0;
}

.global-reach-title {
  font-size: 1.9rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.global-reach-subtitle {
  margin: 0;
  color: var(--gray-600);
  max-width: 520px;
  font-size: 0.98rem;
}

.global-reach-pill {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--gray-900);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.global-reach-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary-red);
  box-shadow: 0 0 0 6px rgba(200, 35, 51, 0.08);
}

.global-reach-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.8rem 1.6rem;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.global-reach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: rgba(26, 26, 46, 0.1);
  transition: background 0.25s ease;
}

.global-reach-card-accent::before {
  background: var(--primary-red);
}

.global-reach-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 50px rgba(200, 35, 51, 0.12);
  border-color: rgba(200, 35, 51, 0.35);
}

.global-reach-card:hover::before {
  background: var(--primary-red);
}

.global-reach-card-title {
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 0 0.4rem;
}

.global-reach-card-meta {
  margin: 0 0 0.9rem;
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.88rem;
}

.global-reach-card-text {
  margin: 0 0 1.1rem;
  color: var(--gray-900);
  font-size: 0.9rem;
  line-height: 1.7;
}

.global-reach-branch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--primary-red);
  font-size: 0.78rem;
}

@media (max-width: 991.98px) {
  .global-reach-section {
    padding: 55px 0;
  }
}

@media (max-width: 575.98px) {
  .global-reach-section {
    padding: 45px 0;
  }

  .global-reach-card {
    min-height: auto;
  }
}


/* =============================================
   WHATSAPP STICKY BUTTON
============================================= */
.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px; 
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float i {
  font-size: 1.6rem;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float i {
    font-size: 1.45rem;
  }
}

@media (max-width: 575.98px) {
  .mobile-hide {
    display: none;
  }
}
@media (min-width: 575.98px) {
  .web-hide {
    display: none;
  }
}

/* SweetAlert custom content */
.swal2-popup .modal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0;
}

.swal2-popup .icon-base {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.swal2-popup .icon-success {
  color: #fff !important;
}

.swal2-popup .icon-warning {
  color: #fff !important;
}

.swal2-popup .icon-error {
  color: #fff;
}

.swal2-popup .title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.swal2-popup .message {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-900);
  text-align: center;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

/* Modal styles for custom swal alerts */
.modal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.icon-base {
  font-size: 28px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-success {
  background-color: var(--primary);
}

.icon-warning {
  background-color: var(--primary);
}

.icon-error {
  background-color: var(--primary);
}

/* Desktop only */
@media (min-width: 768px) {
  .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .service-know-more-btn-new {
    margin-top: auto;
    align-self: flex-start; /* or flex-end if you want it on the right */
  }
}