/* ==========================================================================
   Wadi Melouk Landing Page - Stylesheet
   ========================================================================== */

/* --- Custom Variables & Theme Tokens --- */
:root {
  --font-heading: 'Titillium Web', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Color Palette */
  --color-primary: #0d53a4;
  /* Royal Corporate Blue */
  --color-primary-dark: #0a3d7a;
  --color-secondary: #e21b22;
  /* Accent/Brand Red */
  --color-secondary-dark: #b81218;
  --color-dark-bg: #071d37;
  /* Deep Navy for dark sections */
  --color-charcoal: #252525;
  /* Dark Footer */
  --color-charcoal-dark: #1b1b1b;
  --color-body-bg: #ffffff;
  --color-section-bg: #f8fafc;

  /* Text Colors */
  --color-text-dark: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #ffffff;

  /* Layout & Spacing */
  --header-height: 90px;
  --header-height-shrunk: 75px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(13, 83, 164, 0.2);

  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
}

/* --- Resets and Base Styles --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 24px);
  /* Responsive body text scaling down to 16px, up to 24px */
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-body-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography (Figma Specifications) --- */
h1,.h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  /* SemiBold */
  font-size: clamp(36px, 5vw, 64px);
  /* Desktop 64px, responsive clamp */
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
h2,.h2{
  font-family: var(--font-heading);
  font-weight: 600;
  /* SemiBold */
  font-size: clamp(36px, 5vw, 45px);
  /* Desktop 64px, responsive clamp */
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
h3,
.h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.3;
  color: var(--color-primary);
}

p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--color-text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

.mt-1{
  margin-top: 20px !important;
}

/* --- Buttons (Figma Specifications) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 16px);
  /* Desktop 24px, responsive */
  font-weight: 600;
  padding: 16px 36px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-sml{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.8vw, 14px);
  /* Desktop 24px, responsive */
  font-weight: 600;
  padding: 8px 16px;
  width: 140px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
  white-space: nowrap;
  margin-top: 10px;
}

.btn-icon {
  transition: var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(226, 27, 34, 0.2);
}

.btn-secondary:hover .btn-icon {
  transform: translateX(4px);
}

.btn-brand-red {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
}

.btn-brand-red:hover {
  background-color: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(226, 27, 34, 0.3);
}

.btn-brand-white{
  background-color: var(--color-dark-bg);
  color: var(--color-text-light);
}

.btn-brand-white:hover {
  background-color: var(--color-body-bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(218, 218, 218, 0.3);
  color: var(--color-charcoal-dark);
}

.btn-brand-red:hover .btn-icon {
  transform: translateX(4px);
}

.btn-cta {
  background-color: var(--color-text-light);
  color: var(--color-secondary);
}

.btn-cta:hover {
  background-color: #f1f5f9;
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover .btn-icon {
  transform: translateX(6px);
}

/* --- Layout Containers --- */
.section-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

/* --- Subtitle Badge Decorator --- */
.subtitle-badge {
  display:block;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  justify-content: center;
}

.subtitle-badge .center-badge {
  justify-content: center;
}

.line-decorator {
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: var(--color-secondary);
}

.subtitle-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--color-secondary);
  display: block;
}

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.loader-logo-box {
  margin-bottom: 24px;
  animation: pulse 1.8s infinite ease-in-out;
}

.loader-logo {
  height: 60px;
  width: auto;
  margin: 0 auto;
}

.loader-progress {
  width: 100%;
  height: 4px;
  background-color: #f1f5f9;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  animation: loadProgress 2.5s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.02);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

@keyframes loadProgress {
  to {
    transform: scaleX(1);
  }
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-body-bg);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
}

.header.shrunk {
  height: var(--header-height-shrunk);
  box-shadow: var(--shadow-md);
}

.header-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 55px;
  width: auto;
  transition: var(--transition-normal);
}

.header.shrunk .header-logo {
  height: 45px;
}

.header-right-controls {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 15px;
}

.nav-dot-separator {
  color: #94a3b8;
  font-size: 16px;
  user-select: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #475569;
  padding: 8px 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-primary);
}

/* Square blue burger menu button on right */
.burger-menu-box {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 1100;
}

.burger-menu-box:hover {
  background-color: var(--color-primary-dark);
}

.burger-bar {
  width: 24px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 1px;
  transition: var(--transition-normal);
}

.burger-menu-box.active .burger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger-menu-box.active .burger-bar:nth-child(2) {
  opacity: 0;
}

.burger-menu-box.active .burger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-body-bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-slow);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
}

.mobile-nav-btn {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  padding: 15px;
  border-radius:0px;
  display: inline-block;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  list-style: none;
  background: #fff;
  padding: 10px 0;
  margin: 0;
  border-radius:0px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 1000;
  margin-top:4px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #475569;
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
}

