/**
 * ICS Expo Global / Comnet Exhibitions
 * Main Stylesheet - style.css
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Logo Signature Colors */
  --brand-navy: #004b87;
  --brand-blue: #0077b6;
  --brand-cyan: #00aeef;
  --brand-teal: #2ec4b6;
  --brand-green: #39b54a;
  --brand-lime: #8dc63f;
  --brand-yellow: #fdb913;
  --brand-orange: #f37021;
  --brand-coral: #ea532c;

  /* Brand Tokens */
  --primary-color: #004b87;
  --primary-hover: #003366;
  --secondary-color: #00aeef;
  --accent-yellow: #fdb913;
  --accent-green: #39b54a;
  --accent-orange: #f37021;
  --dark-bg: #0d1e33;
  --dark-card: #142842;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --text-dark: #1a2533;
  --text-muted: #5b6b7f;
  --text-light: #f0f4f8;

  /* Sector Category Colors */
  --fashion-lifestyle-bg: #e4cbf7;
  --building-construction-bg: #87e1e1;
  --cosmetics-beauty-products-bg: #f7abc7;
  --clean-energy-products-bg: #8dc63f;
  --engineering-automation-industrial-bg: #d8ebfa;
  --warehouse-logistics-industrial-bg: #ffc155;
  --automotive-industrial-bg: #39b54a;
  --gems-jewelery-bg: #c5ea8b;
  --food-hospitality-bg: #fcad93;
  --houseware-textile-bg: #e3e2d4;
  --printing-packaging-bg: #f9df5c;
  --tech-infra-bg: #e7f75b;
  --toys-games-baby-products-bg: #ddf5c3;
  --others-events-bg: #ddf5c3;
  --view-all-events-bg: #ecdcc3;

  /* Transitions & Radii */
  --transition-fast: 0.25s ease;
  --transition-normal: 0.35s ease;
  --border-radius-sm: 8px;
  --border-radius-md: 15px;
  --border-radius-lg: 25px;
  --box-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
  --box-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 15px 45px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: #f7f7f7;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

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

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.ftco-navbar-light {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.18) 70%, rgba(0, 0, 0, 0) 100%) !important;
  padding: 22px 0;
  transition: all 0.35s ease-in-out;
}

.navbar-brand img,
.navbar-brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: all var(--transition-fast);
}

/* Logo Swap: White logo on transparent/dark hero, Dark logo on scrolled white navbar */
.ftco-navbar-light .navbar-brand .logo-white {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.75));
}

.ftco-navbar-light .navbar-brand .logo-dark {
  display: none;
}

.ftco-navbar-light.scrolled .navbar-brand .logo-white {
  display: none !important;
}

.ftco-navbar-light.scrolled .navbar-brand .logo-dark {
  display: block !important;
}


.ftco-navbar-light .navbar-nav {
  display: flex;
  align-items: center;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.95);
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover,
.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:focus,
.ftco-navbar-light .navbar-nav>.nav-item.active>.nav-link {
  color: var(--brand-cyan) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link::after {
  content: "/";
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  color: var(--brand-cyan);
  font-size: 17px;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75), 0 1px 2px rgba(0, 0, 0, 0.95);
}

.ftco-navbar-light .navbar-nav>.nav-item:last-child>.nav-link::after {
  display: none;
}

.menu-btn-contact {
  background: var(--brand-cyan) !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 34px;
  border-radius: 8px;
  margin-left: 24px;
  border: none !important;
  text-transform: capitalize;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 174, 239, 0.4);
  transition: all var(--transition-fast);
  display: inline-block;
  line-height: 1.2;
}

.menu-btn-contact:hover {
  background: var(--brand-navy) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 4px 14px rgba(0, 75, 135, 0.6);
}

/* Scrolled / Sticky Navbar - Exact Reference Match */
.ftco-navbar-light.scrolled {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin-top: -120px;
  padding: 12px 0;
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #eaeaea;
}

.ftco-navbar-light.scrolled.awake {
  margin-top: 0;
  transition: 0.35s all ease-out;
}

.ftco-navbar-light.scrolled .navbar-brand .logo-dark {
  display: block !important;
  filter: none !important;
}

