/* 
   PEOPLEFINDERSGROUP Stylesheet v3.0
   Styled to match reference design — clean, minimal, flat.
   Font: Roboto (matches reference image typography)
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* ==========================================
   CSS CUSTOM PROPERTIES
   ========================================== */
:root {
  --primary:      #1e1e1e;
  --secondary:    #00ffef;
  --accent:       #00ffef;
  --hover-color:  #a9a9a9;
  --text-dark:    #1e1e1e;
  --text-muted:   #a9a9a9;
  --bg-light:     #ffffff;
  --bg-white:     #ffffff;
  --border-color: #eeeeee;

  --font-body:    'Roboto', sans-serif;
  --font-heading: 'Roboto', sans-serif;

  --transition:   all 0.5s;

  /* No fancy shadows — flat design */
  --shadow-sm:  none;
  --shadow-md:  none;
  --shadow-lg:  none;

  --radius-lg:  5px;
  --radius-md:  5px;
}

/* ==========================================
   GLOBAL RESET & BASE
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body) !important;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 24px;
  margin: 0;
  padding: 0;
  transition: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  color: var(--primary);
  margin-top: 0;
}

p {
  font-size: 14px !important;
  color: var(--text-dark);
  line-height: 24px !important;
  margin-bottom: 0;
}

a {
  text-decoration: none !important;
}

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

/* Reset browser default fieldset styles */
fieldset {
  border: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

/* ==========================================
   CONTAINER — Consistent max-width
   ========================================== */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px)  { .container { max-width: 540px; } }
@media (min-width: 768px)  { .container { max-width: 720px; } }
@media (min-width: 992px)  { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1280px !important; } }
@media (min-width: 1400px) { .container { max-width: 1280px !important; } }

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  background-color: #ffffff !important;
  box-shadow: none;
  border-bottom: 1px solid #eeeeee;
  padding: 18px 0 0 0 !important;
  position: sticky !important;
  top: 0;
  z-index: 1030;
  margin-top: 0 !important;
}

/* Undo any tooplate absolute positioning */
#navbarResponsive {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: auto !important;
  background-color: transparent !important;
  box-shadow: none !important;
  z-index: auto !important;
}

/* Two-row navbar */
.navbar .container.flex-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* Nav links row with thin top separator */
.navbar .w-100.d-flex.justify-content-center {
  border-top: 1px solid #eeeeee;
  margin-top: 18px;
  padding: 0;
  width: 100%;
}

/* ---- LOGO ---- */
.logo-wrapper {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: var(--transition);
  padding: 0 !important;
}

.navbar .navbar-brand.logo-wrapper {
  width: auto !important;
  position: relative !important;
  padding: 0 !important;
  text-align: center !important;
}

.logo-wrapper .brand-title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  /* Reference: approx 22px, light weight */
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none !important;
  border-bottom: none;
  padding-bottom: 0;
}

/* "PEOPLEFINDERS" — medium grey, slightly heavier */
.logo-wrapper .brand-title .brand-pf {
  color: #999999;
  font-weight: 400;
}

/* "GROUP" — lighter grey */
.logo-wrapper .brand-title .brand-gp {
  color: #cccccc;
  font-weight: 300;
}

/* Footer logo */
.logo-wrapper.footer-style .brand-title .brand-pf {
  color: #ffffff;
}
.logo-wrapper.footer-style .brand-title .brand-gp {
  color: #bbbbbb;
}

.logo-wrapper:hover {
  opacity: 0.8;
}

/* ---- NAV LINKS ---- */
/* Reference: ALL CAPS, small ~13px, dark #1e1e1e, active = grey #a9a9a9 */
.nav-link {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #1e1e1e !important;
  padding: 8px 15px 12px 15px !important;
  transition: var(--transition) !important;
  position: relative;
  text-transform: none !important;
  letter-spacing: 0.4px !important;
}

/* Active nav item = muted grey (as in reference — HOME is grey) */
.nav-item.active .nav-link {
  color: #a9a9a9 !important;
}

.nav-link:hover {
  color: #a9a9a9 !important;
}

/* Remove underline animation — reference has no underline on hover */
.nav-link::after {
  display: none !important;
}

/* Toggler */
.navbar-toggler {
  border: 1px solid #00ffef !important;
  background-color: #00ffef !important;
  padding: 8px 12px !important;
  height: auto !important;
  outline: none !important;
}

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

.navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 24px;
  height: 18px;
  display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: var(--transition);
}

.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon span    { top: 8px; }
.navbar-toggler-icon::after  { bottom: 0; }

.navbar::after {
  display: none !important;
}

/* ==========================================
   HERO / BANNER
   ========================================== */
/* Reference: Bright cyan #00ffef background, person image right,
   "Talent Solutions" ~22px bold dark on LEFT */
.banner {
  background-color: #01F0EE !important;
  background-image: none !important;
  margin-top: 0 !important;
  padding: 0 !important;
  min-height: clamp(420px, 40vh, 600px);
  height: clamp(420px, 40vh, 600px);
  display: flex !important;
  align-items: center;
  position: relative;
  overflow: visible;
  background-size: unset !important;
  background-repeat: unset !important;
  background-position: unset !important;
}

.banner .container,
.banner .row {
  height: 100%;
}

.banner .container {
  max-width: 1280px;
  width: calc(100% - 124px);
}

.banner .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: center;
}

/* Image column */
.banner-img-col {
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: visible;
}

/* The person image */
.banner-person-img {
  height: auto !important;
  width: clamp(340px, 42vw, 620px);
  max-width: 100% !important;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transform: scale(1.12);
  transform-origin: center center;
}

/* Caption column — vertically centered with the image in the banner */
.banner .banner-caption-col {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0;
}

/* Caption area */
.banner .caption {
  z-index: 10;
  padding: 0;
  max-width: 580px;
  margin: 0 auto;
  background-color: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Reference: "Talent Solutions" — bold, dark #1e1e1e, ~22-24px, NO white color */
.banner .caption h2 {
  font-size: clamp(18px, 2.5vw, 24px) !important;
  font-weight: 700 !important;
  color: #1e1e1e !important;
  line-height: 1.3 !important;
  margin-bottom: 15px !important;
  margin-top: 0 !important;
}

/* No underline decoration on span */
.banner .caption h2 span {
  color: #1e1e1e;
  position: relative;
}

.banner .caption h2 span::after {
  display: none;
}

/* Reference: body text — ~13-14px, dark #1e1e1e, small and compact */
.banner .caption p {
  font-size: 14px !important;
  color: #1e1e1e !important;
  max-width: 630px;
  margin-top: 0 !important;
  line-height: 24px !important;
  font-weight: 400;
  margin-bottom: 0 !important;
}

/* ==========================================
   SECTIONS & TYPOGRAPHY
   ========================================== */
.section-heading {
  text-align: center;
  margin-bottom: 15px !important;
  margin-top: 0 !important;
  position: relative;
}

/* Reference "We support on" — plain, regular weight, ~18px, centered */
.section-heading h1 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1e1e1e !important;
  margin-bottom: 5px !important;
  margin-top: 0 !important;
  display: inline-block;
  position: relative;
}

/* No decorative underline bar */
.section-heading h1::after {
  display: none !important;
}

.line-dec {
  display: none !important;
}

/* ==========================================
   HIRING CAPABILITIES SECTION
   Reference: plain white, no cards, 
   headings are LARGE UPPERCASE UNDERLINED bold,
   lists use standard bullets
   ========================================== */
.regions-section {
  background-color: #ffffff;
  padding: 25px 0 25px 0;
}

/* Center the cards row with a balanced gap between them and align the section content centrally */
.regions-section .row.row-cols-1.row-cols-md-2.row-cols-lg-2 {
  justify-content: center !important;
  column-gap: clamp(30px, 6vw, 90px);
  row-gap: 20px;
  margin-top: 5px;
}


@media (min-width: 992px) {
  .regions-section .row.row-cols-1.row-cols-md-2.row-cols-lg-2 > .col-lg-3:nth-child(1) {
    position: relative;
    left: -40px;
  }
  .regions-section .row.row-cols-1.row-cols-md-2.row-cols-lg-2 > .col-lg-3:nth-child(2) {
    position: relative;
    left: 200px;
  }
}

/* Section heading: "Hiring Capabilities" — must be LARGER than card subheadings (22px) */
.regions-section .section-heading h1 {
  font-family: 'Roboto', sans-serif !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  color: #1e1e1e !important;
  margin-bottom: 8px !important;
  text-align: center;
  letter-spacing: 0.3px;
}

.regions-section .section-heading h1::after {
  display: none !important;
}