.dropdown-menu li a:hover {
  background: #f1f5f9;
  color: var(--color-primary);
}

/* --- Hero Section --- */
.hero-section {
  padding-top: var(--header-height);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(../images/Banner.jpg);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  /* Diagonal split offset */
  width: 100%;
  min-height: calc(100vh - var(--header-height));
}

.hero-image-col {
  position: relative;
  height: 100%;
  width: 100%;
}

/* Double layered diagonal design from the Figma mockup */
.hero-diagonal-underlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8fafc;
  clip-path: polygon(0 0, 87% 0, 50% 100%, 0 100%);
  z-index: 1;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 85% 0, 48% 100%, 0 100%);
  z-index: 2;
  box-shadow: 15px 0 30px rgba(0, 0, 0, 0.05);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content-col {
  padding: 80px 40px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

/* Technical excellence subtitle formatting */
.subtitle-badge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.subtitle-category {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.subtitle-line-decorator {
  width: 70px;
  height: 2px;
  background-color: var(--color-secondary);
  margin-top: 6px;
}

.hero-title {
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.15;
}

.highlight-red-text {
  color: var(--color-secondary);
}

.hero-desc {
  margin-bottom: 40px;
  max-width: 580px;
  color: #475569;
  font-size: clamp(16px, 1.8vw, 20px);
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* Red bordered statistics box card */
.hero-stats-box {
  width: 100%;
  max-width: 650px;
  border: 1.5px solid var(--color-secondary);
  background-color: #fffbfb;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-column {
  display: flex;
  align-items: center;
  gap: 18px;
}

.stat-num-val {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

.stat-desc-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.3;
}

.stat-vertical-split {
  width: 1.5px;
  height: 50px;
  background-color: #cbd5e1;
}

/* --- About Section (Dark Silhouette) --- */
.about-section {
  position: relative;
  background-color: var(--color-dark-bg);
  background-image: url('../images/about_sec.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-text-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 500px;
}

.about-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:none;
  /* deep blue tint overlay */
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
}

.about-title {
  color: var(--color-text-light);
  margin-bottom:30px;
}

.highlight-brand {
  color: var(--color-secondary);
  /* WADI MELOUK highlighted in red */
}

.about-paragraphs {
  max-width: 900px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.about-paragraphs p {
  color: #e2e8f0;
}

/* --- Why Choose Us Section --- */
.why-section {
  background-color: #ffffff;
}

.why-grid-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  gap: 80px;
  align-items: center;
}

.why-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 80px;
  /* Space for overlay badge stack */
}

.image-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 520px;
}

.why-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

.why-visual-col:hover .why-image {
  transform: scale(1.03);
}

/* Features Badge Stack (Overlapping cards) */
.features-badge-stack {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 340px;
  z-index: 5;
  background-color: var(--color-body-bg);
  padding: 15px;
  box-shadow: var(--shadow-lg);
  border-right-color:var(--color-primary);
  border-right:8px solid var(--color-primary);
}

.feature-badge {
  border-bottom: 1px solid #c4c4c4;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-text-dark);
  transition: var(--transition-normal);
}

.feature-badge:hover {
  transform: translateX(-4px);
}

.borderNone{
  border-bottom: none;
}

.badge-icon-box {
  width: 44px;
  height: 44px;
  display: flex;  
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  flex-shrink: 0;
  padding:10px;
}

.badge-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-text-box {
  flex-grow: 1;
}

.badge-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.why-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whybtn{
  width: 200px;
}

.why-title {
  margin-bottom: 24px;
}

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

.text-red {
  color: var(--color-secondary);
}

.why-desc {
  margin-bottom: 40px;
  max-width: 600px;
}

/* --- Power Services Section --- */
.services-section {
  background-color: var(--color-section-bg);
}

.manpower-section .subtitle-badge-wrapper{
  align-items: center;
}
.services-section .subtitle-badge-wrapper{
  align-items: center;
}

.services-title {
  margin-top: 8px;
}

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

.service-card {
  background-color: var(--color-primary);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  height: 220px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.services-section .section-header-center {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.worker-image-box {
  width: 40%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.worker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: var(--transition-normal);
}

.service-card:hover .worker-img {
  transform: scale(1.08);
}

.service-card-content {
  width: 60%;
  padding: 30px 24px 30px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-text-light);
}

.service-card-title {
  color: var(--color-text-light);
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 8px;
}

.service-card-desc {
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.4;
}

/* --- Manpower Categories Grid --- */
.manpower-section {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
}

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

.manpower-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.manpower-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.manpower-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.manpower-icon-box {
  width: 40px;
  height: 40px;
  border-radius:0px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
}



.manpower-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.manpower-count {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

/* --- Red CTA Transition Banner --- */
.cta-section {
  background-color: var(--color-secondary);
  position: relative;
  overflow: hidden;
  color: var(--color-text-light);
}

/* Skyline decorative divider at top of section */
.cta-top-skyline {
  width: 100%;
  height: 290px;
  background-image: url('../images/SVG/Fotter_top.svg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  top: 0;
  left: 0;
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 40px;
}

.cta-title {
  color: var(--color-text-light);
  font-size: clamp(30px, 4.5vw, 52px);
  margin-bottom: 20px;
  max-width: 900px;
}

.cta-desc {
  color: #ffe4e6;
  max-width: 800px;
  margin-bottom: 10px;
}

/* --- Completed Projects Carousel --- */
.projects-section {
  background-color: var(--color-section-bg);
}

.projects-section-title {
  margin-top: 8px;
}

.carousel-outer-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-slow);
  width: 100%;
}

.carousel-slide {
  flex: 0 0 25%;
  /* 4 cards on desktop */
  padding: 0 12px;
  box-sizing: border-box;
}

.project-card {
  background-color: #ffffff;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 280px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: var(--transition-normal);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.project-logo-box {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-color: #ffffff;
}

.project-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-card-footer {
  background-color: var(--color-primary);
  padding: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.project-card-title {
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.project-card-title span{
 font-size: 14px;
  font-weight: normal;
}

.carousel-control {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.carousel-control:hover {
  background-color: var(--color-secondary-dark);
  transform: scale(1.1);
}

/* --- Assets & Equipment --- */
.assets-section {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assets-bg-image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.assets-overlay-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

.assets-card {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 60px 80px;
  width: 100%;
  max-width: 900px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
}

.assets-card-title {
  margin-bottom: 40px;
  color: var(--color-primary);
  font-size: clamp(28px, 4vw, 44px);
}

.assets-lists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.assets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.assets-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: var(--color-text-dark);
}

.list-bullet {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* --- Contact Section --- */
.contact-section {
  background-color: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  margin-bottom: 20px;
  color: var(--color-primary);
}

.contact-info-desc {
  margin-bottom: 40px;
  max-width: 500px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.channel-link:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #eff6ff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-form-block {
  background-color: var(--color-section-bg);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #cbd5e1;
  border-radius: var(--border-radius-sm);
  background-color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-dark);
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 83, 164, 0.1);
}

textarea.form-input {
  resize: vertical;
}

.form-submit-btn {
  border: none;
  width: 100%;
}

/* --- Footer --- */
.main-footer {
  background-color: var(--color-charcoal);
  color: var(--color-text-light);
  border-top: 5px solid var(--color-secondary);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 60px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.brand-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo {
  height: 60px;
  width: auto;
  align-self: flex-start;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #333333;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon-link:hover {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  transform: translateY(-3px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col-title {
  color: var(--color-text-light);
  margin-bottom: 24px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-secondary);
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-menu a {
  font-family: var(--font-body);
  font-size: 16px;
  color: #94a3b8;
}

.footer-menu a:hover {
  color: var(--color-text-light);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer-contact-list img{
  width: 20px;
}

.contact-icon {
  color: var(--color-secondary);
  font-size: 18px;
}

.contact-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.4;
}

.footer-bottom {
  background-color: var(--color-charcoal-dark);
  padding: 30px 40px;
  text-align: center;
  border-top: 1px solid #333333;
}

.copyright-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748b;
}



/* ==========================================================================
   Responsive Design & Breakpoints
   ========================================================================== */

/* --- Tablet Breakpoint (1024px) --- */
@media (max-width: 1024px) {
  body {
    font-size: 20px;
  }

  .hero-grid-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-col {
    height: 450px;
  }

  .hero-diagonal-underlay {
    display: none;
  }

  .hero-image-wrapper {
    clip-path: none;
    
  }

  .hero-content-col {
    padding: 60px 40px;
  }

  .why-grid-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 40px;
  }

  .why-visual-col {
    padding-right: 0;
    justify-content: center;
  }

  .features-badge-stack {
    position: relative;
    top: 0;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }

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

  .manpower-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .carousel-slide {
    flex: 0 0 33.333%;
    /* 3 cards on tablet */
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* --- Mobile Breakpoint (768px) --- */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  /* Header Mobile styling */
  .desktop-nav {
    display: none;
  }

  .hero-content-col{
    justify-content: start;
  }

  .header-right-controls {
    gap: 15px;
  }

  .hero-image-col {
    height: auto;
  }

  .hero-content-col {
    padding:30px;
  }

  .hero-title{
    font-size:clamp(26px, 4.5vw, 38px)
  }

  .hero-desc{
    margin-bottom: 10px;
  }

  .hero-section {
  background-image: url(../images/Banner-mob.jpg);
  min-height: auto;
  padding-bottom: 30vh;
}


  .hero-actions {
    .hero-actions{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
  }

  .btn {
    width: auto;
    padding: 10px 25px;
  }
   .btn-mob {
    background-color: var(--color-body-bg);
  }

  .hero-stats-box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 20px;
  }

  .stat-column {
    width: 100%;
    justify-content: center;
  }

  .stat-vertical-split {
    width: 100%;
    height: 1.5px;
  }

  .about-content {
    padding: 90px 24px;
  }

  .why-grid-container {
    padding: 60px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .manpower-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .carousel-slide {
    flex: 0 0 100%;
    /* 1 card on mobile */
  }

  .carousel-outer-wrapper {
    gap: 10px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
  }

  .assets-card {
    padding: 40px 24px;
  }

  .assets-lists-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-block {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-container {
    padding: 60px 24px 40px 24px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-paragraphs{
    margin-bottom: 0px;
  }

  .stat-num-val{
    font-size:28px;
  }
  .hero-stats-box{
    width: 58%;
  }

  .stat-desc-label{
    font-size: 14px;
  }
.why-visual-col{
  display: block;
}
.features-badge-stack{
  top:-100px;
}
}

@media (max-width: 480px) {
  .manpower-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */

/* --- 1. Hero & Company Introduction --- */
.about-hero-section {
  position: relative;
  padding-top: var(--header-height);
  width: 100%;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color:none;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 480px;
  z-index: 1;
  overflow: hidden;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-intro-overlay-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
  margin-top: 220px; /* Overlap positioning */
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
}

.about-intro-card {
  background-color: #ffffff;
  border-radius: var(--border-radius-sm);
  padding: 60px 80px;
  width: 100%;
  max-width: 1100px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.about-intro-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 0.01em;
}

.about-intro-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.about-intro-p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--color-text-muted);
  text-align: center;
}

.about-intro-p.highlight-p {
  color: var(--color-text-dark);
  font-weight: 600;
}

.card-bottom-decorator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: absolute;
  bottom:-10px;
  left:0px;
}

.decorator-line {
  height: 6px;
  background-color: var(--color-primary);
  flex-grow: 1;
}

.decorator-diamond {
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- 2. Chairman's Message --- */
.chairman-section {
  position: relative;
  background-color: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}

.chairman-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.chairman-image-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.chairman-image-frame {
  position: relative;
  max-width: 340px;
  width: 100%;
}
.chairman-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

.chairman-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.chairman-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 24px;
}

.chairman-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chairman-text p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.accent-polygon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 250px;
  background-color: var(--color-primary);
  z-index: 1;
}

.accent-left {
  left: 0;
  top: 85%;
  position:absolute;
  clip-path: polygon(0% 100%, 0% 27%, 200% 75%, 100% 100%);
  width: 60px;
}

.accent-right {
  right: 0;
  clip-path:polygon(0% 75%,
    0% 18%,
    100% 0%,
    100% 75%);
    background-color: var(--color-secondary-dark);
}

/* --- 3. About Wadi Melouk (Dark Section) --- */
.about-wmt-section {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
}

.about-wmt-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.about-wmt-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-wmt-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.about-wmt-gold-line {
  width: 60px;
  height: 3px;
  background-color: #ffd700;
  margin-bottom: 24px;
}

.about-wmt-subtitle {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.4;
}

.about-wmt-desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 17px);
  line-height: 1.6;
  color: #eff6ff;
  margin-bottom: 24px;
}

.about-wmt-mission-quote {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  color: #ffffff;
  border-left: 4px solid #ffd700;
  padding-left: 16px;
  margin-top: 10px;
  line-height: 1.5;
}

.about-wmt-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-wmt-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

/* --- 4. Vision & Mission --- */
.vision-mission-section {
  background-color: #ffffff;
  padding: 40px 0;
}

.vm-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.vm-row:last-child {
  margin-bottom: 0;
}

.vm-icon-col {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vm-icon {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.vm-content-col {
  flex-grow: 1;
}

.vm-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.vm-title.text-red {
  color: var(--color-secondary);
}

.vm-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* --- 5. Values Section --- */
.values-section {
  padding: 10px 0 0 0;
  position: relative;
  overflow: hidden;
}

.values-content {
  padding-bottom: 60px;
}

.values-content1 {
  padding-bottom: 0px !important;
  padding:0px !important;
}


.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  flex: 0 1 calc(25% - 24px);
  min-width: 280px;
  transition: var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.value-icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-title {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 700;
  color: var(--color-text-dark);
}

/* --- 6. About Us Responsive Styles --- */
@media (max-width: 1200px) {
  .accent-polygon {
    display: none;
  }
}

@media (max-width: 1024px) {
  .about-hero-bg {
    height: 380px;
  }
  
  .about-intro-overlay-container {
    margin-top: 160px;
  }
  
  .about-intro-card {
    padding: 50px 40px;
  }
  
  .chairman-grid,
  .about-wmt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .chairman-image-col,
  .about-wmt-image-col {
    order: -1;
  }
  
  .chairman-image-frame {
    max-width: 300px;
  }
  
  .chairman-image-frame::after {
    display: none;
  }
  
  .about-wmt-img {
    max-width: 100%;
  }

  .vm-row {
    gap: 40px;
    padding: 0 40px;
  }
  
  .value-card {
    flex: 0 1 calc(33.333% - 24px);
  }
}

@media (max-width: 768px) {
  .about-hero-bg {
    height: 300px;
  }
  
  .about-intro-overlay-container {
    margin-top: 100px;
    padding: 0 20px;
  }
  
  .about-intro-card {
    padding: 40px 24px;
  }
  
  .chairman-section,
  .about-wmt-section,
  .vision-mission-section,
  .values-section {
    padding-top: 60px;
  }
  
  .vm-row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 60px;
  }
  
  .vm-row.mission-row {
    flex-direction: column;
  }
  
  .vm-icon-col {
    width: 120px;
    order: -1;
  }
  
  .vm-icon {
    max-width: 120px;
  }
  
  .text-right-desktop {
    text-align: center;
  }
  
  .value-card {
    flex: 0 1 calc(50% - 24px);
  }
}

@media (max-width: 480px) {
  .value-card {
    flex: 0 1 100%;
  }
}

#management{ margin-top: 100px; background-image: url(../images/management.jpg); background-size: cover; background-repeat: no-repeat;}
#whatwadi{ background-image: url(../images/what.jpg); background-size: cover; background-repeat: no-repeat; background-position: center;}
/*====================================================
WHY CHOOSE US FEATURES
====================================================*/

.why-features-section{
     background:#ffffff;
}

.why-features-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    overflow:hidden;
    border-radius:0px;

}

.feature-card{

    position:relative;
    height:250px;
    overflow:hidden;
    cursor:pointer;

}

.feature-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.feature-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(7,39,88,.95),
    rgba(7,39,88,.45));

}