.ftco-navbar-light.scrolled .navbar-nav > .nav-item > .nav-link,
.ftco-navbar-light.scrolled .navbar-nav > .nav-item > .nav-link:hover,
.ftco-navbar-light.scrolled .navbar-nav > .nav-item > .nav-link:focus,
.ftco-navbar-light.scrolled .navbar-nav > .nav-item.active > .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #111111 !important;
  letter-spacing: 0.8px;
  padding: 8px 18px;
  text-shadow: none !important;
}

.ftco-navbar-light.scrolled .navbar-nav > .nav-item > .nav-link::after {
  content: "/";
  color: var(--brand-cyan) !important;
  font-size: 17px;
  font-weight: 500;
  background: transparent !important;
  text-shadow: none !important;
}

.ftco-navbar-light.scrolled .menu-btn-contact {
  background: var(--brand-cyan) !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 34px;
  border-radius: 8px;
  margin-left: 24px;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0, 174, 239, 0.3) !important;
}

.ftco-navbar-light.scrolled .menu-btn-contact:hover {
  background: var(--brand-navy) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 75, 135, 0.45) !important;
}

/* ==========================================================================
   Hero Section & Video Banner
   ========================================================================== */
.hero-banner-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-wrapper .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  filter: brightness(1.22) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: 160px 0 80px 0;
}

.carousel-caption-heading-one {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 42px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 0px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.carousel-caption-heading-two {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 165px;
  line-height: 0.88;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 6px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.88), 0 2px 8px rgba(0, 0, 0, 0.95);
}