/* Gold divider — hide it to match reference flat style */
.regions-section .gold-divider {
  display: none;
}

/* Region cards — FLAT, no border, no shadow, no border-radius */
/* Reference shows plain sections, not cards */
.region-card {
  background-color: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  min-height: auto;
  height: auto;
  display: block;
  transition: none;
  cursor: default;
  width: 100%;
  max-width: 320px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.region-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

/* Region header: no flex layout needed */
.region-header {
  display: block;
  margin-bottom: 15px;
  width: 100%;
  text-align: left;
}

/* Reference heading: "INDIA HIRING" / "US HIRING"
   — UPPERCASE, bold, large, with text underline decoration, dark */
.region-header h3 {
  font-family: 'Roboto', sans-serif !important;
  font-size: clamp(13.8px, 1.725vw, 18.4px);
  font-weight: 700;
  color: #1e1e1e;
  margin: 0;
  line-height: 1.3;
  text-align: left;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.5px;
}

/* Feature list — standard bullet-style to match reference */
.region-feature-list {
  list-style: disc;
  padding-left: 20px;
  max-width: 100%;
  list-style-position: outside;
  text-align: left;
}

.region-feature-list li {
  display: list-item;
  align-items: unset;
  gap: 0;
  font-size: 13px;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 22px;
  text-transform: none;
  letter-spacing: 0.3px;
}

/* Hide bullet-dot spans — using CSS list-style instead */
.region-feature-list li .bullet-dot {
  display: none;
}

/* ==========================================
   SERVICE CARDS (What We Do page)
   ========================================== */
.service-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: none;
  padding: clamp(14px, 1.6vw, 20px) clamp(15px, 2vw, 25px);
  border: 1px solid #eeeeee;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  border-color: #00ffef;
  box-shadow: 0 2px 10px rgba(0, 255, 239, 0.15);
}

