:root {
  --primary: #254069;
  --primary-dark: #192b47;
  --bg: #ffffff;
  --muted: #f5f7fb;
  --text: #0f1724;
  --radius: 14px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

/* NAVBAR */
.navbar {
  padding: 16px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav-link {
  color: #48494b;
}
.active {
  text-decoration: underline;
  font-weight: 800;
  color: var(--primary) !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary);
  color: #fff !important;
}
.gap-lg-4 {
  gap: 1rem !important;
}
.logo {
  height: 60px;
}

@media (max-width: 460px) {
  .logo {
    height: 50px;
  }
  .navbar-brand {
    font-size: 14px !important;
  }
}

.footer-logo {
  height: 80px;
}

.readme-btn {
  background-color: var(--primary);
  border-radius: 6px;
  color: #fff;
}

.readme-btn:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

.dropdown-item:active {
  background-color: var(--primary) !important;
}
/* HERO */
.hero {
  position: relative;
  height: 92vh;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(72%); */
}

.hero-title {
  position: absolute;
  /* bottom: 40px;
        left: 40px; */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  line-height: 4rem;
  font-size: 3.2rem;
  font-weight: 600;
  max-width: 600px;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

/* SECTION HEADINGS */
.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-sub {
  max-width: 720px;
  margin: auto;
  color: #5e6977;
}

/* CARDS */
.card-modern {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #e7e7e7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: 0.25s;
  height: 100%;
}

.card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.icon-box {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

.icon-box img {
  height: 32px;
  width: 32px;
}
.counter-icon {
  color: #fff;
}
/* STATS */
.stats {
  background: var(--primary);
  padding: 60px 0;
  color: #fff;
}

.stats h3 {
  font-size: 2rem;
  font-weight: 700;
}

/* FAQ */
.faq-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 35px;
  border: 1px solid #ececec;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.text-primary {
  color: var(--primary) !important;
}

/* BLOG */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.img-fluid {
  height: 450px;
  object-fit: cover;
}
h6 {
  font-size: 20px;
}
.p-3 {
  padding: 1.4rem !important;
}
/* FOOTER */
/* footer {
        background: #0b1b33;
        background-color: var(--text);
        padding: 70px 0 30px;
        color: #d7dffa;
        font-size: 15px;
      }

      footer h6 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
      } */
.footer-section {
  background: #0c0f16;
  color: #d5d7dd;
  font-family: "Inter", sans-serif;
  padding-top: 2rem;
}

.footer-logo {
  height: 100px;
}

.footer-title {
  font-size: 17px;
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 600;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ffffff;
  display: block;
  margin-top: 6px;
}

.footer-text {
  line-height: 1.6;
  max-width: 350px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cbd0d9;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  /* color: #3b82f6; */
  text-decoration: underline;
}

.footer-social a {
  color: #cbd0d9;
  font-size: 20px;
  margin-right: 12px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #3b82f6;
}

.footer-line {
  border-color: #fff;
  margin: 30px 0;
}

.footer-bottom-links a {
  margin-left: 20px;
  color: #cbd0d9;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  /* color: #3b82f6; */
  text-decoration: underline;
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-links a {
    margin-left: 10px;
  }
}

/* --------------------------- */
/* about-section */
.about-hero {
  background: url("./Assets/Images/bg.jpg");
  background-size: cover;
  height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-title {
  color: #fff;
}

/* Mission / Vision Card */
.mv-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.mv-img {
  height: 280px;
  border-radius: 6px;
}

/* .mv-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.55);
}

.mv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 42px;
  font-weight: 600;
} */

/* Headings & Text */
.mv-heading {
  color: #14345b;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.mv-desc {
  line-height: 1.7;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-img {
    height: 220px;
  }
  .mv-text {
    font-size: 32px;
  }
}

/* ---------------------------- */
/* contact-us */
/* Header */
.contact-header {
  background: #0c1a2b;
  padding: 70px 0;
  text-align: center;
}

.contact-header h1 {
  color: white;
  font-size: 36px;
  font-weight: 600;
}

/* Left Card */
.contact-card {
  background: white;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}

.c-title {
  font-size: 26px;
  color: #14345b;
  font-weight: 700;
  margin-bottom: 20px;
}

.c-title-sm {
  font-size: 20px;
  color: #14345b;
  font-weight: 600;
  margin-bottom: 15px;
}

.c-item {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
}

.c-item i {
  font-size: 20px;
  color: #14345b;
}

/* Map */
.map-container {
  width: 100%;
  height: 100%;
  min-height: 550px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.map-container svg {
  width: 100% !important;
}

/* Form */
.contact-form .form-control {
  border-radius: 6px;
}

.btn-primary {
  background: #14345b;
  border-color: #14345b;
}

.btn-primary:hover {
  background: #0d243f;
}

/* --------------------------- */
/* leadership */
.leadership-header {
  background: #ffffff;
}

.lh-title {
  font-size: 32px;
  font-weight: 700;
  color: #14345b;
}

.lh-subtitle {
  color: #555;
  font-size: 16px;
  margin-top: 10px;
}

/* Leader Cards */
.leader-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.leader-img img {
  width: 270px;
  height: 270px;
  border-radius: 12px;
  object-fit: cover;
}

.card-img img {
  /* width: 400px; */
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.leader-info {
  max-width: 900px;
}

.leader-name {
  font-size: 26px;
  font-weight: 700;
  color: #14345b;
}

.leader-role {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-bottom: 15px;
}

.leader-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .leader-img img {
    width: 100%;
    height: auto;
  }
}

/* --------------- */
/* about-us */

.highlight-graphics {
  position: relative;
  background: #f5f5f5;
  border-radius: 6px;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 45px solid #000;
  position: absolute;
  top: 20px;
  left: 60%;
  transform: translateX(-50%);
}

.floating-img {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 160px;
  z-index: 3;
}

.dot-box {
  width: 230px;
  height: 230px;
  background-image: radial-gradient(#000 2px, transparent 2px);
  background-size: 15px 15px;
  position: absolute;
  bottom: 40px;
  right: 40px;
  opacity: 0.35;
}

.main-img {
  width: 100%;
  border-radius: 10px;
}

/* --- Right Side Content --- */

.hg-title {
  font-size: 30px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 15px;
}

.hg-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.hg-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

/* Icons list */
.hg-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.hg-list li {
  /* display: flex;
  align-items: flex-start; */
  gap: 10px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.hg-list .icon {
  width: 26px;
  margin-top: 2px;
}

/* --- Responsive Fix --- */
@media (max-width: 768px) {
  .floating-img {
    width: 120px;
  }
  .triangle {
    left: 50%;
  }
  .dot-box {
    width: 180px;
    height: 180px;
  }
}
/* ------------ */
/* Section Title */
.sector-title {
  font-size: 26px;
  font-weight: 700;
  color: #0d0d0d;
}

/* Card Styling */
.sector-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* Icons */
.sector-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* Headings */
.sector-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Text */
.sector-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .sector-card {
    padding: 25px;
  }
  .sector-title {
    font-size: 22px;
  }
}

/* --------------------- */
/* Section Title */
.core-title {
  font-size: 26px;
  font-weight: 700;
  color: #0d0d0d;
}

/* Card Styling */
.value-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Icons */
.value-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Headings */
.value-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Text */
.value-text {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .core-title {
    font-size: 22px;
  }
  .value-card {
    padding: 30px;
  }
}

/* ------------------------ */
.client-section {
  background-color: #f8f9fa;
}

.client-title {
  font-size: 30px;
  font-weight: 700;
  color: #0d0d0d;
}

.client-subtitle {
  color: #555;
  font-size: 16px;
}

.industry-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #14345b;
}

.client-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 10px;
  text-align: center;
  border: 1px solid #efefef;
  transition: 0.3s ease;
  height: 100%;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.client-logo {
  /* width: 80px;
  height: 80px; */
  width: 100%;
  height: 120px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: 0.3s ease;
}

.client-card:hover .client-logo {
  filter: grayscale(0);
  transform: scale(1.05);
}

.client-name {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .client-logo {
    width: 100%;
    height: 100px;
  }
  .industry-heading {
    font-size: 20px;
  }
}

/* ------------------------- */
/* Title + Description */
.wte-title {
  font-size: 30px;
  font-weight: 700;
  color: #0d0d0d;
}

.wte-desc {
  max-width: 850px;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

/* Plant Cards */
.plant-card {
  background: #ffffff;
  border-radius: 16px;
  border-left: 6px solid #0d2b6d;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  transition: 0.3s ease;
}

.plant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.plant-title {
  font-size: 20px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

.plant-desc {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
}

/* Images */
.plant-img-box img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .wte-title {
    font-size: 24px;
  }
  .plant-img-box img {
    height: 260px;
  }
}

/* -------------------------------------- */
/* global-presence */
.page-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a2332;
}

.global-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.locations-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.locations-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1a2332;
  font-weight: 600;
}

.locations-card ul {
  list-style: none;
}

.locations-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
  padding-left: 15px;
  position: relative;
}

.locations-card ul li a {
  color: #333;
  text-decoration: none;
}
.locations-card ul li:last-child {
  border-bottom: none;
}

.locations-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.locations-card ul li:hover {
  color: var(--primary);
  padding-left: 20px;
}

.locations-card ul li:hover::before {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
}

#map {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.leaflet-container {
  border-radius: 12px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .global-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .locations-card {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
  }

  .locations-card h3 {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .locations-card ul {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0;
  }

  .locations-card ul li {
    padding: 10px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
    padding-left: 10px;
  }

  .locations-card ul li::before {
    display: none;
  }

  .locations-card ul li:hover::before {
    display: none;
  }

  #map {
    height: 500px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .page-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  #map {
    padding: 16px;
  }
  .container {
    gap: 15px;
  }

  .locations-card {
    padding: 15px;
  }

  .locations-card h3 {
    font-size: 18px;
    margin-bottom: 0;
  }

  .locations-card ul li {
    font-size: 14px;
    padding: 8px;
  }

  #map {
    height: 400px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .locations-card {
    padding: 12px;
  }

  .locations-card h3 {
    font-size: 16px;
  }

  .locations-card ul li {
    font-size: 13px;
    padding: 6px;
  }

  #map {
    height: 300px;
  }
}
/* -------------------------------------------- */

/* HERO */
.blog-hero {
  padding: 50px 0 20px;
  background: #f8fafc;
  text-align: center;
}

.blog-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

.blog-meta {
  color: #666;
  margin-top: 10px;
}

/* FEATURED IMAGE */
.blog-featured-img {
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.blog-content {
  max-width: 850px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
}

.blog-content h3 {
  margin-top: 30px;
  font-weight: 700;
}
.blog-details-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
/* QUOTE BOX */
.blog-quote {
  padding: 20px;
  background: #eef2ff;
  border-left: 5px solid #3b82f6;
  margin: 25px 0;
  font-style: italic;
  color: #374151;
  border-radius: 8px;
}

/* RELATED POSTS */
.related-card {
  background: #f9fafb;
  cursor: pointer;
  transition: 0.3s;
}

.related-card img {
  height: 300px;
  width: 100%;
}

.related-card:hover {
  background: #eef2ff;
  transform: translateY(-4px);
}

/* COMMENTS */
.comment-form input,
.comment-form textarea {
  border-radius: 8px;
}