.carousel-caption-heading-three {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.carousel-gradient-text {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-weight: 900;
  background: linear-gradient(90deg, #00aeef 0%, #39b54a 45%, #fdb913 80%, #f37021 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}


.carousel-caption-btn {
  font-size: 15px;
  color: #ffffff;
  padding: 14px 45px 14px 25px;
  border-radius: var(--border-radius-md);
  display: inline-block;
  font-weight: 600;
  position: relative;
  background: linear-gradient(90deg, #f37021 0%, #fdb913 50%, #00aeef 100%);
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.35);
  transition: all var(--transition-normal);
}

.carousel-caption-btn:hover {
  background: linear-gradient(90deg, #00aeef 0%, #fdb913 50%, #f37021 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 174, 239, 0.5);
}

.carousel-caption-btn span {
  position: relative;
}

.carousel-caption-btn span::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.carousel-caption-btn:hover span::after {
  transform: translateY(-50%) translateX(6px);
}

/* ==========================================================================
   Section Padding & Global Heading Standard Spacing
   ========================================================================== */
.section-padding,
.section-padding-inner,
.industries-represent-section,
.upcoming-events-section,
.why-choose-section,
.faq-connect-section,
.about-overview-section,
.about-eig-section,
.about-leadership-quote-section {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}

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

.why-choose-heading {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.why-choose-heading span {
  color: var(--primary-color);
  position: relative;
}

.section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.construction-calendar-para-box {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 30px;
}

.find-out-btn a {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, #8dc63f 0%, #39b54a 45%, #00aeef 100%);
  padding: 12px 35px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.25);
  transition: all var(--transition-normal);
}

.find-out-btn a:hover {
  background: linear-gradient(90deg, #00aeef 0%, #39b54a 55%, #8dc63f 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}

.about-section-img-box-main {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow-lg);
}

.about-section-img-box-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-section-img-box-main:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   Statistics / Counter Banner - Exact Reference Match
   ========================================================================== */
.stats-banner-section {
  width: 100%;
  background: linear-gradient(90deg, #8dc63f 0%, #39b54a 25%, #2ec4b6 50%, #00aeef 75%, #0077b6 100%);
  padding: 24px 0;
  position: relative;
  border-top: 1.5px dashed rgba(60, 140, 60, 0.4);
  border-bottom: 1.5px dashed rgba(0, 75, 135, 0.4);
  overflow: hidden;
}

.stats-banner-inner {
  width: 100%;
}

.stat-banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 10px;
  transition: transform 0.3s ease;
}

.stat-banner-item:hover {
  transform: translateY(-2px);
}

.stat-banner-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-banner-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.stat-banner-number {
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #000000;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  letter-spacing: -0.5px;
}

.stat-banner-number sup {
  font-size: 22px;
  font-weight: 800;
  top: -0.1em;
  margin-left: 2px;
  color: #000000;
}

.stat-banner-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.3px;
  text-align: left;
}

/* ==========================================================================
   Industries We Represent - Reference Match
   ========================================================================== */
.industries-represent-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.industries-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

.industry-card-item {
  position: relative;
  height: 420px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.industry-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.industry-card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
  transition: transform 0.6s ease;
}

.industry-card-item:hover .industry-card-bg-img {
  transform: scale(1.07);
}

.industry-card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.industry-card-info {
  position: relative;
  z-index: 3;
  padding: 0 22px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industry-card-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.industry-card-item:hover .industry-card-badge {
  transform: scale(1.08);
}

.industry-card-badge img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.industry-card-name {
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.25;
  color: #141619;
  margin: 0;
  text-align: left;
}

/* Category Specific Pastels & Smooth Bottom Gradient Blends */
.industry-fashion {
  background-color: #e2ccf8;
}

.industry-fashion .industry-card-gradient {
  background: linear-gradient(180deg, rgba(226, 204, 248, 0) 25%, rgba(226, 204, 248, 0.5) 52%, #e2ccf8 78%, #e2ccf8 100%);
}

.industry-construction {
  background-color: #74dedf;
}

.industry-construction .industry-card-gradient {
  background: linear-gradient(180deg, rgba(116, 222, 223, 0) 25%, rgba(116, 222, 223, 0.5) 52%, #74dedf 78%, #74dedf 100%);
}

.industry-cosmetics {
  background-color: #f9a6bd;
}

.industry-cosmetics .industry-card-gradient {
  background: linear-gradient(180deg, rgba(249, 166, 189, 0) 25%, rgba(249, 166, 189, 0.5) 52%, #f9a6bd 78%, #f9a6bd 100%);
}

.industry-engineering {
  background-color: #d1e7f8;
}

.industry-engineering .industry-card-gradient {
  background: linear-gradient(180deg, rgba(209, 231, 248, 0) 25%, rgba(209, 231, 248, 0.5) 52%, #d1e7f8 78%, #d1e7f8 100%);
}

.industry-gems {
  background-color: #bee77f;
}

.industry-gems .industry-card-gradient {
  background: linear-gradient(180deg, rgba(190, 231, 127, 0) 25%, rgba(190, 231, 127, 0.5) 52%, #bee77f 78%, #bee77f 100%);
}

.industry-food {
  background-color: #fcbca3;
}

.industry-food .industry-card-gradient {
  background: linear-gradient(180deg, rgba(252, 188, 163, 0) 25%, rgba(252, 188, 163, 0.5) 52%, #fcbca3 78%, #fcbca3 100%);
}

.industry-decor {
  background-color: #f8d77c;
}

.industry-decor .industry-card-gradient {
  background: linear-gradient(180deg, rgba(248, 215, 124, 0) 25%, rgba(248, 215, 124, 0.5) 52%, #f8d77c 78%, #f8d77c 100%);
}

.industry-printing {
  background-color: #f9df5c;
}

.industry-printing .industry-card-gradient {
  background: linear-gradient(180deg, rgba(249, 223, 92, 0) 25%, rgba(249, 223, 92, 0.5) 52%, #f9df5c 78%, #f9df5c 100%);
}

.industry-tech {
  background-color: #e2f65a;
}

.industry-tech .industry-card-gradient {
  background: linear-gradient(180deg, rgba(226, 246, 90, 0) 25%, rgba(226, 246, 90, 0.5) 52%, #e2f65a 78%, #e2f65a 100%);
}

.industry-toys {
  background-color: #ade0f8;
}

.industry-toys .industry-card-gradient {
  background: linear-gradient(180deg, rgba(173, 224, 248, 0) 25%, rgba(173, 224, 248, 0.5) 52%, #ade0f8 78%, #ade0f8 100%);
}

/* Owl Carousel Custom Controls - Pill floating buttons matching reference */
#industries-represent-home.owl-carousel {
  position: relative;
  padding: 8px 0;
}

#industries-represent-home .owl-stage-outer {
  padding: 10px 0;
}

#industries-represent-home .owl-nav {
  position: static;
  margin: 0;
}

#industries-represent-home .owl-nav button.owl-prev,
#industries-represent-home .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 54px;
  border-radius: 8px;
  background: #ffffff !important;
  color: #222222 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  transition: all 0.25s ease;
  font-size: 15px;
  opacity: 0.95;
  cursor: pointer;
}

#industries-represent-home .owl-nav button.owl-prev {
  left: 0px;
}

#industries-represent-home .owl-nav button.owl-next {
  right: 0px;
}

#industries-represent-home .owl-nav button.owl-prev:hover,
#industries-represent-home .owl-nav button.owl-next:hover {
  background: #0d1b2a !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.06);
}

/* ==========================================================================
   Upcoming Events & Calendar
   ========================================================================== */
.upcoming-events-section {
  background-color: var(--white);
}

.construction-calendar-box-main {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-sm);
  padding: 24px 20px;
  margin-bottom: 30px;
  transition: all var(--transition-normal);
  border: 1px solid #eef2f6;
  position: relative;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

.construction-calendar-box-main:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-md);
  border-color: var(--primary-color);
}

.upcoming-events-name-main {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-hover);
  margin-bottom: 12px;
  display: block;
}

.construction-calendar-img-box {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #f8fafc;
  border-radius: var(--border-radius-sm);
  padding: 10px;
}

.construction-calendar-img-box img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.construction-calendar-show-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.35;
}

.construction-calendar-date-country {
  font-size: 14px;
  color: #666666;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.construction-calendar-date-country .date {
  font-weight: 600;
  color: var(--primary-color);
}

.know_more_inner {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  margin-top: auto;
}

.know_more_inner:hover {
  color: var(--primary-hover);
  padding-left: 4px;
}

/* ==========================================================================
   Why Choose Us Section - Reference Match
   ========================================================================== */
.why-choose-section {
  padding: 90px 0;
  background-color: #f7f9fa;
  position: relative;
  overflow: hidden;
}

.why-choose-photo-wrapper {
  position: relative;
  padding: 8px;
}

.why-choose-photo-frame {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 6px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #00aeef 0%, #39b54a 35%, #fdb913 70%, #f37021 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.why-choose-main-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-choose-content-box {
  position: relative;
}

.why-choose-scroll-container {
  max-height: 290px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 18px;
  /* Firefox Support */
  scrollbar-width: thin;
  scrollbar-color: var(--brand-cyan) #eef2f6;
}

/* Custom Cyan Scrollbar for Webkit/Blink browsers */
.why-choose-scroll-container::-webkit-scrollbar {
  width: 5px;
}

.why-choose-scroll-container::-webkit-scrollbar-track {
  background: #eef2f6;
  border-radius: 10px;
}

.why-choose-scroll-container::-webkit-scrollbar-thumb {
  background: var(--brand-cyan);
  border-radius: 10px;
  transition: background 0.25s ease;
}

.why-choose-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--brand-navy);
}

.why-choose-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #111111;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.why-choose-lead {
  font-size: 13.5px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 18px;
}

.why-choose-feature {
  margin-bottom: 18px;
}

.why-choose-feature:last-child {
  margin-bottom: 0;
}

.why-choose-subheading {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 5px;
}

.why-choose-text {
  font-size: 13px;
  line-height: 1.55;
  color: #444444;
  margin-bottom: 0;
}

/* ==========================================================================
   FAQ & Connect Section - Exact Reference Match
   ========================================================================== */
.faq-connect-section {
  width: 100%;
  background: linear-gradient(90deg, #00aeef 0%, #2ec4b6 35%, #39b54a 70%, #8dc63f 100%);
  padding: 85px 0;
  position: relative;
}

/* FAQ White Card Box */
.faq-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 38px 34px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.faq-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}

.faq-accordion-item {
  border-bottom: 1px solid #e7e7e7;
}

.faq-accordion-header {
  margin: 0;
}

.faq-accordion-btn {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: #222222;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
  box-shadow: none !important;
}

.faq-accordion-btn:hover {
  color: var(--brand-navy);
}

.faq-icon-indicator {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-icon-indicator::before,
.faq-icon-indicator::after {
  content: '';
  position: absolute;
  background-color: #444444;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Horizontal line */
.faq-icon-indicator::before {
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
}

/* Vertical line (hidden when open) */
.faq-icon-indicator::after {
  top: 2px;
  left: 8px;
  width: 2px;
  height: 14px;
}

/* When expanded, collapse vertical line to form minus (-) */
.faq-accordion-btn:not(.collapsed) .faq-icon-indicator::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-accordion-body {
  padding: 0 0 16px 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: #555555;
}

/* Right Column - Connect Panel (Exact Reference Match) */
.connect-panel-wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 4px;
}

.connect-head-office {
  display: flex;
  align-items: center;
  gap: 22px;
}

.head-office-logo-wrap {
  flex-shrink: 0;
  max-width: 220px;
}

.head-office-logo-img {
  max-width: 100%;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.head-office-divider {
  width: 1.5px;
  height: 125px;
  background: #000000;
  flex-shrink: 0;
}

.head-office-content {
  color: #000000;
  font-family: 'Poppins', sans-serif;
  flex: 1;
  min-width: 0;
}

.head-office-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2px;
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.head-office-org {
  font-size: 14.5px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
  white-space: nowrap;
}

.head-office-addr {
  font-size: 13.5px;
  color: #1a1a1a;
  line-height: 1.45;
  margin-bottom: 4px;
}

.head-office-contact {
  font-size: 13.5px;
  color: #1a1a1a;
  line-height: 1.45;
}

.connect-separator {
  border: none;
  border-top: 1.2px solid #000000;
  margin: 32px 0;
  opacity: 1;
}

.connect-section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 16.5px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 22px;
}

.connect-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.connect-social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-cyan);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.25);
}