/* Services page: shrink the 3 card widths by 20%, centered within their column */
.row.justify-content-center > [id^="s"] .service-card {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.service-logo-wrapper {
  width: clamp(44px, 5vw, 64px);
  height: clamp(44px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-logo-wrapper svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-logo-wrapper {
  transform: translateY(-3px);
}

.service-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}

.service-card h4 {
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #1e1e1e !important;
  margin-bottom: 12px !important;
  line-height: 1.3 !important;
  margin-top: 0 !important;
  text-align: center;
  width: 100%;
  min-height: 53px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
}

.service-card p {
  font-family: var(--font-body) !important;
  font-size: 15.4px !important;
  color: #1e1e1e !important;
  line-height: 22px !important;
  margin-bottom: 0 !important;
  flex-grow: 0;
  font-weight: 400;
  text-align: left;
  width: 100%;
}

.service-card ul {
  list-style: disc !important;
  padding-left: 20px !important;
  margin: 8px 0 0 0 !important;
  width: 100%;
  text-align: left;
  padding-top: 0 !important;
}

.service-card ul li {
  font-family: var(--font-body) !important;
  font-size: 15.4px !important;
  color: #1e1e1e;
  margin-bottom: 3px;
  line-height: 22px;
  font-weight: 400;
  display: list-item !important;
  list-style: disc !important;
}

.service-card ul li::before {
  display: none;
}

.service-card ul li:last-child {
  margin-bottom: 0;
}

/* ==========================================
   CONTACT PAGE & FORM
   ========================================== */
.contact-page {
  padding: 35px 0 60px 0 !important;
  background-color: #ffffff;
  margin-top: 0 !important;
}

.contact-page-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.contact-page-title::after {
  display: none !important;
}

.contact-social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.csocial-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ffffff;
}

.csocial-fb { background-color: #1877F2; }
.csocial-li { background-color: #0A66C2; }
.csocial-tw { background-color: #1DA1F2; }

.csocial-btn:hover {
  opacity: 0.8;
  color: #ffffff;
}

.contact-info-card {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 20px 0;
  height: 100%;
  border: none;
}

.contact-info-card h3 {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #1e1e1e;
  margin-bottom: 18px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.contact-detail-icon {
  display: none;
}

.contact-detail-text h5 {
  display: inline;
  font-size: 14px;
  color: #1e1e1e;
  margin-bottom: 0;
  text-transform: none;
  font-weight: 400;
}

.contact-detail-text h5::after {
  content: ' : ';
}

.contact-detail-text p {
  display: inline;
  font-size: 14px !important;
  color: #1e1e1e !important;
  font-weight: 400;
  margin-bottom: 0 !important;
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 0 clamp(0px, 2vw, 20px);
  border: none;
}

.contact-form-card h3 {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.form-control {
  border-radius: 0 !important;
  border: 1px solid #cccccc !important;
  padding: 10px 14px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  transition: var(--transition) !important;
  margin-bottom: 14px;
  background-color: #ffffff !important;
  color: #888888 !important;
  width: 100%;
}

.form-control:focus {
  border-color: #00ffef !important;
  box-shadow: none !important;
  outline: none;
  color: #333333 !important;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary-custom {
  background-color: #00ffef;
  color: #ffffff !important;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}

.btn-primary-custom:hover {
  opacity: 0.7;
  color: #ffffff !important;
}

.btn-secondary-custom {
  background-color: transparent;
  color: #1e1e1e !important;
  border: 1px solid #1e1e1e;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}

.btn-secondary-custom:hover {
  background-color: #00ffef;
  border-color: #00ffef;
  color: #ffffff !important;
}

.btn-modern {
  background-color: #00ffef;
  color: #ffffff !important;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 300;
  font-size: 14px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
}

.btn-modern:hover {
  opacity: 0.7;
  color: #ffffff !important;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-page {
  padding: 35px 0 60px 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.about-page .left-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.about-page .right-content {
  padding-left: clamp(0px, 2vw, 20px);
}

.about-page .right-content h4 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #1e1e1e;
  margin-bottom: 20px;
  margin-top: 0;
}

.about-page .right-content p {
  font-size: 14px !important;
  color: #1e1e1e !important;
  line-height: 24px !important;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: #808080 !important;
  text-align: left !important;
  color: #e0e0e0;
  padding: 50px 0 20px 0 !important;
  font-size: 14px;
  border-top: none;
}

/* Override any inherited list resets */
.footer ul {
  padding: 0 !important;
  margin: 0 !important;
}

.footer ul li {
  list-style: none !important;
  display: block !important;
}

.footer-col {
  margin-bottom: clamp(15px, 2.5vw, 30px);
}

.footer-heading {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-heading::after {
  display: none !important;
}

.footer-links {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.footer-links li {
  margin-bottom: 8px;
  display: block !important;
}

.footer-links li a {
  color: #dddddd;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 400;
  font-size: 13px;
  display: inline-block;
}

.footer-links li a:hover {
  color: #00ffef;
}

.footer-contact-info {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}

.footer-contact-info li {
  display: flex !important;
  align-items: flex-start;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #dddddd;
  font-size: 13px;
}

.footer-contact-info li i {
  display: none;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #aaaaaa;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.footer .social-links a {
  background-color: #aaaaaa !important;
  color: #ffffff !important;
  line-height: 1 !important;
  border-radius: 50% !important;
}

.social-links a:hover {
  background-color: #00ffef !important;
  color: #ffffff;
}

/* Slogan row vertical spacing override */
.footer-slogan-row {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.footer-giant-slogan {
  font-size: clamp(1.4rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 10px 0 !important;
}

.btn-footer-cta {
  background-color: #00ffef;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-footer-cta:hover {
  opacity: 0.7;
}

.copyright-text {
  color: #dddddd;
  font-size: 12px;
  text-transform: none !important;
  line-height: 40px;
}

.sub-footer {
  display: none !important;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* ---- Large desktops ---- */
@media (min-width: 1440px) {
  .banner-person-img {
    margin-left: clamp(-200px, -13vw, -100px);
  }
}

/* ---- Laptop 992–1199px ---- */
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-person-img {
    margin-left: clamp(-120px, -9vw, -40px);
  }
}

/* ---- Tablet landscape ≤ 991px ---- */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #ffffff;
    padding: 10px 0;
    border-top: 1px solid #eeeeee;
    margin-top: 8px;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    z-index: 999 !important;
  }

  #navbarResponsive {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    background-color: transparent !important;
    box-shadow: none !important;
    text-align: center !important;
  }

  .banner {
    min-height: auto !important;
    flex-direction: column;
    padding: 0 !important;
  }

  .banner-img-col {
    height: clamp(200px, 38vw, 300px);
    justify-content: center;
    width: 100%;
  }

  .banner-person-img {
    max-width: 100%;
    width: auto;
    height: 100%;
    margin-left: 0;
  }

  .banner .caption {
    padding: 25px 15px !important;
    max-width: 100% !important;
  }

  .about-page .right-content {
    padding-left: 0;
    margin-top: 25px;
  }

  .contact-form-card {
    padding-left: 0;
    margin-top: 25px;
  }

  .footer {
    padding: 40px 0 20px 0;
  }

  .footer-col {
    margin-bottom: 25px;
  }

  .footer-bottom-row {
    text-align: center;
  }
}

/* ---- Mobile landscape ≤ 767px ---- */
@media (max-width: 767px) {
  .region-card {
    padding: 0 0 25px 0;
  }

  .footer-giant-slogan {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }

  .service-card {
    margin-bottom: 20px;
  }

  .copyright-text {
    line-height: 1.5;
  }
}

/* ---- Mobile ≤ 575px ---- */
@media (max-width: 575px) {
  .banner .caption h2 {
    font-size: 18px !important;
  }

  .banner .caption p {
    font-size: 13px !important;
  }

  .region-card {
    padding: 0 0 20px 0;
  }

  .region-header h3 {
    font-size: 13.8px;
  }

  .footer-bottom-row > div {
    text-align: center;
    margin-bottom: 12px;
  }

  .logo-wrapper .brand-title {
    font-size: 14px;
  }

  .contact-form-card {
    padding: 0;
  }
}

/* ---- Very small ≤ 375px ---- */
@media (max-width: 375px) {
  .banner .caption h2 {
    font-size: 16px !important;
  }

  .logo-wrapper .brand-title {
    font-size: 12px;
  }

  .footer-giant-slogan {
    font-size: 1.1rem;
  }

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

/* ---- Short viewports (laptops, esp. with Windows display scaling) ---- */
@media (max-height: 700px) {
  .navbar {
    padding: 10px 0 0 0 !important;
  }

  .navbar .w-100.d-flex.justify-content-center {
    margin-top: 10px;
  }

  .banner {
    min-height: clamp(260px, 48vh, 380px);
  }

  .banner-img-col {
    height: clamp(260px, 48vh, 380px);
  }
}

/* ==========================================
   OVERFLOW & HORIZONTAL SCROLL PREVENTION
   ========================================== */
html {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  max-width: calc(100% + 30px);
  overflow-x: hidden;
}

img:not(.banner-person-img),
svg:not(.banner-person-img),
video,
canvas,
audio,
iframe,
embed,
object {
  max-width: 100%;
}

/* Banner image allowed to overflow its clipped container */
.banner-person-img {
  max-width: none !important;
}

/* version: 3.0 */

/* ==========================================
   CUSTOM FORM STYLING FOR CONTACT US PAGE
   ========================================== */
.contact-header-section {
  background-color: #ffffff;
  padding: 60px 0 40px 0;
}

.contact-form-section {
  background-color: #ebf3fc;
  padding: 60px 0 80px 0;
}

.form-label-custom {
  font-family: var(--font-body) !important;
  font-size: 14px;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 8px;
  display: block;
}

.form-control-underline {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #999999 !important;
  border-radius: 0 !important;
  padding: 10px 0 !important;
  color: #1e1e1e !important;
  width: 100%;
  box-shadow: none !important;
  transition: border-color 0.2s ease-in-out;
}

.form-control-underline:focus {
  border-bottom: 2px solid #002c5c !important;
  outline: none !important;
}

.form-control-underline::placeholder {
  color: #777777 !important;
  opacity: 1;
}

.form-control-select-box {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  background-color: #ffffff !important;
  border: 1px solid #cccccc !important;
  border-radius: 0 !important;
  padding: 12px 16px !important;
  color: #1e1e1e !important;
  width: 100%;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%231e1e1e' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px !important;
  cursor: pointer;
  height: auto;
  line-height: 1.2;
}

.form-control-select-box:focus {
  border-color: #002c5c !important;
  outline: none !important;
}

textarea.form-control-underline {
  min-height: 120px;
  resize: vertical;
}

.btn-modern-dark {
  background-color: #002c5c;
  color: #ffffff !important;
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-modern-dark:hover {
  opacity: 0.8;
  color: #ffffff !important;
  text-decoration: none;
}

.form-control-underline.error-input {
  border-bottom: 2px solid #d9381e !important;
}

.form-control-select-box.error-input {
  border: 1px solid #d9381e !important;
}

#message::placeholder {
  color: #8c98a5 !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
}
