/* ==========================================================================
   ALMAX ENGINEERS - Static HTML Light Theme Custom Stylesheet
   Designed for: Premium Architectural, Glazing & Cladding Contractor
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* Design System / Global Variables (Light Theme) */
:root {
  /* Color Palette - Premium Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-border: rgba(0, 0, 0, 0.08);
  
  --accent-orange: #122f69;
  --accent-orange-rgb: 249, 87, 56;
  --accent-gold: #d97706; /* Darker gold for better contrast on light backgrounds */
  --accent-blue: #0ea5e9;
  
  --text-primary: #122f69;
  --text-muted: #475569;
  --text-steel: #64748b;
  --text-dark: #0f172a;
  --text-light: #ffffff;
  
  /* Fonts */
  --font-body: 'Inter', sans-serif;
  --font-title: 'Manrope', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Global Reset & Base Elements */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--accent-orange);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

/* SECTION STRUCTURE */
section {
  padding: 100px 0;
  position: relative;
}

.section-light-alt {
  background-color: var(--bg-secondary);
}

/* Grid & Border Utilities */
.line-accent {
  width: 50px;
  height: 3px;
  background-color: var(--accent-orange);
  margin-top: 15px;
  margin-bottom: 25px;
}

.line-accent-center {
  width: 50px;
  height: 3px;
  background-color: var(--accent-orange);
  margin: 15px auto 25px auto;
}