.connect-social-btn:hover {
  background: var(--brand-navy);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 75, 135, 0.4);
}

.connect-email-pill {
  display: inline-block;
  background: var(--brand-cyan);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 13px 48px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.25);
  transition: all 0.25s ease;
}

.connect-email-pill:hover {
  background: var(--brand-navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 75, 135, 0.35);
}

/* ==========================================================================
   Footer Bottom
   ========================================================================== */
footer {
  background: #0f1626;
  color: #a0aec0;
  font-size: 14px;
}

.footer-bottom {
  padding: 24px 0;
  font-size: 13px;
  background: #090e18;
  color: #94a3b8;
}

.footer-bottom-copyright {
  color: #94a3b8;
}

.footer-link-bottom {
  text-align: right;
}

.footer-link-bottom a {
  color: #94a3b8;
  margin: 0 6px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-bottom a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Floating WhatsApp Button - Always Visible Across All Pages
   ========================================================================== */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #ffffff !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99999;
  text-decoration: none !important;
  font-size: 32px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
  color: #ffffff !important;
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   About Us Page Styles - Exact Reference Match
   ========================================================================== */
.about-page-body {
  background-color: #ffffff;
}

.about-header-nav .navbar {
  border-bottom: 1px solid #eaeaea;
  padding: 16px 0;
}

.about-nav-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.about-header-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111 !important;
  letter-spacing: 0.8px;
  padding: 8px 16px !important;
}

