:root {
  --brand-dark: #09003a;
  --btn-purple: #3f3d7a;
}

body {
  font-family: "Inter", sans-serif;
}

.nav-logo {
  height: 45px;
  width: auto;
}

/* Navbar CTA [cite: 1, 2] */
.btn-request-quote {
  background-color: var(--btn-purple);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-request-quote:hover {
  background-color: #2e2c5e;
  color: white;
}




/* =========================================================
                   NAV BAR */
/* ========================================================= */

.navbar {
  transition: all 0.3s ease;
  z-index: 999;
}

/* Logo */
.nav-logo {
  height: 45px;
  width: auto;
}

/* Nav links */
.navbar .nav-link {
  font-weight: 500;
  color: #3a0002;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover {
  color: #3f3d7a;
}

/* Scroll shadow */
.navbar.shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* CTA Button */
.btn-request-quote {
  background-color: #3f3d7a;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
}

.btn-request-quote:hover {
  background-color: #2e2c5e;
  color: #fff;
}


/* ACTIVE NAV LINK */
.navbar .nav-link.active {
  color: #3f3d7a;
  font-weight: 700;
  position: relative;
}

/* Underline Effect */
.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #3f3d7a;
}


/* ================================
   MOBILE ADJUSTMENTS
================================ */

@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 1rem 0;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .btn-request-quote {
    display: block;
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }
}




/* =====================================================
   HERO SECTION – FINAL VERSION
===================================================== */

.home-hero {
  position: relative;
  min-height: calc(100vh - 80px); /* navbar height */
  background-image: url("/static/images/hero-building.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Overlay */
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) -70%,
    rgba(9, 0, 58, 0.6) 80%,
    rgba(9, 0, 58, 1) 100%
  );
  z-index: 1;
}

/* Centering container */
.home-hero > .container {
  position: relative;
  z-index: 2;

  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;

  /* optical center (matches screenshot) */
  transform: translateY(-6%);
}

/* Content width */
.home-hero-content {
  max-width: 950px;
  margin: 0 auto;
}


/* MAIN TITLE — INCREASED */
.home-hero-title {
  font-size: 3.9rem;        
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

/* SUBTITLE — SLIGHTLY BIGGER */
.home-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto 2.8rem;
}

/* Buttons */
.home-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.home-btn-primary,
.home-btn-secondary {
  font-size: 1rem;
  padding: 14px 42px;
  font-weight: 600;
  border-radius: 4px;
}

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

@media (max-width: 991px) {
  .home-hero > .container {
    transform: translateY(-3%);
  }

  .home-hero-title {
    font-size: 2.4rem;
  }

  .home-hero-subtitle {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .home-hero-title {
    font-size: 2.1rem;
  }

  .home-hero-buttons {
    flex-direction: column;
    gap: 14px;
  }
}






/* ======================================================================
   SECTION 2 – TRUSTED BY
====================================================================== */

.trusted-section {
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  padding: 60px 0;
}

/* Title */
.trusted-section .section-title {
  color: #3f3d7a;
  font-weight: 700;
  font-size: 1.75rem;
}

/* Logo slider */
.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 100px;
  flex-wrap: nowrap;
}

