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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-md-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

@media (min-width: 992px) {
  .col-lg-1-7 {
    flex: 0 0 14.2857%;
    max-width: 14.2857%;
  }
}

/* Flex Utilities */
.d-flex {
  display: flex !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.g-4>[class*="col-"] {
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

/* Spacing Utilities */
.py-1 {
  padding-top: 0.2rem !important;
  padding-bottom: 0.2rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

/* Text Utilities */
.text-center {
  text-align: center !important;
}

.text-white {
  color: #fff !important;
}

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

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

.text-muted {
  color: #6c757d !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.fw-bold {
  font-weight: 700 !important;
}

/* Backgrounds */
.bg-primary {
  background-color: var(--blue) !important;
}

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

.bg-white {
  background-color: #fff !important;
}

/* List Utilities */
.list-unstyled {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

/* Contact Section */
.contact-section {
  width: 100%;
  margin-top: -40px;
  display: flex;
  justify-content: center;

}

/* Contact Box/Card */
.contact-container {
  background: #fff;
  width: 100%;
  max-width: 650px;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Heading */
.contact-container h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
}

.contact-container .subtitle {
  text-align: center;
  color: #6c757d;
  margin-bottom: 30px;
  font-size: 15px;
}

/* Inputs */
.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.2s ease-in-out;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077ff;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 119, 255, 0.2);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #0077ff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #005fcc;
}

/* Components */
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.btn-primary {
  background-color: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-light {
  background-color: #f8f9fa;
  color: #212529;
  border-color: #f8f9fa;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.navbar {
  position: relative;
  padding: 0.8rem 1rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.navbar-brand img {
  height: 50px;
}

.navbar-collapse {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  /* This "somewhat left" from the edge */
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--red);
}

/*  SLIDER */
.custom-slider {
  width: 100%;
  overflow: hidden;
  height: 600px;
  position: relative;
  /* Removed margin-top to keep it higher */
  margin-top: 0;
}

.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  animation: auto-slide 18s infinite ease-in-out;
}

.slide {
  width: 33.333%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@keyframes auto-slide {

  0%,
  28% {
    transform: translateX(0);
  }

  33.33%,
  61.33% {
    transform: translateX(-33.333%);
  }

  66.66%,
  94.66% {
    transform: translateX(-66.666%);
  }

  100% {
    transform: translateX(0);
  }
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
  cursor: pointer;
  display: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

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

.rounded {
  border-radius: 0.25rem !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* ---------- CSS VARIABLES ---------- */
:root {
  --blue: #4b6ca9;
  --red: #f27634;
  --dark: #23385b;
  --muted: #555;
  --light: #f5f5f5;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.commitment-title {
  font-weight: 500;
  font-size: 30px;
}

/* ==== TOP BAR ===*/
.top-bar {
  background-color: var(--blue);
  color: #fff;
  font-size: 13px;
}

.top-bar .social-icons i {
  color: #fff;
  margin-right: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.top-bar .social-icons i:hover {
  opacity: 0.7;
}

.top-bar span {
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}


/* ===MAIN NAVBAR== */
.main-navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
}

.navbar-toggler {
  display: none;
  /* Hidden by default in desktop */
}

.navbar-collapse {
  display: flex !important;
  /* Visible by default in desktop */
}


.main-navbar .navbar-brand img {
  height: 50px;
}

.main-navbar .nav-link {
  color: #333 !important;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.main-navbar .nav-link:hover {
  color: var(--blue) !important;
}

.lang-link {
  border: 1px solid var(--blue) !important;
  border-radius: 20px !important;
  padding: 4px 12px !important;
  font-size: 13px !important;
  color: var(--blue) !important;
}


/* ===SECONDARY STRIP MENU==== */
.nav-strip {
  width: 100%;
}

.strip-item {
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.2s;
  flex: 1 1 25%;
}

.strip-item:hover {
  opacity: 0.88;
}

.strip-item a {
  color: #fff;
  display: block;
  padding: 10px;
  font-weight: 700;
}

/* menu-tabs variant*/
.menu-tabs {
  width: 100%;
  display: flex;
}

.menu-tabs .tab-blue {
  flex: 1;
  padding: 12px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  background-color: var(--blue);
}

.menu-tabs .tab-red {
  flex: 1;
  padding: 12px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  background-color: var(--red);
}

/* Carousel*/
.carousel-item.active {
  display: block;
}

.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Social Links Band(Bottom) */
.social-band {
  background-color: var(--blue);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.social-band .icon-box i {
  font-size: 35px;
  /* Large icons */
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  color: #fff !important;
}

.social-band .icon-box p {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.social-band .icon-box:hover {
  transform: translateY(-9px) scale(1);
}

/* Specific Blue Band Section (Icon Band) */
.engineering-icons-blue {
  background-color: var(--blue, #0077b5);
  padding: 20px 0;
  margin: 30px 0;
}

.engineering-icons-blue .engineering-title {
  text-align: center;
  color: white !important;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
}

.engineering-icons-blue .icon-box {
  text-align: center;
  color: white !important;
  padding: 15px 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.engineering-icons-blue .icon-box i {
  color: white !important;
  font-size: 32px;
  margin-bottom: 12px;
}

.engineering-icons-blue .icon-box:hover {
  transform: translateY(-8px);
}

/* Original Title Style for other sections */
.engineering-title {
  text-align: center;
  color: #333;
  font-size: 24px;
  font-weight: 700;
}

.icon-box {
  text-align: center;
  color: #333;
  padding: 12px 8px;
}

/* ====== NEWS CARDS  (index.html) =============== */
.container .card {
  width: 100% !important;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dbe7fa;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.container .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
}

.container .card .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.container .card .card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.35;
}

.container .card .card-text {
  font-size: 13px;
  color: #3f4555;
  line-height: 1.65;
}

.container .card .btn-primary {
  background-color: var(--blue);
  border-color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.container .card .btn-primary:hover {
  background-color: var(--red);
  border-color: var(--red);
}

/* Informational Text Paragraphs */
.about-text-para,
.about-details-content p,
.page-content-section p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #333;
}


/* ==== LANDMARK PAGE ====== */

.section {
  padding: 55px 0;
}

.breadcrumb-bar {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  padding: 22px 0 10px;
}

.breadcrumb-bar span {
  color: var(--red);
}

.lm-heading {
  font-size: 27px;
  font-weight: 600;
  color: #333;
  margin: 12px 0 16px;
}

.lm-sub-text {
  max-width: 720px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* Feature alternating rows */
.feature-box {
  background: #fff;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.feature-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

/* Project cards */
.project-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.project-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.project-body {
  padding: 12px;
}

.project-title {
  font-size: 15px;
  font-weight: 700;
  color: #106ebd;
  margin-bottom: 4px;
}

.project-location {
  font-size: 12px;
  color: #777;
  margin-bottom: 8px;
}

.project-link {
  font-size: 12px;
  color: #106ebd;
  font-weight: 600;
}

.project-link:hover {
  text-decoration: underline;
}

/* Pagination */
.pagination .page-link {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  border-color: #b2cfee;
}

.pagination .page-item.active .page-link {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.pagination .page-link:hover {
  background-color: #dce8fb;
  color: var(--blue);
}

/* ==HUMAN CAPITAL PAGE==== */
.mid-margin {
  margin-top: 30px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
}

.csr-mid {
  background: var(--light);
}

.csr-content {
  max-width: 860px;
  margin: 0 auto;
}

.csr-heading {
  font-size: 34px;
  font-weight: 700;
  color: #222;
}

.csr-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.custom-size {
  font-size: 17px;
}

.para-two {
  margin-top: 6px;
}

/*=====FOOTER ==== */
.footer-section {
  background-color: #0a1f44;
  color: #fff;
  padding-bottom: 0 !important;
}

.footer-section ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}


.footer-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #fff;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: #bbb;
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #fff;
}

.footer-contact-band {
  background-color: #0a1f44;
  /* Match footer dark blue */
  padding: 40px 0 80px 0;
  color: #fff;
}

.footer-contact-card {
  background-color: #84a8de;
  /* Light blue box from image */
  border-radius: 12px;
  padding: 15px 20px;
  max-width: 340px;
  margin: 0 auto;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-contact-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
  color: #0a1f44;
  /* Dark blue title */
  text-transform: capitalize;
}

.footer-contact-card p {
  font-size: 13px;
  margin-bottom: 6px;
  color: #0a1f44;
  /* Dark blue text */
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
  font-weight: 600;
}

.footer-contact-card i {
  margin-right: 10px;
  font-size: 14px;
  color: #f27634;
  /* Corporate orange/red for icons */
  margin-top: 2px;
}


.footer-bottom {
  background-color: #141313;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

.footer-section hr {
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-section .bi {
  cursor: pointer;
  transition: color 0.2s;
}

.footer-section .bi:hover {
  color: #f0c040;
}

.address-text {
  font-size: 13px;
  color: #ccc;
  line-height: 1.85;
}

/* ---------- INNER PAGE WRAPPER ---------- */
.inner-page-content {
  padding: 30px 0 55px;
}


/* ---------- INNER PROJECT CARD (unified content box) ---------- */
.inner-card {
  padding: 32px 0 0;
}

/* ---------- HERO / MAIN IMAGE ---------- */
.inner-card .inner-hero-img,
.inner-card img.img-fluid {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin-bottom: 28px;
}

/* second / third images inside content */
.inner-card .inner-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 24px 0;
}

/* ---------- PROJECT TITLE ---------- */
.inner-card .inner-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.25;
}

/* ---------- SECTION HEADINGS inside content ---------- */
.inner-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin: 28px 0 10px;
  padding-left: 10px;
  border-left: 4px solid var(--red);
}

/* ---------- BODY TEXT ---------- */
.inner-card p,
.inner-card li {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}

.inner-card ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

/* ---------- HIGHLIGHT / CLOSING PARAGRAPH ---------- */
.inner-card .highlight-text {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  background: #f0f5ff;
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
}

/* ---------- BACK BUTTON ---------- */
.btn-back,
.btn-inner-back {
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 16px;
  padding: 10px 28px;
  background-color: var(--blue);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid var(--blue);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-back:hover,
.btn-inner-back:hover {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff !important;
}

/* ===== CONTAINER WIDTH FIX ===== */
.container {
  width: min(900px, 100%);
}

/*about us*/
.about-page-wrapper {
  font-family: inherit;
  /* Inherit global sans-serif */
  color: #4a4a4a;
}

.about-content-section {
  width: 65%;
  /* Matches screenshot ratio relative to screen width */
  max-width: 850px;
}

.about-text-para {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 22px;
  font-weight: 400;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.about-section-title {
  font-size: 30px;
  color: #333;
  font-weight: 300;
  margin: 45px 0 20px;
  line-height: 1.3;
}

.about-section-title strong {
  font-weight: 600;
}

.about-collage {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 10px 0 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-quote {
  color: #1c6ba4;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
  font-style: italic;
  margin: 30px 45px 35px;
  font-weight: 500;
}

.about-accordion {
  margin: 30px 0;
}

.about-accordion-item {
  padding: 18px 0;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-accordion-item:last-child {
  border-bottom: 1px solid #e0e0e0;
}

.about-accordion-item::after {
  content: "+";
  font-size: 20px;
  font-weight: 300;
  color: #666;
}

.about-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin: -10px 0 15px;
  line-height: 1.4;
}

.about-link-box {
  background-color: #e9e9e9;
  padding: 22px 30px;
  margin: 25px 0 35px;
  border-radius: 2px;
  border-top: 2px solid #5d4a8e;
}

.about-link-box a {
  display: block;
  color: #0056b3;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 14px;
  font-weight: 500;
}

.about-link-box a:last-child {
  margin-bottom: 0;
}

.about-link-box a::before {
  content: "➔";
  margin-right: 12px;
  font-size: 13px;
  color: #0056b3;
}

/* ====BUSINESS UNITS ================ */

.bu-content-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.bu-intro-title {
  font-size: 34px;
  color: #333;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 25px;
}

.bu-text-para {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.bu-grid-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 15px;
}

.bu-grid-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.bu-card {
  flex: 0 0 calc(50% - 15px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.bu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.bu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}

.bu-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue, #4b6ca9);
  margin-bottom: 12px;
}

.bu-card-text {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.bu-card-link {
  color: var(--red, #f27634);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.bu-card-link:hover {
  color: var(--blue, #4b6ca9);
}


/* Gallery Grid Section */
.sveil-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 photos on desktop */
  gap: 15px;
  padding: 40px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.sveil-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.sveil-gallery-item img:hover {
  transform: scale(1.02);
}

.bu-links-box {
  background-color: #f7f7f7;
  padding: 30px;
  margin: 40px auto 80px;
  max-width: 1200px;
  border-radius: 4px;
  border-top: 3px solid var(--blue, #4b6ca9);
}

.bu-links-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bu-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.bu-links-list li a {
  color: #555;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.bu-links-list li a:hover {
  color: var(--red, #f27634);
}

.bu-links-list li a::before {
  margin-right: 10px;
  color: var(--blue, #4b6ca9);
}

.media-coverage-wrap {
  padding: 40px 0 60px 0;
}

.media-coverage-title {
  font-size: 24px;
  font-weight: 600;
  color: #687179;
  margin-bottom: 25px;
  font-family: "Manrope", sans-serif;
}

.mc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mc-card {
  background-color: #dbe7fa;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mc-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background-color: #bcd2f5;
}

.mc-card-body {
  padding: 24px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mc-card-title {
  color: #4a4eb8;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 15px 0;
  line-height: 1.35;
  font-family: "Manrope", sans-serif;
}

.mc-card-text {
  font-size: 13px;
  color: #2b3036;
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

.mc-card-link {
  display: inline-block;
  margin-top: 25px;
  color: #2b2e98;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mc-pagination {
  margin-top: 35px;
  display: flex;
  gap: 4px;
}

.mc-page {
  padding: 8px 12px;
  border: 1px solid #b2cfee;
  color: #106399;
  font-size: 13px;
  text-decoration: none;
  background-color: #fff;
  cursor: pointer;
}

.mc-page.active {
  background-color: #0b70a7;
  color: #fff;
  border-color: #0b70a7;
}



/*verticals.html*/
.verticals-hero-banner {
  width: 100%;
  background-color: rgba(45, 60, 85, 0.7);
  padding: 20px 0;
  text-align: center;
}

.verticals-hero-title {
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
  font-family: inherit;
  margin: 0;
}

.verticals-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  padding-top: 0 !important;
}

.verticals-hero-banner {
  width: 100%;
  background: rgba(72, 92, 131, 0.8);
  padding: 45px 0;
  text-align: center;
  margin-bottom: 0;
}

.verticals-hero-title {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

/* --- INTRO & BREADCRUMB --- */
.verticals-breadcrumb {
  padding: 25px 0;
  font-size: 13px;
  color: #666;
}

.verticals-breadcrumb span {
  color: #e31837;
}

.verticals-intro-title {
  font-size: 26px;
  color: #333;
  margin-bottom: 15px;
}

.verticals-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

/* --- SECTOR GRID --- */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
  margin: 50px 0;
}

.vcard {
  display: flex;
  flex-direction: column;
}

.vcard-img-container {
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow from your image */
}

.vcard-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.vcard-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.vcard-text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
  min-height: 65px;
}

.vcard-links-row {
  display: flex;
  gap: 20px;
}

.vcard-link {
  font-size: 14px;
  color: #0072bc;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.vcard-link::before {
  content: "→";
  margin-right: 8px;
}

/* --- USEFUL LINKS --- */
.v-links-section {
  margin-top: 60px;
  max-width: 800px;
}

.v-links-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
}

.v-links-box {
  background: #e8e8e8;
  /* Light grey background */
  border-top: 2px solid #662d91;
  /* Purple top border */
  border-bottom: 1px solid #ccc;
  padding: 20px 30px;
}

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

.v-links-box li {
  margin-bottom: 12px;
}

.v-links-box li:last-child {
  margin-bottom: 0;
}

.v-links-box a {
  font-size: 15px;
  color: #0072bc;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.v-links-box a::before {
  content: "➔";
  margin-right: 15px;
  font-size: 14px;
}

.v-links-box a:hover {
  text-decoration: underline;
}

/* ===== GALLERY PAGE ===== */
.sveil-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 10px 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.sveil-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.sveil-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sveil-gallery-item:hover img {
  transform: scale(1.07);
}

/* ===== ABOUT US PAGE ===== */
.about-page-wrapper {
  padding: 40px 0 60px;
}

.about-content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.about-intro-title {
  text-align: center;
  font-weight: 500;
  font-size: 30px;
}

.about-text-para {
  font-size: 15px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 24px;
}

.about-quote {
  background: #f0f5ff;
  border-left: 4px solid var(--blue);
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: #333;
  line-height: 1.75;
  margin: 24px 0 30px;
  font-style: italic;
}

.about-collage {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 24px;
  display: block;
  box-shadow: var(--shadow);
}

/* Accordion */
.about-accordion {
  margin: 20px 0 30px;
  border-top: 1px solid #e2e8f0;
}

.about-details {
  border-bottom: 1px solid #e2e8f0;
}

.about-accordion-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  padding: 14px 8px;
  cursor: pointer;
  letter-spacing: 0.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.about-accordion-item::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.3s;
}

.about-details[open] .about-accordion-item::after {
  content: '−';
}

.about-details-content {
  padding: 10px 8px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.about-details-content p {
  margin: 0;
}

/* Layout Utilities (Always at bottom) */
.row {
  margin-right: 0;
  margin-left: 0;
}

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

/* Custom Grid for Badges (Image Focused) */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 400px);
  /* Big images */
  gap: 40px;
  justify-content: center;
  margin: 50px auto;
  align-items: center;
  max-width: 1000px;
}

.badge-item {
  background: transparent !important;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  /* clip image corners */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  /* consistent box shape */
}

.badge-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.badge-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fill the box attractivey */
  filter: none !important;
  /* see the photos as they are */
  display: block;
}

/* Brand Colors for Social Icons */
.bi-linkedin {
  color: #0077b5 !important;
}

.bi-twitter {
  color: #1da1f2 !important;
}

.bi-youtube {
  color: #ff0000 !important;
}

.bi-facebook {
  color: #1877f2 !important;
}

.bi-instagram {
  color: #e4405f !important;
}

.bi-briefcase {
  color: #28a745 !important;
}

/* Header Top Bar ONLY  */
.top-bar .social-icons i {
  color: white !important;
}



/* ===SHARED HERO BANNER (Global)=== */
.gallery-image-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 4px;
}

.gallery-image-section img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

.gallery-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(13, 58, 88, 0.82);
  padding: 28px 0;
  border-bottom: 4px solid #fff;
}

.gallery-hero-text {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  text-align: center;
}

/* ===GALLERY PAGE SPECIFIC ==== */
.gallery-single-image {
  width: 100%;
  padding: 40px 0;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
}

.gallery-single-image img {
  width: 45%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-single-image img:hover {
  transform: scale(1.02);
}

/* Footer and Body styles for Footer IFrames */
body {
  margin: 0;
  padding: 0;
  background: transparent;
}


/* Layout Utilities */
.row {
  margin-right: -15px;
  margin-left: -15px;
}

.container {
  max-width: 100%;
}

/* Custom Grid for Badges (Image Focused) */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Responsive grid */
  gap: 30px;
  justify-content: center;
  margin: 50px auto;
  align-items: center;
  max-width: 900px;
}

.badge-item {
  background: transparent !important;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  /* clip image corners */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  /* consistent box shape */
}

.badge-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.badge-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fill the box attractivey */
  filter: none !important;
  /* see the photos as they are */
  display: block;
}

/* ====PAGE LAYOUT ==== */

/* Shared inner-page content wrapper */
.page-content-section {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px 80px;
}

/* Primary page heading (e.g. "Corporate Profile", "Code of Conduct") */
.page-main-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--blue, #272d8a);
  margin-bottom: 15px;
}

/* Sub-heading beneath main title (company full name) */
.page-subtitle {
  font-weight: 600;
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* Section heading inside page content */
.about-section-title {
  font-size: 22px;
  font-weight: 600;
  color: #272d8a;
  margin-bottom: 18px;
  margin-top: 30px;
}

/* Conclusion / highlighted block */
.conclusion-block {
  margin-top: 40px;
  margin-bottom: 60px;
}

/* ---------- RESPONSIVENESS ---------- */
/* Desktop & Large Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .custom-slider {
    height: 400px;
    margin-top: -15px !important;
  }

  .slide-caption {
    bottom: 30px;
    left: 5%;
    right: 5%;
    padding: 1.5rem;
  }

  .slide-caption h2 {
    font-size: 1.5rem;
  }

  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .navbar-collapse {
    display: none !important;
    flex-basis: 100%;
    margin-top: 1rem;
    flex-grow: 1;
    align-items: center;
  }

  #nav-toggle:checked~.navbar-collapse {
    display: block !important;
  }

  .navbar-toggler {
    display: block !important;
    margin-left: auto;
  }

  .navbar-nav {
    flex-direction: column !important;
    text-align: center;
    align-items: center !important;
  }

  .collapse:not(.show) {
    display: none;
  }

  .main-navbar .navbar-nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .main-navbar {
    padding: 10px;
  }

  .nav-strip {
    flex-wrap: wrap;
  }

  .strip-item {
    flex: 1 1 50% !important;
  }

  iframe[src='header.html'] {
    height: 240px !important;
  }

  iframe[src='footer.html'] {
    height: 900px !important;
  }

  .gallery-single-image img {
    width: 70%;
  }

  .mc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }


}

/* Tablets & Medium Screens (max-width: 768px) */
@media (max-width: 768px) {

  .col-md-6,
  .col-md-4,
  .col-md-3,
  .col-md-2,
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid #f0f0f0;
  }

  .lang-link {
    display: inline-block;
    margin-top: 10px;
  }

  .strip-item {
    flex: 1 1 50% !important;
  }

  .gallery-hero-text {
    font-size: 1.3rem !important;
  }

  .gallery-image-section img {
    max-height: 240px;
  }

  .footer-section .col-md-4,
  .footer-section .col-md-3 {
    text-align: center;
  }

  .footer-link {
    margin: 0 auto 8px !important;
  }

  .inner-card .inner-hero-img,
  .inner-card img.img-fluid {
    max-height: 240px;
  }

  .inner-card .inner-title {
    font-size: 1.4rem;
  }

  .inner-card h2 {
    font-size: 1.05rem;
  }

  .inner-card p,
  .inner-card li {
    font-size: 14px;
  }

  .feature-img {
    min-height: 200px !important;
    height: auto !important;
  }

  .feature-box {
    padding: 20px !important;
    text-align: center;
  }

  .row.g-0 {
    display: flex;
    flex-direction: column !important;
  }

  .col-md-6.order-md-1 {
    order: -1 !important;
  }

  .bu-grid-row {
    flex-direction: column;
  }

  .bu-card {
    flex: 0 0 100%;
  }

  .top-bar .d-flex {
    flex-direction: column;
    gap: 5px;
  }

  .main-navbar .navbar-nav {
    gap: 10px;
  }

  .main-navbar .nav-link {
    font-size: 13px;
  }

  /* Commitment Section Responsive */
  .commitment-title {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }

  .commitment-section p {
    text-align: center;
    padding: 0 10px;
    font-size: 15px;
  }

  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px auto;
  }

  /* Engineering Icons Section Responsive Fixes */
  .engineering-icons-blue .engineering-title {
    font-size: 22px !important;
    margin-bottom: 25px !important;
  }

  .engineering-icons-blue .icon-box p {
    font-size: 13px !important;
  }

  .social-band .icon-box i {
    font-size: 28px !important;
  }

  .social-band .icon-box p {
    font-size: 13px !important;
  }

  .nav-strip .strip-item {
    flex: 1 1 100% !important;
    font-size: 14px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section .row>div {
    margin-bottom: 30px;
  }

  iframe[src='header.html'] {
    height: 330px !important;
  }

  iframe[src='footer.html'] {
    height: 1400px !important;
  }

  /* Media Coverage Responive */
  .mc-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .mc-pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px !important;
  }

  .mc-card-title {
    font-size: 19px !important;
  }



  .custom-slider {
    height: 350px !important;
    margin-top: -20px !important;
  }

  .page-main-title {
    font-size: 24px !important;
    margin-bottom: 20px !important;
    text-align: center;
  }

  .page-subtitle {
    font-size: 16px !important;
    text-align: center;
    margin-bottom: 25px !important;
  }

  .about-content-section,
  .bu-content-section,
  .bu-grid-section,
  .lm-sub-text {
    width: 98% !important;
    max-width: none !important;
    padding: 0 5px;
  }

  .feature-box {
    padding: 30px !important;
  }

  .about-accordion-item {
    font-size: 14px !important;
    padding: 15px 0 !important;
  }

  .about-details-content p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  /* About Us Page Responsive */
  .about-intro-title {
    font-size: 22px !important;
  }

  .about-text-para {
    text-align: justify;
    line-height: 1.7;
    font-size: 14px;
    padding: 0 5px;
  }

  /* Footer Contact Band Responsive */
  .footer-contact-band {
    padding: 40px 15px;
  }

  .footer-contact-card {
    margin-bottom: 25px;
    text-align: center;
    align-items: center;
  }

  .footer-contact-card h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact-card p {
    justify-content: center;
  }

  .footer-contact-card p i {
    margin-right: 8px;
  }
}

/* Small Devices & Mobiles (max-width: 576px) */
@media (max-width: 576px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .top-bar div {
    margin-bottom: 5px;
  }

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

  .nav-strip .strip-item {
    flex: 1 1 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .engineering-title {
    font-size: 17px;
  }

  .icon-box i {
    font-size: 26px;
  }

  .icon-box p {
    font-size: 12px;
  }

  .lm-heading {
    font-size: 1.4rem !important;
    line-height: 1.3;
  }

  .lm-sub-text {
    font-size: 13px !important;
    padding: 0 5px;
  }

  .feature-box {
    padding: 20px;
  }

  .csr-heading {
    font-size: 22px;
  }

  .csr-text {
    font-size: 14px;
  }

  .custom-card {
    height: 210px !important;
  }

  .main-box h2 {
    font-size: 19px;
  }

  .inner-hero-img,
  .inner-card img.img-fluid {
    max-height: 250px !important;
  }

  .container,
  .container-fluid {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }

  .section {
    padding: 30px 0 !important;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section .col-md-3,
  .footer-section .col-md-4 {
    margin-bottom: 30px;
  }

  .address-text {
    margin: 0 auto;
  }

  .gallery-single-image img {
    width: 90%;
  }



  .custom-slider {
    height: 250px !important;
    margin-top: -15px !important;
  }
}

/* Extra Small Mobiles (max-width: 480px) */
@media (max-width: 480px) {
  .strip-item {
    font-size: 12px;
  }

  .inner-card .inner-hero-img,
  .inner-card img.img-fluid {
    max-height: 185px;
  }

  .inner-card .inner-title {
    font-size: 1.2rem;
  }

  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .badge-item {
    aspect-ratio: 16/9;
  }

  /* Refine Engineering Icons for extra small screens */
  .engineering-icons-blue .engineering-title {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  .engineering-icons-blue .icon-box i {
    font-size: 24px !important;
  }

  .engineering-icons-blue .icon-box p {
    font-size: 12px !important;
  }

  /* Gallery Responsive */
  .sveil-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    /* Forces 2 photos per row on mobile */
    gap: 10px !important;
    padding: 30px 5px !important;
  }

  .sveil-gallery-item img {
    height: 180px !important;
  }



  /* Social Band 480px */
  .social-band .icon-box i {
    font-size: 22px !important;
  }

  .social-band .icon-box p {
    font-size: 11px !important;
  }

  .page-main-title {
    font-size: 19px !important;
    margin-bottom: 15px !important;
  }

  .page-subtitle {
    font-size: 14px !important;
    margin-bottom: 20px !important;
  }

  .about-accordion-item {
    font-size: 13px !important;
  }
}

/* ---------- BIOGRAPHY & SUCCESS STORY ---------- */

.bio-section {
    padding: 60px 0;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.bio-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.bio-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 20px;
      margin-top: -60px;
}

.bio-title {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.bio-subtitle {
    font-size: 20px;
    color: var(--red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-intro {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #444;
    text-align: left;
}

.bio-item {
    margin-bottom: 30px;
}

.bio-item-title {
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 12px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.bio-item-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background-color: var(--red);
    border-radius: 2px;
}

.bio-item-text {
    font-size: 15.5px;
    color: #555;
    text-align: left;
    padding-left: 15px; /* Aligned with title text */
}

.bio-list {
    margin: 15px 0 20px 35px; /* Indented to align with text */
    list-style-type: square;
    color: #555;
}

.bio-list li {
    margin-bottom: 8px;
    font-weight: 500;
}

.legacy-section {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--blue);
}

.bio-conclusion {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    text-align: center;
    margin-top: 40px;
    font-style: italic;
}

@media (max-width: 768px) {
    .bio-section {
        padding: 40px 0;
    }
    .bio-container {
        width: 98% !important;
        max-width: none !important;
        padding: 0 5px;
    }
    .bio-title {
        font-size: 26px;
    }
    .bio-subtitle {
        font-size: 16px;
    }
    .bio-intro {
        font-size: 15px;
        text-align: justify;
        line-height: 1.7;
    }
    .bio-item-title {
        font-size: 19px;
    }
    .bio-item-text {
        font-size: 14.5px;
        text-align: justify;
        padding-left: 0; /* Match About Us style without extra indentation */
        line-height: 1.7;
    }
    .legacy-section {
        padding: 20px;
        margin: 0; 
    }
    .bio-conclusion {
        font-size: 16px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .bio-header {
        margin-bottom: 25px;
    }
    .bio-title {
        font-size: 22px;
    }
    .bio-subtitle {
        font-size: 14px;
    }
    .bio-list {
        margin-left: 20px;
        padding-left: 0;
        text-align: justify;
    }
    .bio-item-text {
        padding-left: 0;
    }
}