.about-header-nav .nav-link:hover,
.about-header-nav .nav-link.active {
  color: var(--brand-navy) !important;
}

.about-header-nav .separator-slash {
  display: flex;
  align-items: center;
  padding: 0 4px;
}

.nav-sep-img {
  height: 16px;
  width: auto;
  opacity: 0.85;
}

.solution-bullet-img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  flex-shrink: 0;
}

.quote-icon-img {
  max-width: 44px;
  height: auto;
  display: inline-block;
}

.eig-find-more-pill img {
  width: 14px;
  height: auto;
  transition: transform 0.25s ease;
}

.eig-find-more-pill:hover img {
  transform: translateX(3px);
}

.about-nav-contact-btn,
.about-nav-contact-btn:focus,
.about-nav-contact-btn:active,
.about-nav-contact-btn.active,
.about-header-nav .about-nav-contact-btn,
.about-header-nav .about-nav-contact-btn.active {
  background-color: var(--brand-cyan) !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 34px;
  border-radius: 8px;
  transition: all 0.25s ease;
  border: none !important;
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.35) !important;
  display: inline-block;
  line-height: 1.2;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.about-nav-contact-btn:hover,
.about-header-nav .about-nav-contact-btn:hover {
  background-color: var(--brand-navy) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 75, 135, 0.55) !important;
  text-decoration: none !important;
}