.logo-item {
  flex: 0 0 auto;
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logos */
.client-logo {
  max-height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* GSAP initial state */
.animate-trusted-title {
  opacity: 0;
  transform: translateY(30px);
}

/* Responsive */
@media (max-width: 768px) {
  .logo-track {
    gap: 50px;
  }

  .logo-item {
    width: 120px;
  }

  .client-logo {
    max-height: 35px;
  }
}


/* ======================================================================
   SECTION 3 – WHO WE ARE 
====================================================================== */

.about-section {
  background: linear-gradient(
    180deg,
    #706a91 0%,
    #3f3d7a 50%,
    #09003a 100%
  );
  overflow: hidden;
}

/* Image styling */
.about-section .img-container img {
  border-radius: 6px;
}

/* Section label */
.about-section h6 {
  letter-spacing: 1px;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Heading */
.about-section h2 {
  line-height: 1.25;
}

/* Value cards */
.value-card {
  text-align: center;
}

/* Icons */
.icon-size {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Text */
.value-card p {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

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

@media (max-width: 991px) {
  .about-section {
    text-align: center;
  }

  .about-section .ps-lg-4 {
    padding-left: 0 !important;
  }

  .about-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 575px) {
  .icon-size {
    height: 40px;
  }
}








/* ======================================================================
   SECTION 4 – CORE SERVICES
====================================================================== */

.services-section {
  background-color: #ffffff;
}

/* Section heading */
.services-section .section-heading {
  color: #09003a;
  border-bottom: 3px solid #09003a;
}

/* Service Card */
.service-card-alt {
  border: 2px solid #09003a;
  border-radius: 25px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* Hover effect */
.service-card-alt:hover {
  background-color: #09003a;
  transform: translateY(-6px);
}

/* Icon container */
.card-icon-container {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Service icon */
.service-img {
  max-height: 100%;
  width: auto;
  transition: filter 0.3s ease;
}

/* Text */
.service-title {
  color: #09003a;
  font-size: 1.25rem;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hover text color */
.service-card-alt:hover .service-title,
.service-card-alt:hover .service-desc {
  color: #ffffff !important;
}

.service-card-alt:hover .service-img {
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 768px) {
  .service-card-alt {
    padding: 30px !important;
  }
}


/* =========================================================================== */
/*                             SECTION - 5         CORE SERVICE   */
/* ============================================================================ */

.services-section {
    background-color: #ffffff;
}

.section-heading {
    color: #09003A; /* Matches Figma deep purple */
    border-bottom: 3px solid #09003A;
}

.service-card-alt {
    border: 2px solid #09003A; /* Matches UI stroke */
    border-radius: 25px; /* Matches rounded rectangle design */
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}

.service-card-alt:hover {
    background-color: #09003A;
    transform: translateY(-5px);
}

.service-title {
    color: #09003A;
    font-size: 1.25rem;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-icon-container {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Hover State Changes */
.service-card-alt:hover .service-title,
.service-card-alt:hover .service-desc {
    color: #ffffff !important;
}

.service-card-alt:hover .service-img {
    filter: brightness(0) invert(1); /* Inverts icon to white on hover */
}

/* Responsive spacing */
@media (max-width: 768px) {
    .service-card-alt {
        padding: 30px !important;
    }
}

/* =========================================================================
   SECTION 4 – STATS / COUNTER
========================================================================= */

.stats-section {
  background-color: #09003a;
}

/* Numbers */
.stats-section h2 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}

/* Divider lines (desktop only) */
@media (min-width: 768px) {
  .border-start-md {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat-item:first-child .border-start-md {
    border-left: none;
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .stats-section h2 {
    font-size: 1.8rem;
  }

  .stat-item {
    margin-bottom: 2rem;
  }
}


/* ======================================================================
   SECTION 5 – FEATURED PROJECTS
====================================================================== */

.projects-section .section-heading {
  color: #09003A;
  border-bottom: 3px solid #09003A;
}

/* Card container */
.project-card-container {
  height: 350px;
  background: #000;
  overflow: hidden;
}

/* Project image */
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card-container:hover .project-img {
  transform: scale(1.1);
}

/* Gradient overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(9, 0, 58, 0.4) 50%,
    rgba(9, 0, 58, 0.9) 100%
  );
  color: #ffffff;
  z-index: 2;
}

/* Badges */
.badge {
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  z-index: 3;
}

.badge-completed {
  background-color: #09003A;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-ongoing {
  background-color: #e63946;
}

/* Responsive */
@media (max-width: 768px) {
  .project-card-container {
    height: 300px;
  }
}



/* ====================================================================== */
/*                              FOOTER */
/* ====================================================================== */

.footer-section {
    background-color: #09003A; /* Matches brand navy */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #ffffff;
    opacity: 1;
}

.contact-info p {
    font-weight: 500;
    line-height: 1.6;
}

.map-wrapper {
    height: 180px;
    background: #eee;
}

.map-wrapper iframe {
    filter: grayscale(0.2) contrast(1.1); /* Matches industrial map aesthetic */
}

/* Responsive adjustments */
@media (max-width: 767px) {

  /* Footer column stays centered */
  .footer-section {
    text-align: center;
  }

  /* Contact box should not center icons */
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Force left alignment */
    margin: 0 auto;
    max-width: 250px; /* Keeps it neat */
  }

  /* Each row icon + text stays in one line */
  .contact-info .d-flex {
    justify-content: flex-start !important;
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  /* Fix icon width alignment */
  .contact-info i {
    min-width: 22px;
    font-size: 14px;
    margin-top: 3px;
  }

  /* Text stays aligned */
  .contact-info p {
    margin: 0;
    line-height: 1.5;
  }
}


/* ================================ */
/* FOOTER BOTTOM */
/* ================================ */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 20px;
  color: #64748b;
}

/* LEFT */
.footer-left {
  position: absolute;
  left: 0;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.footer-left a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* CENTER */
.footer-center {
  margin: 0;
  text-align: center;
  color: #64748b;
}

/* RIGHT */
.footer-right {
  position: absolute;
  right: 0;
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

.footer-right a {
  color: #64748b;
  text-decoration: none;
}

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



/* MOBILE */
@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    position: static;
    font-size: 13px;
  }
}

/* =============================================================== */
/*                    SCROLL ANIMATION BASE                        */
/* =============================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slight delay variations */
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* Headings feel more confident */
.reveal-heading {
  transform: translateY(16px);
}

/* Cards come up subtly */
.reveal-card {
  transform: translateY(30px) scale(0.98);
}

.reveal-card.show {
  transform: translateY(0) scale(1);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-card,
  .reveal-heading {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* =====================================================
   ABOUT PAGE – HERO SECTION (ISOLATED & SAFE)
===================================================== */

.about-page {
  overflow-x: hidden;
}

/* HERO BACKGROUND */
.about-hero {
  background: linear-gradient(
    135deg,
    rgba(9, 0, 58, 0.05),
    rgba(63, 61, 122, 0.08)
  );
}

/* TITLE */
.about-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #09003a;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;

  /* animation start */
  opacity: 0;
  transform: translateY(30px);
}

/* SUBTITLE */
.about-hero-subtitle {
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6c757d;

  /* animation start */
  opacity: 0;
  transform: translateY(30px);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 1.9rem;
  }
}


/* =====================================================
       (2 - SECTION)     ABOUT PAGE – COMPANY OVERVIEW
===================================================== */

.about-overview {
  background-color: #ffffff;
}

/* Paragraph styling */
.about-overview-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #6c757d;

  /* animation start */
  opacity: 0;
  transform: translateY(30px);
}

/* Emphasis on company name */
.about-overview-text strong {
  color: #09003a;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .about-overview-text {
    font-size: 1rem;
  }
}


/* =============================================================
   (3 - SECTION)    ABOUT PAGE – ASSOCIATIONS & COLLABORATIONS
================================================================ */

.about-associations {
  background-color: #ffffff;
}

/* Section title */
.about-associations-title {
  font-size: 2rem;
  font-weight: 700;
  color: #09003a;
  position: relative;
  display: inline-block;

  /* animation start */
  opacity: 0;
  transform: translateY(30px);
}

.about-associations-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: #3f3d7a;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Paragraph text */
.about-associations-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #6c757d;

  /* animation start */
  opacity: 0;
  transform: translateY(30px);
}

/* Emphasis */
.about-associations-text strong {
  color: #09003a;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .about-associations-title {
    font-size: 1.7rem;
  }

  .about-associations-text {
    font-size: 1rem;
  }
}


/* =====================================================
  (4- SECTION) ABOUT PAGE – FUNDAMENTAL VALUES
===================================================== */

.about-values {
  background-color: #ffffff;
}

/* Section title */
.about-values-title {
  font-size: 2rem;
  font-weight: 700;
  color: #09003a;
  position: relative;
  display: inline-block;

  /* animation start */
  opacity: 0;
  transform: translateY(30px);
}

.about-values-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: #3f3d7a;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Cards */
.about-value-card {
  background: #ffffff;
  border: 1px solid rgba(9, 0, 58, 0.15);
  border-radius: 12px;
  transition: all 0.35s ease;

  /* animation start */
  opacity: 0;
  transform: translateY(40px);
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

/* Card title */
.about-value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #09003a;
}

/* Card text */
.about-value-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6c757d;
}

/* Mobile */
@media (max-width: 768px) {
  .about-values-title {
    font-size: 1.7rem;
  }
}


/* =====================================================
   (5 - SECTION) VISION, QUALITY & SAFETY
===================================================== */

.about-vision {
  background-color: #ffffff;
}

/* Column wrapper */
.about-vision-block {
  opacity: 0;
  transform: translateY(40px);
}

/* Headings */
.about-vision-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #09003a;
  margin-bottom: 1rem;
}

/* Paragraph */
.about-vision-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #6c757d;
}

/* List */
.about-vision-list {
  list-style: none;
  padding-left: 0;
}

.about-vision-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6c757d;
}

.about-vision-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #3f3d7a;
  font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
  .about-vision-title {
    font-size: 1.25rem;
  }

  .about-vision-text,
  .about-vision-list li {
    font-size: 1rem;
  }
}


/* =====================================================
   (6 - SECTION)    STRENGTH & FINANCIALS
===================================================== */

.about-strength {
  background-color: #ffffff;
}

/* Column wrapper */
.about-strength-block {
  opacity: 0;
  transform: translateY(40px);
}

/* Headings */
.about-strength-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #09003a;
  margin-bottom: 1rem;
}