.feature-overlay.red{

    background:linear-gradient(to top,
    rgba(184,30,40,.95),
    rgba(184,30,40,.45));

}

.feature-content{

    position:absolute;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:top;
    text-align:center;

    padding:20px;

}

.feature-content h3{

    color:#fff;
    font-size:20px;
    font-weight:600;
    line-height:1.5;
    text-transform:capitalize;

}

.feature-card:hover img{

    transform:scale(1.15);

}

.feature-card:hover{

    z-index:2;

}

@media(max-width:991px){

.why-features-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.why-features-grid{grid-template-columns:1fr;}

.feature-card{height:220px;}
}
.why-features-section .section-container{padding: 0px; max-width: 1100px;}
#hse p {text-align: justify;}
#hse .about-wmt-img{box-shadow: none;}
.about-intro-card .subtitle-line-decorator{ margin: 0 auto;  margin-bottom: 25px;}
.certificate-title .subtitle-line-decorator{margin: 0 auto;    margin-top: 30px;}
#hse .wcu-detail-text {padding-top: 25px;}

/*==================================================
CERTIFICATE SECTION
==================================================*/

.certificate-section{

    position:relative;
    background:#ffffff;
    overflow:hidden;

}

.certificate-title{

    font-size:42px;
    font-weight:700;
    color:#123d78;
    margin-bottom:20px;

}