/* Section 1: Overview */
.about-overview-section {
  background-color: #ffffff;
  padding-top: 45px !important;
  padding-bottom: 40px !important;
}

.about-page-main-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.4px;
}

.about-overview-para {
  font-size: 13.5px;
  line-height: 1.65;
  color: #333333;
}

.about-solutions-card {
  margin-top: 22px;
}

.about-solutions-heading {
  font-size: 14.5px;
  font-weight: 700;
  color: #111111;
}

.about-solutions-bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

.about-solutions-bullet-list li {
  font-size: 13.5px;
  color: #333333;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-bullet-ring {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2.5px solid var(--brand-cyan);
  display: inline-block;
  flex-shrink: 0;
}

.about-services-link-note {
  font-size: 13px;
  color: #333333;
  margin-top: 14px;
}

.about-services-link-note a {
  color: var(--brand-navy);
  font-weight: 600;
  text-decoration: underline;
}

/* Section 2: EIG */
.about-eig-section {
  background-color: #f7f9fa;
}

.eig-main-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #141619;
  line-height: 1.25;
}

.eig-main-heading strong {
  font-weight: 800;
  color: #111111;
  font-size: 28px;
}

.eig-desc-para {
  font-size: 13px;
  line-height: 1.65;
  color: #444444;
  margin-bottom: 14px;
}

.eig-find-more-pill {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #8dc63f 0%, #39b54a 50%, #00aeef 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.25);
}

.eig-find-more-pill:hover {
  background: linear-gradient(90deg, #00aeef 0%, #39b54a 50%, #8dc63f 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 174, 239, 0.4);
}

.about-photo-wrapper {
  position: relative;
  padding: 10px;
}

.about-photo-frame {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 8px;
  border: 3.5px solid transparent;
  background: linear-gradient(135deg, #00aeef 0%, #39b54a 35%, #fdb913 70%, #f37021 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.about-framed-photo {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Section 3: Leadership Quote - Exact Reference Match */
.about-leadership-quote-section {
  background-color: #ffffff;
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.leadership-quote-card {
  background: #ffffff;
  border-bottom: 2px solid var(--brand-cyan);
  padding-bottom: 28px;
  position: relative;
}

.leadership-portrait-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.leadership-portrait-img {
  width: 282.66px;
  height: 335.65px;
  display: block;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 0;
}

.leadership-quote-box {
  padding-left: 45px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.quote-icon-top-wrap {
  margin-bottom: 12px;
}

.quote-icon-img {
  width: 42px;
  height: auto;
  display: inline-block;
}

.director-quote-statement {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.68;
  color: #1a1a1a;
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

.quote-icon-bottom-wrap {
  text-align: right;
  margin-top: 2px;
  margin-bottom: 20px;
}

.director-credentials {
  margin-top: 0;
  margin-bottom: 0;
}

.director-fullname {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.director-role {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0;
}

/* ==========================================================================
   Our People Page Styles - Exact Reference Match
   ========================================================================== */
.people-page-body {
  background-color: #ffffff;
}

.people-overview-section {
  background-color: #ffffff;
  padding-top: 45px !important;
  padding-bottom: 70px !important;
}

.people-page-main-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.people-overview-para {
  font-size: 13.5px;
  line-height: 1.65;
  color: #333333;
  margin-bottom: 35px;
}

/* Team Grid (4-Column, 3-Column & 5-Column Support) */
.team-grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 270px));
  justify-content: center;
  column-gap: 24px;
  row-gap: 30px;
}

.team-grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: center;
  column-gap: 36px;
  row-gap: 36px;
}

.team-grid-5-col {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 230px));
  justify-content: center;
  column-gap: 20px;
  row-gap: 26px;
}

.team-member-card {
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #eeeeee;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
  border-color: #dbe4ec;
}

.team-member-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  overflow: hidden;
  background: #f0f3f6;
  position: relative;
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.team-member-card:hover .team-member-img {
  transform: scale(1.04);
}

.team-member-meta {
  padding: 12px 6px 14px 6px;
  text-align: center;
  background: #ffffff;
}

.team-member-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
  line-height: 1.25;
}