/* Paragraph */
.about-strength-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #6c757d;
}

/* List */
.about-strength-list {
  list-style: none;
  padding-left: 0;
}

.about-strength-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6c757d;
}

.about-strength-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #3f3d7a;
  font-weight: bold;
}

/* Emphasis */
.about-strength-text strong {
  color: #09003a;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .about-strength-title {
    font-size: 1.25rem;
  }

  .about-strength-text,
  .about-strength-list li {
    font-size: 1rem;
  }
}



/* =====================================================
   SERVICES PAGE – HERO / INTRO
===================================================== */

.services-page {
  overflow-x: hidden;
}

.services-hero {
  background: linear-gradient(
    135deg,
    rgba(9, 0, 58, 0.05),
    rgba(63, 61, 122, 0.08)
  );
}

/* Title */
.services-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #09003a;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;

  /* animation start */
  opacity: 0;
  transform: translateY(30px);
}

/* Subtitle */
.services-hero-subtitle {
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6c757d;

  /* animation start */
  opacity: 0;
  transform: translateY(30px);
}

/* Mobile */
@media (max-width: 768px) {
  .services-hero-title {
    font-size: 1.9rem;
  }
}

/*  */
/* =====================================================
   SERVICES PAGE (3- SECTION)   CORE SERVICES
===================================================== */