.certificate-desc{

    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;

}

.certificate-grid{

    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.certificate-card{

    background:#fff;
    border-radius:12px;
    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.45s;

}

.certificate-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.18);

}

.certificate-image{

    overflow:hidden;

}

.certificate-image img{

    width:100%;
    display:block;

    transition:.6s;

}

.certificate-card:hover img{

    transform:scale(1.08);

}

.certificate-content{

    padding:28px;

}

.certificate-content h3{

    color:#123d78;
    margin-bottom:12px;

    font-size:24px;

}

.certificate-content p{

    color:#666;
    line-height:1.7;
    margin-bottom:25px;

}

.certificate-btn{

    display:inline-block;

    background:#123d78;

    color:#fff;

    padding:12px 26px;

    border-radius:40px;

    text-decoration:none;

    transition:.35s;

}

.certificate-btn:hover{

    background:#d7282f;

}

.certificate-shape{
position: absolute;
    width: 45px;
    height: 180px;
    background: #d7282f;
    left: 0;
    clip-path: polygon(0% 100%, 0% 27%, 200% 75%, 100% 100%);}

.certificate-skyline{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:120px;

    background:url(images/skyline.png) center bottom repeat-x;

    opacity:.08;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.certificate-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.certificate-grid{

grid-template-columns:1fr;

}

.certificate-title{

font-size:34px;

}

}
/*====================================================
CONTACT SECTION
====================================================*/
 