.team-member-designation {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 0;
  line-height: 1.25;
}

/* ==========================================================================
   Other Services Page Styles - Exact Reference Match
   ========================================================================== */
.services-page-body {
  background-color: #ffffff;
}

.services-intro-section {
  background-color: #ffffff;
  padding-top: 45px !important;
  padding-bottom: 25px !important;
}

.services-main-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.services-intro-para {
  font-size: 13.5px;
  line-height: 1.65;
  color: #333333;
  margin-bottom: 0;
}

.service-block-section {
  padding: 50px 0;
}

.service-block-section.bg-light-alt {
  background-color: #f7f9fa;
}

.service-brand-logo {
  max-height: 46px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}

.service-desc-text {
  font-size: 13.5px;
  line-height: 1.68;
  color: #444444;
  margin-bottom: 14px;
}

.service-desc-text strong {
  color: #111111;
  font-weight: 700;
}

.service-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-top: 24px;
  margin-bottom: 16px;
}

/* 5 Icons Row */
.service-icons-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.service-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e9ee;
  border-radius: 8px;
  padding: 12px 10px;
  min-width: 82px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.service-icon-item:hover {
  transform: translateY(-3px);
  border-color: var(--brand-cyan);
  box-shadow: 0 6px 16px rgba(0, 174, 239, 0.2);
}

.service-icon-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.service-icon-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #333333;
  text-align: center;
}

/* Bullet list */
.service-bullet-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.service-bullet-list li {
  font-size: 13.5px;
  color: #333333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-bullet-ring {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2.5px solid var(--brand-cyan);
  display: inline-block;
  flex-shrink: 0;
}

/* Pill Button */
.service-find-out-pill {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #8dc63f 0%, #39b54a 50%, #00aeef 100%);
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 24px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 174, 239, 0.25);
  border: none;
}

.service-find-out-pill:hover {
  background: linear-gradient(90deg, #00aeef 0%, #39b54a 50%, #8dc63f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 174, 239, 0.4);
  color: #ffffff !important;
}

.service-vector-img {
  max-width: 95%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.service-vector-img:hover {
  transform: scale(1.03) rotate(1deg);
}

/* ==========================================================================
   Careers Page Styles - Exact Reference Match
   ========================================================================== */
.careers-page-body {
  background-color: #ffffff;
}

.careers-top-section {
  background-color: #ffffff;
  padding-top: 45px !important;
  padding-bottom: 35px !important;
}

.careers-main-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
}

.careers-desc-para {
  font-size: 13.5px;
  line-height: 1.68;
  color: #333333;
  margin-bottom: 16px;
}

.careers-closing-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #111111;
  margin-top: 18px;
}

.careers-closing-text strong {
  font-weight: 700;
  color: #111111;
}

/* Work With Us Form Box */
.work-with-us-card {
  background: #ffffff;
  border: 1.5px solid var(--brand-cyan);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.1);
}

.work-with-us-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
}

.work-form-input {
  width: 100%;
  border: 1px solid #e1e7ec;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: #333333;
  margin-bottom: 14px;
  background-color: #ffffff;
  transition: all 0.25s ease;
  outline: none;
}

.work-form-input::placeholder {
  color: #9aa5b1;
  font-size: 13px;
}

.work-form-input:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.work-form-submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #8dc63f 0%, #39b54a 50%, #00aeef 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 0;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 12px rgba(0, 174, 239, 0.25);
}

.work-form-submit-btn:hover {
  background: linear-gradient(90deg, #00aeef 0%, #39b54a 50%, #8dc63f 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0, 174, 239, 0.4);
  color: #ffffff;
}

/* Current Openings Section */
.current-openings-section {
  background-color: #ffffff;
  padding-top: 20px !important;
  padding-bottom: 70px !important;
}

.current-openings-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
}

.career-job-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 6px;
  padding: 18px 24px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.career-job-card:hover {
  border-color: var(--brand-cyan);
  box-shadow: 0 6px 18px rgba(0, 174, 239, 0.12);
  transform: translateY(-2px);
}