.services-core {
  background-color: #ffffff;
}

/* Section title */
.services-core-title {
  font-size: 2rem;
  font-weight: 700;
  color: #09003a;
  position: relative;
  display: inline-block;

  /* animation start */
  opacity: 0;
  transform: translateY(30px);
}

.services-core-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: #3f3d7a;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Service blocks */
.services-core-item {
  background: #ffffff;
  border: 1px solid rgba(9, 0, 58, 0.15);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.35s ease;

  /* animation start */
  opacity: 0;
  transform: translateY(40px);
}

.services-core-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Headings */
.services-core-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #09003a;
  margin-bottom: 0.5rem;
}

/* Text */
.services-core-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #6c757d;
}

/* Mobile */
@media (max-width: 768px) {
  .services-core-title {
    font-size: 1.7rem;
  }
}



/* =====================================================
  (3 - SECTION) SERVICES – CLIENTS (ALTERNATE VISUAL)
===================================================== */

.services-clients-alt {
  background-color: #f7f8fb; /* soft neutral */
}

/* Section title */
.services-clients-alt-title {
  font-size: 2rem;
  font-weight: 700;
  color: #09003a;
  position: relative;
  display: inline-block;

  opacity: 0;
  transform: translateY(30px);
}

.services-clients-alt-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: #3f3d7a;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Client card */
.client-card {
  background: #ffffff;
  border: 1px solid rgba(9, 0, 58, 0.12);
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
}

.client-card img {
  max-height: 55px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}

/* Hover effect */
.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.client-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .services-clients-alt-title {
    font-size: 1.7rem;
  }

  .client-card img {
    max-height: 45px;
  }
}
/* ====================================================================================== */
                                   /* EQUIPMENTS PAGE */
/* ====================================================================================== */

.equipments-page {
  overflow-x: hidden;
}

/* HERO */
.equipments-hero {
  background: linear-gradient(
    135deg,
    rgba(9, 0, 58, 0.06),
    rgba(63, 61, 122, 0.1)
  );
}