.section-subtitle {
  color: var(--accent-orange);
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  section {
    padding: 75px 0;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* --------------------------------------------------------------------------
   HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.navbar-custom {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar-custom.scrolled {
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.navbar-brand-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand-logo span {
  color: var(--accent-orange);
}

.nav-link-custom {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted) !important;
  padding: 8px 16px !important;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link-custom:hover, 
.nav-link-custom.active {
  color: var(--text-primary) !important;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--accent-orange);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

/* Header Button */
.btn-header {
  background-color: transparent;
  color: var(--text-primary) !important;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 8px 20px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.btn-header:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(249, 87, 56, 0.2);
}

/* Hamburger Toggler */
.navbar-toggler-custom {
  border: none;
  background: transparent;
  padding: 5px;
}

.navbar-toggler-icon-custom {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  display: block;
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
  content: '';
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.navbar-toggler-icon-custom::before {
  top: -8px;
}

.navbar-toggler-icon-custom::after {
  top: 8px;
}

.navbar-toggler-custom:not(.collapsed) .navbar-toggler-icon-custom {
  background-color: transparent;
}

.navbar-toggler-custom:not(.collapsed) .navbar-toggler-icon-custom::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler-custom:not(.collapsed) .navbar-toggler-icon-custom::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Mobile Nav Overlay styling */
@media (max-width: 991px) {
  .navbar-brand-logo {
    font-size: 1.3rem;
  }

.navbar-collapse-custom {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-primary);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    visibility: hidden;
}
  
  .navbar-collapse-custom.show {
    right: 0 !important;
    visibility: visible !important;
  }
  
  .nav-link-custom::after {
    display: none;
  }
  
  .nav-link-custom {
    font-size: 1.1rem;
    padding: 10px 0 !important;
  }
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */


   .hero-slider-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 35, 78, 0.95) 0%,
            rgba(8, 48, 97, 0.85) 45%,
            rgba(7, 38, 78, 0.45) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    padding: 80px 0;
    color: #ffffff;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-tag span {
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #ffffff;
}

.hero-content h1,
.hero-content h2 {
    max-width: 1050px;
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(42px, 4.3vw, 66px);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -2px;
}

.hero-content p {
    max-width: 720px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-primary-btn,
.hero-light-btn {
    min-width: 200px;
    min-height: 54px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-primary-btn {
    color: #ffffff;
    border: 1px solid #124fa5;
    background-color: #124fa5;
}

.hero-primary-btn:hover {
    color: #ffffff;
    border-color: #0b3f89;
    background-color: #0b3f89;
    transform: translateY(-3px);
}

.hero-light-btn {
    color: #10396e;
    border: 1px solid #ffffff;
    background-color: #ffffff;
}

.hero-light-btn:hover {
    color: #ffffff;
    border-color: #124fa5;
    background-color: #124fa5;
    transform: translateY(-3px);
}


/* Owl Navigation */

.hero-owl-carousel .owl-nav {
    margin: 0;
}

.hero-owl-carousel .owl-nav button.owl-prev,
.hero-owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.hero-owl-carousel .owl-nav button.owl-prev {
    left: 24px;
}

.hero-owl-carousel .owl-nav button.owl-next {
    right: 24px;
}

.hero-owl-carousel .owl-nav button:hover {
    color: #10396e;
    background: #ffffff;
}


/* Owl Dots */

.hero-owl-carousel .owl-dots {
    position: absolute;
    right: 50px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-owl-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 5px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.55);
    transition: all 0.3s ease;
}

.hero-owl-carousel .owl-dots .owl-dot.active span {
    width: 30px;
    background-color: #ffffff;
}


/* Slider Animation */

.hero-owl-carousel .owl-item .hero-tag,
.hero-owl-carousel .owl-item .hero-content h1,
.hero-owl-carousel .owl-item .hero-content h2,
.hero-owl-carousel .owl-item .hero-content p,
.hero-owl-carousel .owl-item .hero-buttons {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s ease;
}

.hero-owl-carousel .owl-item.active .hero-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-owl-carousel .owl-item.active .hero-content h1,
.hero-owl-carousel .owl-item.active .hero-content h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.hero-owl-carousel .owl-item.active .hero-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-owl-carousel .owl-item.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}


/* Responsive */

@media (max-width: 1199.98px) {
    .hero-slide {
        min-height: 540px;
    }

    .hero-content {
        max-width: 880px;
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 991.98px) {
    .hero-slide {
        min-height: 520px;
    }

    .hero-overlay {
        background: rgba(5, 35, 78, 0.82);
    }

    .hero-content {
        max-width: 760px;
        padding: 70px 45px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 46px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-owl-carousel .owl-nav button.owl-prev {
        left: 12px;
    }

    .hero-owl-carousel .owl-nav button.owl-next {
        right: 12px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        min-height: 550px;
        background-position: center;
    }

    .hero-content {
        padding: 70px 15px 90px;
    }

    .hero-tag {
        margin-bottom: 18px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-content h1,
    .hero-content h2 {
        margin-bottom: 18px;
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero-content p {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-primary-btn,
    .hero-light-btn {
        min-width: auto;
        width: 100%;
        min-height: 52px;
    }

    .hero-owl-carousel .owl-nav {
        display: none;
    }

    .hero-owl-carousel .owl-dots {
        right: auto;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-slide {
        min-height: 570px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 31px;
    }

    .hero-content p {
        font-size: 15px;
    }
}


.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgb(22 60 120 / 24%) 0%, rgb(24 59 122 / 65%) 100%), url(../images/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
}
.hero-content {
  z-index: 5;
  margin-top: 90px;
}

.hero-subtitle {
  font-family: var(--font-title);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-subtitle::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #fff;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 25px;
}

.hero-desc {
  font-size: 1.15rem;
  color: #fff;
  max-width: 680px;
  margin-bottom: 40px;
}

/* Buttons */
.btn-primary-custom {
    background-color: #183b7a;
    color: #ffffff;
    border: 1px solid var(--accent-orange);
    padding: 14px 30px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-primary-custom:hover {
  background-color: #3c3633;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(249, 87, 56, 0.15);
}

.btn-secondary-custom {
  background-color: #fff;
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 14px 30px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.btn-secondary-custom:hover {
  background-color: #fff;
  border-color: var(--text-primary);
  color: var(--text-primary);
  transform: translateY(-3px);
}

/* Trust Badges */
.hero-badges-container {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 35px;
  margin-top: 50px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
    width: 60px;
    height: 60px;
    background-color: rgb(255 255 255);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #183b7a;
    font-size: 1.7rem;
}

.hero-badge-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 2px;
}

.hero-badge-value {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
    height: auto;
    min-height: 100vh;
  }
  .hero-subtitle {
    justify-content: center;
  }
  .hero-subtitle::before {
    display: none;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 1rem;
    margin: 0 auto 30px auto;
  }
  .hero-badges-container {
    margin-top: 40px;
  }
  .hero-badge-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .hero-badge-icon {
    margin: 0 auto;
  }
}

/* --------------------------------------------------------------------------
   ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-image-collage {
  position: relative;
  height: 480px;
}

.about-img-main {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.about-img-sub {
  width: 60%;
  height: 60%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.about-img-pattern {
  position: absolute;
  left: 20%;
  bottom: 10%;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(rgba(249, 87, 56, 0.15) 2px, transparent 2px);
  background-size: 15px 15px;
  z-index: 1;
}

@media (max-width: 575px) {
  .about-image-collage {
    height: 320px;
    margin-bottom: 30px;
  }
  .about-img-main {
    width: 75%;
    height: 75%;
  }
  .about-img-sub {
    width: 55%;
    height: 55%;
  }
}

/* Counters */
.counter-box {
  background-color: var(--bg-primary);
  border: 1px solid var(--card-border);
  padding: 25px 20px;
  border-radius: 6px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.counter-box:hover {
  border-color: rgba(249, 87, 56, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.counter-num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: 5px;
  line-height: 1.1;
}

.counter-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   WHY CHOOSE US & GLASSMORPHISM CARDS
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 35px 30px;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 87, 56, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 
              0 0 1px rgba(249, 87, 56, 0.1) inset;
}

.cta-buttons-group a {
    padding: 16px 0px;
}

.glass-card-icon {
    width: 56px;
    height: 56px;
    background-color: rgb(18 47 105 / 4%);
    border: 1px solid rgb(18 47 105 / 18%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.glass-card:hover .glass-card-icon {
  background-color: var(--accent-orange);
  color: #ffffff;
  transform: scale(1.05);
}

.glass-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.glass-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   SERVICES SECTION
   -------------------------------------------------------------------------- */
.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  font-size: 2.2rem;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-card-cta {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.service-card-cta i {
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-card-cta {
  color: var(--accent-orange);
}

.service-card:hover .service-card-cta i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   PROCESS TIMELINE
   -------------------------------------------------------------------------- */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

.process-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.process-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--bg-primary);
  border: 3px solid var(--accent-orange);
  border-radius: 50%;
  top: 26px;
  z-index: 1;
}

.process-item-left {
  left: 0;
  text-align: right;
}

.process-item-left::after {
  right: -8px;
}

.process-item-right {
  left: 50%;
  text-align: left;
}

.process-item-right::after {
  left: -8px;
}

.process-card {
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  padding: 25px;
  border-radius: 6px;
  display: inline-block;
  max-width: 400px;
  text-align: left;
  transition: var(--transition-smooth);
  box-shadow: 0 3px 10px rgba(0,0,0,0.01);
}

.process-card:hover {
  border-color: rgba(249, 87, 56, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.process-step {
  font-family: var(--font-title);
  color: var(--accent-orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.process-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .process-timeline::before {
    left: 20px;
  }
  .process-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }
  .process-item-left {
    left: 0;
  }
  .process-item-left::after {
    left: 12px;
    right: auto;
  }
  .process-item-right {
    left: 0;
  }
  .process-item-right::after {
    left: 12px;
  }
  .process-card {
    max-width: 100%;
  }
  nav.navbar div#navbarNav {
    justify-content: start !important;
}
}

/* --------------------------------------------------------------------------
   PRODUCT SERIES
   -------------------------------------------------------------------------- */
.product-series-box {
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 40px;
  height: 100%;
}

.product-series-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-series-icon {
  font-size: 1.8rem;
  color: var(--accent-orange);
}

.product-series-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0;
}

.product-list-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.product-list-item:last-child {
  border-bottom: none;
}

.product-list-bullet {
  color: var(--accent-orange);
  font-size: 0.85rem;
}

.product-list-text {
  font-size: 0.95rem;
  color: #000;
}

@media (max-width: 575px) {
  .product-series-box {
    padding: 25px 20px;
  }
}

/* --------------------------------------------------------------------------
   VISION, MISSION & VALUES
   -------------------------------------------------------------------------- */
.vision-dark-block {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 60px;
  color: #ffffff;
}

.vision-dark-block h3, 
.vision-dark-block h2 {
  color: #ffffff !important;
}

.vmv-icon {
  font-size: 2.5rem;
  color: #f6cd61; /* Warm yellow/gold for high contrast in dark block */
  margin-bottom: 25px;
}

.value-item {
  padding: 20px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  height: 100%;
  transition: var(--transition-fast);
}

.value-item:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.value-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f6cd61;
  margin-bottom: 8px;
}

.value-text {
  font-size: 0.88rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .vision-dark-block {
    padding: 30px 20px;
  }
}

/* --------------------------------------------------------------------------
   FEATURED PROJECTS
   -------------------------------------------------------------------------- */
.filter-btn-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--text-muted);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 20px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(249, 87, 56, 0.25);
}

/* Project Card */
.project-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 350px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.project-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition-smooth);
}

.project-card-overlay h3,
.project-card-overlay p,
.project-card-overlay div {
  color: #ffffff !important;
}

.project-card:hover .project-card-img {
  transform: scale(1.08);
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-tag {
  background-color: var(--accent-orange);
  color: #ffffff !important;
  font-size: 0.75rem;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  width: fit-content;
  margin-bottom: 12px;
}

.project-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  margin-top: 12px;
}

.project-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-meta-item i {
  color: #fff !important;
}

/* Mixitup/Grid show-hide transitions */
.project-col {
  transition: var(--transition-smooth);
}

.project-col.hidden {
  display: none;
}

@media (max-width: 991px) {
  .project-card {
    height: 300px;
  }
  .project-card-overlay {
    opacity: 1; /* Always display text details on mobile */
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 75%, transparent 100%);
    padding: 20px;
  }
}

/* --------------------------------------------------------------------------
   CLIENTS / TRUST SECTION
   -------------------------------------------------------------------------- */
.clients-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: 50px 0;
}

.client-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  background-color: rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  height: 65px;
  transition: var(--transition-fast);
}

.client-logo-box:hover {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}

.client-logo-text {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-steel);
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.client-logo-box:hover .client-logo-text {
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   CTA BANNER SECTION
   -------------------------------------------------------------------------- */
.cta-banner-wrapper {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.cta-banner-wrapper h3 {
  color: #ffffff !important;
}

.cta-banner-wrapper::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background-color: rgba(249, 87, 56, 0.03);
  border-radius: 50%;
  border: 1px solid rgba(249, 87, 56, 0.05);
}

.cta-banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 15px;
}

.cta-banner-subtext {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.cta-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  height: 100%;
  align-content: center;
  align-items: center;
}

.btn-whatsapp {
  background-color: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: transparent;
  color: #25D366;
  border-color: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

@media (max-width: 768px) {
  .cta-banner-wrapper {
    padding: 40px 20px;
    text-align: center;
  }
  .cta-banner-title {
    font-size: 1.8rem;
  }
  .cta-buttons-group {
    justify-content: center !important;
  }
}

/* --------------------------------------------------------------------------
   CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-title {
  font-size: 0.9rem;
  color: var(--text-steel);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.contact-info-content {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* Forms */
.form-custom .form-label {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-custom .form-control,
.form-custom .form-select {
  background-color: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-custom .form-control:focus,
.form-custom .form-select:focus {
  background-color: rgba(255, 255, 255, 1);
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(249, 87, 56, 0.15);
  color: var(--text-primary);
}

.map-placeholder {
  width: 100%;
  height: 250px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 35px;
}

@media (max-width: 768px) {
  .contact-info-list {
    margin-bottom: 30px;
  }
}

/* --------------------------------------------------------------------------
   FOOTER (Anchored Dark Corporate Footer)
   -------------------------------------------------------------------------- */
.footer-section {
  background-color: #25354c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 30px 0;
  color: #f8fafc;
}

.footer-section h4,
.footer-section a {
  color: #ffffff !important;
}

.footer-section a:hover {
  color: #fff !important;
}

.footer-desc {
  font-size: 0.9rem;
  margin-top: 20px;
  margin-bottom: 25px;
  color: #94a3b8;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8 !important;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-orange);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  color: #cbd5e1 !important;
  font-size: 0.9rem;
  display: inline-block;
  transition: var(--transition-fast);
}

.footer-link-item a:hover {
  color: #fff !important;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  padding-top: 30px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   STICKY FLOATING WIDGETS
   -------------------------------------------------------------------------- */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.widget-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.widget-btn-top-bottom {
    width: 50px;
    height: 50px;
}

.widget-whatsapp i {
    font-size: 40px !important;
}

.widget-whatsapp {
  background-color: #25D366;
}

.widget-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.widget-totop {
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.widget-totop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.widget-totop:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(249, 87, 56, 0.3);
}



.execution-capabilities {
    background-color: #f7f7f7;
}



section#vision-mission {
    padding: 0px;
}
section.hero-slider-section {
    padding-bottom: 0px;
}