.career-job-info {
  flex: 1;
  padding-right: 20px;
}

.career-job-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.career-job-desc {
  font-size: 13px;
  color: #555555;
  margin-bottom: 0;
  line-height: 1.5;
}

.career-apply-link {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-navy) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.career-apply-link:hover {
  color: var(--brand-cyan) !important;
  transform: translateX(3px);
}

.career-footer-note {
  margin-top: 32px;
}

.career-footer-note-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 2px;
}

.career-footer-note-desc {
  font-size: 13.5px;
  color: #666666;
  margin-bottom: 0;
}

/* ==========================================================================
   Contact Us Page Styles - Exact Reference Match
   ========================================================================== */
.contact-page-body {
  background-color: #ffffff;
}

.contact-main-section {
  background-color: #ffffff;
  padding-top: 45px !important;
  padding-bottom: 70px !important;
}

/* Form Card */
.contact-form-card {
  background: #ffffff;
  border: 1.5px solid var(--brand-cyan);
  border-radius: 8px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.1);
}

.contact-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
}

.contact-form-input {
  width: 100%;
  border: 1px solid #e1e7ec;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: #333333;
  margin-bottom: 14px;
  background-color: #ffffff;
  transition: all 0.25s ease;
  outline: none;
}

.contact-form-input::placeholder {
  color: #9aa5b1;
  font-size: 13px;
}

.contact-form-input:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.contact-form-textarea {
  width: 100%;
  border: 1px solid #e1e7ec;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: #333333;
  margin-bottom: 14px;
  background-color: #ffffff;
  transition: all 0.25s ease;
  outline: none;
  resize: vertical;
  min-height: 90px;
}

.contact-form-textarea::placeholder {
  color: #9aa5b1;
  font-size: 13px;
}

.contact-form-textarea:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

/* Captcha Mock Box */
.contact-captcha-wrap {
  margin-bottom: 14px;
}

.captcha-label {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 6px;
  display: block;
}

.captcha-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  padding: 10px 14px;
  width: 100%;
  max-width: 250px;
}

.captcha-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #222222;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  cursor: pointer;
}

.captcha-checkbox-wrap input[type="checkbox"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--brand-green);
}

.captcha-logo-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.captcha-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.captcha-brand-text {
  font-size: 7.5px;
  color: #555555;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Consent Checkbox */
.contact-consent-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-consent-wrap input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--brand-cyan);
  flex-shrink: 0;
}

.contact-consent-label {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--brand-navy);
  margin-bottom: 0;
  cursor: pointer;
}

.contact-consent-label span {
  color: var(--brand-coral);
}

/* Submit Button */
.contact-submit-btn {
  width: 100%;
  background: linear-gradient(90deg, #8dc63f 0%, #39b54a 50%, #00aeef 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 0;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 3px 12px rgba(0, 174, 239, 0.25);
}

.contact-submit-btn:hover {
  background: linear-gradient(90deg, #00aeef 0%, #39b54a 50%, #8dc63f 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0, 174, 239, 0.4);
  color: #ffffff;
}

/* Right Column: Contact Info & Offices */
.contact-main-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}

.contact-sub-para {
  font-size: 13.5px;
  color: #666666;
  margin-bottom: 16px;
}

.contact-head-badge {
  display: inline-block;
  background-color: var(--brand-navy);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.contact-head-org-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-head-addr {
  font-size: 13.5px;
  color: #444444;
  margin-bottom: 8px;
  padding-left: 22px;
  line-height: 1.5;
}

.contact-head-contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13.5px;
  color: #333333;
  margin-bottom: 16px;
  padding-left: 22px;
  flex-wrap: wrap;
}

.contact-head-contact-row a {
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-head-contact-row a:hover {
  color: var(--brand-cyan);
}

.contact-map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  margin-bottom: 24px;
  height: 165px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

/* Regional Offices */
.regional-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.regional-office-item {
  display: flex;
  flex-direction: column;
}

.regional-office-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--brand-navy);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.regional-office-name {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
}

.regional-office-contact-link {
  font-size: 12.5px;
  color: #444444;
  text-decoration: none;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.regional-office-contact-link:hover {
  color: var(--brand-cyan);
}