.equipments-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #09003a;
  margin-bottom: 1rem;

  opacity: 0;
  transform: translateY(30px);
}

.equipments-hero-subtitle {
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6c757d;

  opacity: 0;
  transform: translateY(30px);
}

/* LIST TITLE */
.equipments-list-title {
  font-size: 2rem;
  font-weight: 700;
  color: #09003a;
  position: relative;
  display: inline-block;

  opacity: 0;
  transform: translateY(30px);
}

.equipments-list-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: #3f3d7a;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* EQUIPMENT ITEM */
.equipment-item {
  background: #ffffff;
  border: 1px solid rgba(9, 0, 58, 0.15);
  border-left: 5px solid #3f3d7a;
  border-radius: 8px;
  padding: 18px 20px;

  font-size: 1rem;
  font-weight: 500;
  color: #333;

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.equipment-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .equipments-hero-title {
    font-size: 1.9rem;
  }

  .equipments-list-title {
    font-size: 1.7rem;
  }
}



/* =====================================================
   PROJECTS PAGE
===================================================== */

.projects-page {
  overflow-x: hidden;
}

/* ================= HERO ================= */

.projects-hero {
  background: linear-gradient(
    135deg,
    rgba(9, 0, 58, 0.06),
    rgba(63, 61, 122, 0.1)
  );
}

.projects-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #09003A;
  margin-bottom: 1rem;
}

.projects-hero-subtitle {
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6c757d;
}

/* ================= COVER IMAGE ================= */

.projects-image-wrapper {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

/* Responsive image height */
@media (max-width: 768px) {
  .projects-cover-img {
    height: 260px;
  }
}

.projects-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  table-layout: fixed; /* ✅ Fix column consistency */
}

.projects-table th,
.projects-table td {
  padding: 14px;
  vertical-align: middle;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
}

.projects-table thead th {
  background-color: #09003A;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.projects-table tbody tr:hover {
  background-color: #f7f8fb;
}

/* Column width control */
.projects-table th:nth-child(1),
.projects-table td:nth-child(1) {
  width: 70px;
  text-align: center;
}

.projects-table th:nth-child(4),
.projects-table td:nth-child(4) {
  width: 140px;
  text-align: center;
}

.projects-table th:nth-child(5),
.projects-table td:nth-child(5) {
  width: 160px;
  text-align: center;
}

/* Status Badge */
.status {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 110px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Completed */
.status.completed {
  background-color: #198754;
  color: #fff;
}

/* In Progress */
.status.in-progress {
  background-color: #e63946;
  color: #fff;
}

.projects-table-wrapper {
  overflow-x: auto;
  width: 100%;
}

.projects-table {
  min-width: 900px; /* ✅ Forces table to stay wide */
}



/* ================= MOBILE TWEAKS ================= */

@media (max-width: 576px) {
  .projects-hero-title {
    font-size: 1.9rem;
  }

  .projects-section-title {
    font-size: 1.5rem;
  }

  .projects-table thead {
    font-size: 0.8rem;
  }

  .projects-table tbody td {
    font-size: 0.85rem;
  }
}



/* ============================================================================ */
/*                                CONTACT PAGE                    */
/* ============================================================================ */
.contact-page {
  overflow-x: hidden;
}

/* HERO */
.contact-hero {
  background: linear-gradient(
    135deg,
    rgba(9, 0, 58, 0.06),
    rgba(63, 61, 122, 0.1)
  );
}

.contact-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #09003a;
  margin-bottom: 1rem;

  opacity: 0;
  transform: translateY(30px);
}

.contact-hero-subtitle {
  max-width: 900px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6c757d;

  opacity: 0;
  transform: translateY(30px);
}

/* CONTENT */
.contact-info-box,
.contact-form-box {
  background: #ffffff;
  border: 1px solid rgba(9, 0, 58, 0.15);
  border-radius: 14px;
  padding: 30px;
  height: fit-content;
  opacity: 0;
  transform: translateY(40px);
}

.h-100 {
    height:fit-content !important;
}

.contact-section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #09003a;
  margin-bottom: 1rem;
}

.contact-info-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1.4rem;
}

.contact-item i {
  font-size: 1.2rem;
  color: #09003a;
  margin-top: 6px;
}