.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.contact-form-box{

    background:#fff;
    padding:45px;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-title{

    font-size:42px;
    color:#123D78;
    margin:15px 0;

}

.contact-description{

    color:#666;
    margin-bottom:35px;
    line-height:1.8;

}

.contact-form{

    display:flex;
    flex-direction:column;
    gap:22px;

}

.form-group{

    display:flex;
    flex-direction:column;

}

.form-group label{

    margin-bottom:8px;
    font-weight:600;
    color:#123D78;

}

.form-group label span{

    color:#d7282f;

}

.form-group input,
.form-group select,
.form-group textarea{

    width:100%;
    padding:16px 18px;

    border:1px solid #ddd;
    border-radius:8px;

    font-size:15px;

    transition:.3s;

    font-family:inherit;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    border-color:#123D78;
    outline:none;

    box-shadow:0 0 0 3px rgba(18,61,120,.12);

}

.form-group textarea{

    resize:none;

}

.contact-btn{

    background:#123D78;
    color:#fff;

    padding:16px;

    border:none;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.contact-btn:hover{

    background:#d7282f;

}

/* MAP */

.contact-map{

    height:100%;
    min-height:700px;

    border-radius:12px;
    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-map iframe{

    width:100%;
    height:100%;
    border:0;

}

/* Responsive */

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;
gap:40px;

}

.contact-map{

min-height:450px;

}

}

@media(max-width:767px){

.contact-form-box{

padding:30px;

}

.contact-title{

font-size:34px;

}

}

#whatwadi .about-wmt-content-col {align-items: center;max-width: 65%; margin: 0 auto;}
#whatwadi p.about-wmt-desc {text-align: center;}
#whatwadi .section-container { padding: 0;}

/*====================================================
CONTACT DETAILS SECTION
====================================================*/
 
.contact-details-title{

    font-size:35px;
    font-weight:700;
    color:#123D78;
    margin-bottom:18px;

}

.contact-details-desc{

    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;

}

.contact-details-grid{

    margin-top:60px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.contact-detail-card{

    background:#fff;
    padding:40px 30px;
    border-radius:0px;
    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;

}

.contact-detail-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.detail-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    background:none;
    color:#fff;
    border-radius:50%;
    transition:.35s;
}

.detail-icon img{
  width: 40px;
  height: 40px;
}

.contact-detail-card:hover .detail-icon{

    background:none;
    transform:rotate(8deg) scale(1.08);

}

.contact-detail-card h3{

    font-size:24px;
    color:#123D78;
    margin-bottom:18px;

}

.contact-detail-card p{

    color:#666;
    line-height:1.9;
    font-size:16px;

}

.contact-detail-card a{

    color:#666;
    text-decoration:none;
    transition:.3s;

}

.contact-detail-card a:hover{

    color:#d7282f;

}

/* Responsive */

@media(max-width:991px){

.contact-details-grid{

grid-template-columns:1fr;
gap:25px;

}

}

@media(max-width:767px){

.contact-details-title{

font-size:34px;

}

.contact-detail-card{

padding:35px 25px;

}

}
.contact-details-section .subtitle-badge-wrapper{align-items: center;}
/*=========================================
SERVICE DETAIL SECTION
=========================================*/

.service-detail-section{
    background:#fff;
    position:relative;

}

.service-row{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:90px;

}

.service-row.reverse{

    direction:rtl;

}
.service-row.reverse{margin-bottom: 0px;}

.service-row.reverse>*{

    direction:ltr;

}

.service-image{

    text-align:center;

}

.service-image img{

    max-width:100%;
    transition:.5s;

}

.service-image:hover img{

    transform:translateY(-10px);

}

.service-title{

    font-size:42px;
    color:#123D78;
    margin-bottom:15px;

}

.service-line{

    width:80px;
    height:4px;
    background:#D7282F;
    margin-bottom:30px;

}

.service-content h3{

    color:#123D78;
    font-size:28px;
    margin-bottom:20px;

}

.service-content h4{

    color:#123D78;
    margin:30px 0 20px;

}

.service-detail-section p{color: #595959;
    font-size: 16px;
    line-height:1.9; position: relative; z-index: 11;
    margin-bottom:20px;

}

.service-list{

    padding-left:20px;
    margin-bottom:30px;

}

.service-list li{
  margin-bottom:2px;
  color: #595959;
  font-size: 16px;
}

.service-list li::marker{
    color:#D7282F;
}

/* Hover */

.service-content{

    transition:.4s;

}

.service-content:hover{

    transform:translateY(-5px);

}

/* Responsive */

@media(max-width:991px){

.service-row{

grid-template-columns:1fr;
gap:50px;

}

.service-row.reverse{

direction:ltr;

}

.service-title{

font-size:34px;

}

}

@media(max-width:768px){

.service-title{

font-size:30px;

}

.service-content h3{

font-size:24px;

}

}
/*====================================
WORKFORCE SECTION
====================================*/

.workforce-section{
    position:relative;
    background:#fff;
    overflow:hidden;

}

.workforce-subtitle{

    margin-top:40px;
    margin-bottom:50px;

    color:#123D78;

    font-size:28px;
    font-weight:600;

}

.workforce-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.workforce-card{

    display:flex; padding: 20px;

    align-items:flex-start;

    gap:20px;  

    border-radius:0px; 

    transition:.35s;

    border:1px solid #edf1f7;

}

.workforce-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.workforce-icon{

    width:90px;
    height:90px; padding: 10px;

    background:#f6f8fc;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:0px;

    flex-shrink:0;

} 

.workforce-content h4{    color: #123D78;
    font-size: 18px;
    font-weight: 400;}

.workforce-content p{color: #595959;
    line-height: 22px;
    font-size: 15px;}

.workforce-card:hover .workforce-icon{

    background:#123D78;

}

.workforce-card:hover img{

    filter:brightness(0) invert(1);

}

.services-description{

    max-width:850px;

    margin:auto;

    color:#666;

    line-height:1.9;

}

/*=========================
Responsive
=========================*/

@media(max-width:1100px){

.workforce-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.workforce-grid{

grid-template-columns:1fr;

}

.workforce-card{

padding:22px;

}

.workforce-icon{

width:70px;
height:70px;

}
 

.workforce-content h4{

font-size:20px;

}

.workforce-subtitle{

font-size:24px;

}

}
.workforce-section p{font-size: 16px;}


.workforce-section .center-badge{ text-align: center; margin-bottom: 10vh; text-transform: uppercase;}
/*=========================================
TECHNICAL CONTRACTING INFO
=========================================*/

.tc-info-section{
    background:#fff;
    position:relative;

}

.tc-row{

    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
    align-items:center;
    margin-bottom:90px;

}

.tc-row.reverse{

    direction:rtl;

}

.tc-row.reverse>*{

    direction:ltr;

}

.tc-image{

    overflow:hidden;
    border-radius:12px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.tc-image img{

    width:100%;
    display:block;
    transition:.6s;

}

.tc-image:hover img{

    transform:scale(1.08);

}

.tc-title{

    font-size:38px;
    color:#123D78;
    margin:20px 0;

}

.tc-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:18px;

}

.industry-list{

    margin-top:25px;
    padding-left:20px;

}

.industry-list li{
    margin-bottom: 2px;
    color: #595959;
    font-size: 16px;
    transition:.3s;

}

.industry-list li:hover{

    color:#123D78;
    transform:translateX(8px);

}

.industry-list li::marker{

    color:#D7282F;

}

/* Hover */

.tc-content{

    transition:.35s;

}

.tc-content:hover{

    transform:translateY(-5px);

}

/* Responsive */

@media(max-width:991px){

.tc-row{

grid-template-columns:1fr;
gap:40px;

}

.tc-row.reverse{

direction:ltr;

}

}

@media(max-width:768px){

.tc-title{

font-size:30px;

}

}
.tc-info-section p{font-size: 16px;}
/*==========================
    PROJECT SECTION
===========================*/

.work-showcase{
    padding:80px 20px;
    background:#f5f7fb;
}

.work-wrapper{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
}

.work-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
}

.work-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.work-image{
    height:220px;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
}

.work-image img{
    max-width:100%;
    max-height:120px;
    transition:.4s;
}

.work-card:hover .work-image img{
    transform:scale(1.08);
}

.work-content{
    padding:28px;
}

.work-year{
    display:inline-block;
    background:#d71920;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
    font-weight:600;
}

.work-content h3{
    font-size:22px;
    margin-bottom:12px;
    color:var(--color-primary);
}

.work-content p{
    color:#666;
    margin-bottom:25px;
    line-height: 24px;
    font-weight: normal;
}

.work-content b{
    color:#666;
    font-size: 12px;
    width: 100%;
    display: block;
    margin-bottom:0px;
    border-top: 1px solid var(--color-primary);
}

.work-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.work-footer span{
    color:#999;
    font-size:14px;
}

.work-footer a{
    text-decoration:none;
    color:#d71920;
    font-weight:600;
    transition:.3s;
}

.work-footer a:hover{
    letter-spacing:1px;
}

/* Responsive */

@media (max-width:1199px){
    .work-wrapper{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){

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

    .work-card{
        border-radius:12px;
    }

    .work-image{
        height:140px;
        padding:15px;
    }

    .work-image img{
        max-width:90%;
        max-height:70px;
    }

    .work-content{
        padding:15px;
    }

    .work-content h3{
        font-size:15px;
        line-height:1.4;
    }

    .work-content p{
        font-size:13px;
        margin-bottom:12px;
    }

    .work-year{
        font-size:11px;
        padding:4px 10px;
    }

    .work-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .work-footer span,
    .work-footer a{
        font-size:12px;
    }

}

@media(max-width:480px){

.work-wrapper{
    grid-template-columns:1fr;
}

.work-footer{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
}

}

/*==================================
TABLE WRAPPER
==================================*/

.projects-table-wrapper{

    max-height:700px;

    overflow:auto;

    border-radius:0px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

/* Sticky Header */

.projects-table thead th{

    position:sticky;

    top:0;

    z-index:99;

    background:#123D78;

    color:#fff;

    padding:22px;

}

/* Company */

.project-company{

    display:flex;

    align-items:center;

    gap:18px;

}

.project-company img{

    width:100px;

    height:100px;

    object-fit:cover;

    background:#fff;

    border-radius:0px;

    padding:6px;

    border:1px solid #ececec;

    transition:.35s;

}

.project-company span{
font-size: 18px;
    font-weight:600;

    color:#123D78;

    line-height:1.5;

}

.projects-table tbody tr:hover .project-company span{

    color:#fff;

}

.projects-table tbody tr:hover .project-company img{

    transform:scale(1.08);

}

/* Year Badge */

.year-badge{

    display:inline-block;

    background:#123D78;

    color:#fff;

    padding:15px;

    border-radius:0px;

    font-size:14px;

    font-weight:600;

}

/* Scope Badge */

.scope-badge{

    display:inline-block;

    padding:15px;

    border-radius:0px;

    font-size:14px;

    font-weight:600;

    color:#fff;

}

/* Colors */

.scope-badge.hvac{

    background:#123D78;

}

.scope-badge.mep{

    background:#123D78;

}

.scope-badge.civil{

    background:#123D78;

}

.scope-badge.fabrication{

    background:#123D78;

}
.management-wrapper{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:start;

}

.table-heading{

    color:#123D78;
    margin-bottom:25px;
    font-size:28px;

}

.vehicle-list{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.vehicle-card{

    display:flex;
    align-items:center;
    gap:20px;

    background:#fff;

    padding:22px;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.vehicle-card:hover{

    transform:translateY(-6px);

    background:#123D78;

}

.vehicle-card:hover h4,
.vehicle-card:hover p{

    color:#fff;

}

.vehicle-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:#eef3fb;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

}

.vehicle-icon i{

    font-size:28px;
    color:#123D78;

}

.vehicle-card:hover .vehicle-icon{

    background:#fff;

}

.vehicle-info h4{

    color:#123D78;
    margin-bottom:6px;

}

.vehicle-info p{

    color:#666;
    margin:0;

}

@media(max-width:992px){

.management-wrapper{

grid-template-columns:1fr;

}

}
/*======================================
MANAGEMENT TABLE
======================================*/

.management-table-section{ 
    background:#f8f9fc;

}

.management-table-wrapper{

    overflow:auto;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.management-table {
    width: 100%;
    border-collapse: collapse;
}

.management-table thead th{
    position:sticky;
    top:0;
    z-index:10;
    background:#123D78;
    color:#fff;
    padding:20px;
    font-size:17px;
    font-weight:600;
    text-align:left;

}

.management-table th,
.management-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.management-table td{
font-size: 16px;
    padding:18px 20px;
    border-bottom:1px solid #e9edf3;
    color:#555;
    transition:.3s;

}

.management-table tbody tr:nth-child(even){

    background:#f9fbfd;

}

.management-table tbody tr:hover{

    background:#123D78;

}

.management-table tbody tr:hover td{

    color:#fff;

}

.management-table td:first-child{

    text-align:center;
    font-weight:600;
    width:80px;

}

.management-table td:nth-child(2){

    font-weight:600;
    color:#123D78;

}

.management-table tbody tr:hover td:nth-child(2){

    color:#fff;

}

/* Mobile View */
@media (max-width: 767px) {

  .table-heading{
    text-align: center;
  }

    .management-table{
      padding: 0px 30px;
    }
    .management-table,
    .management-table thead,
    .management-table tbody,
    .management-table th,
    .management-table td,
    .management-table tr {
        display: block;
        width: 100%;
    }

    /* Hide table header */
    .management-table thead {
        display: none;
    }

    /* Each row becomes a card */
    .management-table tr {
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 10px;
        background: #fff;
    }

    .management-table td:first-child{
    display: none;

}

    /* Each td becomes one row below another */
    .management-table td {
        display: block;
        width: 100%;
        border: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }
    

    .management-table td:last-child {
        border-bottom: none;
    }
}

@media(max-width:768px){

.management-table{

    min-width:100%;

}

}
.vehicle-icon img {
    border-radius: 100%;
}
.subtitle-line-decorator.line {
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 25px;
}