.contact-item .contact-info-text {
  margin: 0;
}


/* FORM */
.contact-input,
.contact-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(9, 0, 58, 0.25);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #3f3d7a;
}

.contact-submit-btn {
  background-color: #3f3d7a;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: #09003a;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 1.9rem;
  }

  .contact-section-title {
    font-size: 1.25rem;
  }
}



/* =====================================================
   REQUEST A QUOTE PAGE 
===================================================== */

.quote-page {
  overflow-x: hidden;
}

/* HERO */
.quote-hero {
  background: linear-gradient(
    135deg,
    rgba(9, 0, 58, 0.06),
    rgba(63, 61, 122, 0.1)
  );
}

.quote-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #09003a;
  margin-bottom: 1rem;

  opacity: 0;
  transform: translateY(30px);
}

.quote-hero-subtitle {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6c757d;

  opacity: 0;
  transform: translateY(30px);
}

/* FORM */
.quote-form {
  background: #ffffff;
  border: 1px solid rgba(9, 0, 58, 0.15);
  border-radius: 16px;
  padding: 35px;

  opacity: 0;
  transform: translateY(40px);
}

.quote-input,
.quote-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(9, 0, 58, 0.25);
  font-size: 0.95rem;
  outline: none;
}

.quote-input:focus,
.quote-textarea:focus {
  border-color: #3f3d7a;
}

.quote-submit-btn {
  background-color: #3f3d7a;
  color: #ffffff;
  padding: 12px 40px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.quote-submit-btn:hover {
  background-color: #09003a;
}

/* MOBILE */
@media (max-width: 768px) {
  .quote-hero-title {
    font-size: 2rem;
  }

  .quote-form {
    padding: 25px;
  }
}



/* WHATSAPP */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    line-height: 60px;
    z-index: 100;
    transition: transform 0.3s;
    margin-bottom: 80px;
    margin-top: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Footer Styling */
.footer-section {
    background-color: #09003A; /* Matches brand navy */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #ffffff;
    opacity: 1;
}

.contact-info p {
    font-weight: 500;
    line-height: 1.6;
}

.map-wrapper {
    height: 180px;
    background: #eee;
}

.map-wrapper iframe {
    filter: grayscale(0.2) contrast(1.1); /* Matches industrial map aesthetic */
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .footer-section {
        text-align: center;
    }
    .footer-section .d-flex {
        justify-content: center;
        text-align: left;
    }
    .map-wrapper {
        margin-top: 2rem;
    }
    .whatsapp-float  {
      margin-bottom: 20px;
        
    }
}



/* ===============================
   GLOBAL VARIABLES (EXISTING)
================================ */
:root {
  --brand-dark: #09003a;
  --btn-purple: #3f3d7a;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border-light: #e5e7eb;
  --bg-light: #f9fafb;
}

/* ===============================
   BASE STYLES (EXISTING)
================================ */
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.7;
}

.nav-logo {
  height: 45px;
  width: auto;
}

/* Navbar CTA */
.btn-request-quote {
  background-color: var(--btn-purple);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-request-quote:hover {
  background-color: #2e2c5e;
  color: white;
}



/* ===============================
   TERMS & CONDITIONS PAGE
================================ */
.terms-conditions {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

.terms-conditions .container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px 45px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

/* Page Title */
.terms-conditions h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.terms-conditions p strong {
  color: var(--brand-dark);
}

/* Section Headings */
.terms-conditions h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--btn-purple);
}

/* Paragraphs */
.terms-conditions p {
  font-size: 15.5px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

/* Lists */
.terms-conditions ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.terms-conditions ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

/* Divider feel (legal style spacing) */
.terms-conditions h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--btn-purple);
  margin-bottom: 12px;
  border-radius: 2px;
}

/* Contact Section */
.terms-conditions h2:last-of-type {
  margin-top: 50px;
}

.terms-conditions p:last-child {
  margin-bottom: 0;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .terms-conditions {
    padding: 50px 15px;
  }

  .terms-conditions .container {
    padding: 35px 25px;
  }

  .terms-conditions h1 {
    font-size: 28px;
  }

  .terms-conditions h2 {
    font-size: 18px;
  }

  .terms-conditions p,
  .terms-conditions ul li {
    font-size: 14.5px;
  }
}
