/* ==========================================================================
   1. GLOBAL STYLES & CORE VARIABLES 
   ========================================================================== */
:root {
  --primary-dark: #000c24; 
  --hover-blue: #43708a; 
  --text-main: #00122e; 
  --text-muted: #4b5563;
  --light-bg: #f9fafb;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ==========================================================================
   2. PIXEL-PERFECT NAVBAR (MOCKUP STYLE)
   ========================================================================== */
/* ==========================================================================
   2. MODERN UTILITY & NAVBAR STYLES (PREMIUM LOOK)
   ========================================================================== */
.main-header {
  background-color: #ffffff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03); /* Soft elegant shadow */
  border-bottom: 1px solid #f3f4f6;
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Mockup ke hisaab se height set kiya */
}

/* Logo setup */
.logo img {
  height: 75px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
  padding: 5px; /* Logo ke around thoda padding for better hover effect */
}
.logo img:hover {
  transform: scale(1.02);
}

/* Menu Links Link Style */
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px; /* Elements ke darmiyan spacing capsule items ke liye */
  align-items: center;
}

/* Base Link Pattern - Rounded Capsule Style */
.nav-links .nav-item {
  color: #00122e;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px; /* Makes every link a round shape pill */
  display: inline-block;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover State - Soft Gray/Blue Background Hint */
.nav-links .nav-item:hover {
  background-color: #f3f6f9;
  color: #43708a;
}

/* Active State - Premium Floating Look */
.nav-links .nav-item.active {
  background-color: #000c24; /* Solid premium fill */
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 12, 36, 0.12);
}

/* Dropdown Handle & Arrow */
.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-toggle .arrow {
  font-size: 9px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg); /* Arrow smoothly flips on hover */
  color: #43708a;
}

/* Modern Minimalist Dropdown Card */
.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%; /* Thoda niche se start hoga grid structure */
  left: 40%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  background-color: #ffffff;
  list-style: none;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px; /* Smooth card look */
  padding: 12px;
  border: 1px solid #eef2f6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu li {
  margin-bottom: 4px;
}
.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* Dropdown elements style hover */
.dropdown-menu li a:hover {
  background-color: #f3f6f9;
  color: #43708a;
  padding-left: 22px; /* Elegant nudge effect */
}

/* Dynamic Trigger for Dropdown Drop effect */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Capsule CALL NOW Button */
.call-btn {
  background-color: #000c24;
  color: #ffffff !important;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(0, 12, 36, 0.15);
  border: 2px solid transparent;
}

.call-btn:hover {
  background-color: #ffffff;
  color: #000c24 !important;
  border-color: #000c24; /* Premium Invert Effect on Hover */
  box-shadow: 0 6px 20px rgba(0, 12, 36, 0.1);
}

/* ==========================================================================
   3. HERO SLIDER SECTION STYLES
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 85vh; /* Screen ki 85% height cover karega */
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Text left side par align rakhne ke liye */
  padding: 0 8%;
  overflow: hidden;
}

/* Slider Background Base Setup */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: sliderAnimation 15s infinite ease-in-out; /* 15 seconds ka loop cyclic sequence */
}

/* Image Paths Assignment */
.slide-1 {
  background-image: url("../images/banner-2.jpg.jpeg");
  animation-delay: 0s;
}
.slide-2 {
  background-image: url("../images/bannersample-1.jpg.jpeg");
  animation-delay: 5s; /* 5 second baad chalegi */
}
.slide-3 {
  background-image: url("../images/banner-3.jpg.jpeg");
  animation-delay: 10s; /* 10 second baad chalegi */
}

/* Smooth Fade In-Out Logic using CSS Keyframes */
@keyframes sliderAnimation {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  8% {
    opacity: 1;
  } /* Fade inside view */
  33% {
    opacity: 1;
  } /* Stay fully visible */
  41% {
    opacity: 0;
    transform: scale(1.04);
  } /* Fade out smoothly with slight zoom effect */
  100% {
    opacity: 0;
  }
}

/* Dark Overlay from the screenshot (to pop the white text) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    0,
    12,
    36,
    0.65
  ); /* Dark navy tint matching navbar branding */
  z-index: 2;
}

/* Static Content Typography Layout */
.hero-content {
  position: relative;
  z-index: 3; /* Overlay aur background ke upar dikhne ke liye */
  max-width: 750px; /* Text boundary setup text line wrapping control karne ke liye */
  color: #ffffff;
  animation: fadeInUp 1s ease-out; /* Entering slide subtle animation */
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 35px;
}

/* Sharp Industrial GET A QUOTE Button */
.quote-btn {
  display: inline-block;
  background-color: #000c24; /* Exact dark tone matching call button */
  color: #ffffff;
  padding: 15px 38px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background-color: #ffffff;
  color: #000c24;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* Entry Animation Text Fade In Trigger */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   HERO SECTION — RESPONSIVE
   ========================================================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    padding: 0 6%;
    height: 80vh;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 15px;
  }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100svh; /* Phone pe full screen */
    padding: 100px 6% 60px; /* Top mein navbar ka space */
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 30px;
    letter-spacing: 0;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .hero-action {
    display: flex;
    justify-content: center;
  }

  .quote-btn {
    padding: 13px 30px;
    font-size: 13px;
  }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  .hero-section {
    padding: 90px 5% 50px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 13px;
  }

  .quote-btn {
    width: 100%;
    text-align: center;
    padding: 13px 20px;
  }
}

/* ==========================================================================
   4. ABOUT & COUNTER STATS STYLES
   ========================================================================== */
.about-section {
  max-width: 1440px;
  margin: 80px auto;
  padding: 0 4%;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

/* Left Side Image */
.about-image-box {
  flex: 1;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Soft corner radius from mockup */
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Right Side Text Layout */
.about-text-box {
  flex: 1;
}

.about-text-box .sub-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #000c24;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.about-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #000c24;
  margin-bottom: 24px;
}

.about-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #556070;
  margin-bottom: 20px;
}

.about-desc strong {
  color: #4b5563;
}

/* Premium Dark Counter Bar Layout */
.stats-counter-bar {
  background-color: #000c24; /* Solid dark blue matching theme */
  border-radius: 16px; /* Rounded structure from mockup */
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 12, 36, 0.15);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums; /* Prevents text shaking while shuffling */
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #a0aec0;
  letter-spacing: 0.5px;
}

/* Elegant vertical thin line separators */
.stat-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .stats-counter-bar {
    flex-direction: column;
    gap: 30px;
  }
  .stat-divider {
    display: none;
  }
}

/* ==========================================================================
   5. IMPORTANCE & INFINITE CAROUSEL SLIDER STYLES
   ========================================================================== */
.importance-section {
  max-width: 1440px;
  margin: 80px auto;
  padding: 0 4%;
  overflow: hidden; /* Slider side edges ko hide rakhne ke liye */
}

.importance-container {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 70px;
}

/* Left Content Area */
.importance-text-box {
  flex: 1.2;
}

.importance-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: #000c24;
  margin-bottom: 24px;
}

.importance-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #556070;
  margin-bottom: 30px;
}

/* Light Blue Thin Line under text */
.blue-line-divider {
  width: 100px;
  height: 3px;
  background-color: #43708a; /* Soft steel blue divider line */
  margin-bottom: 30px;
}

/* Dark Rectangle Premium Button */
.sample-btn {
  display: inline-block;
  background-color: #000c24;
  color: #ffffff;
  padding: 14px 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
}

.sample-btn:hover {
  background-color: #43708a;
  transform: translateY(-2px);
}

/* Right Side Image Box */
.importance-image-box {
  flex: 1;
}

.importance-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   INFINITE CAROUSEL LOGIC (PURE CSS LOOP)
   ========================================================================== */
.services-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* Track holding all items together line-by-line */
.carousel-track {
  display: flex;
  width: calc(
    260px * 8 + 25px * 8
  ); /* (Card Width * Total Cards) + (Gaps * Total Cards) */
  gap: 25px;
  animation: continuousScroll 25s linear infinite; /* Seamless speed config */
}

/* Individual Solid Dark Cards */
.service-card {
  width: 260px;
  height: 180px;
  background-color: #000c24; /* Solid dark blue block */
  flex-shrink: 0; /* Content compress hone se rokne ke liye */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

/* Card Hover State */
.service-card:hover {
  background-color: #43708a; /* Hover soft transition overlay */
  transform: translateY(-5px);
}

.card-icon {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 16px;
}

.card-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Logo white kar dega dark card pe */
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

/* Infinite Loop Keyframe Definition */
@keyframes continuousScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-260px * 4 - 25px * 4)
    ); /* Moves exactly half track width then resets instantly */
  }
}

/* Pauses scroll when mouse hovers over the slider */
.services-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Responsive Grid adjustment */
@media (max-width: 991px) {
  .importance-container {
    flex-direction: column;
  }
}

/* ==========================================================================
   REWRITTEN SERVICES GRID SECTION STYLES
   ========================================================================== */
.services-grid-section {
  max-width: 1440px;
  margin: 80px auto;
  padding: 0 4%;
  font-family: sans-serif; /* Setup generic fallback layer */
}

/* Center Heading Controls */
.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.grid-section-title {
  font-size: 36px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 12px;
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: #000c24;
  margin: 0 auto;
}

/* Perfect 3-Column Standard Grid Layout */
.services-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual Card Structural Box */
.service-grid-card {
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  /* Soft cubic transitions for premium feeling */
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  border-radius: 0px !important; /* Kept sharp as required earlier */
}

/* Image Wrapper Box */
.card-img-wrapper {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.grid-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Text Content Container (Swaps color seamlessly) */
.card-grid-content {
  padding: 35px 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff; /* Pure white resting state */
  transition: background-color 0.3s ease-in-out;
}

.grid-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #000c24;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.grid-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #556070;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

/* Sharp Rectangular Button Configuration */
.grid-card-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: #000c24;
  border: 1px solid #000c24;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0px !important;
}

/* ==========================================================================
   ISOLATED HOVER ACTIONS (NO HARDCODED DEFAULT STATES)
   ========================================================================== */

/* 1. Only change the specific card background when cursor is active over it */
.service-grid-card:hover .card-grid-content {
  background-color: #000c24;
}

/* 2. Text adjustments within the active card scope */
.service-grid-card:hover .grid-card-title {
  color: #ffffff;
}

.service-grid-card:hover .grid-card-desc {
  color: #e2e8f0;
}

/* 3. Button outlines automatically to clear white border contrast block */
.service-grid-card:hover .grid-card-btn {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* 4. Secondary micro hover logic inside the dark inversion phase */
.grid-card-btn:hover {
  background-color: #ffffff !important;
  color: #000c24 !important;
  border-color: #ffffff !important;
}

/* 5. Outer frame macro transformations */
.service-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 12, 36, 0.12);
}

.service-grid-card:hover .grid-card-img {
  transform: scale(1.05); /* Premium picture micro zoom */
}

/* ==========================================================================
   RESPONSIVE LAYOUT RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991px) {
  .services-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-grid-container {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. WHY CHOOSE US (BENTO GRID WITH MAP BACKGROUND & PREMIUM PADDING)
   ========================================================================== */
.why-choose-section {
  max-width: 1440px;
  margin: 0 auto;

  /* MOCKUP SPACING FIX: High padding top and bottom for a spacious breathing layout */
  padding: 140px 4% 140px 4%;

  /* PREMIUM BACKGROUND IDENTITY */
  background-color: #ffffff;
  /* Aapke paas map image ho to use kar sakte hain, warna ye CSS pattern automatic premium dotted look dega */
  background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: center;

  position: relative;
}

.why-choose-container {
  display: flex;
  align-items: flex-start;
  gap: 60px; /* Enhanced gap between text and grid cards */
  position: relative;
  z-index: 2; /* Ensures content stays safely layered above the background */
}

/* Left Text Box Adjustment */
.why-choose-left {
  flex: 1;
  position: sticky;
  top: 120px; /* Keeps text beautifully framed while scrolling through bento blocks */
}

.why-choose-title {
  font-size: 40px; /* Slightly scaled up matching standard headers */
  font-weight: 800;
  line-height: 1.25;
  color: #000c24;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.why-choose-desc {
  font-size: 15px;
  line-height: 1.8; /* More relaxed line-height for readability */
  color: #556070;
}

/* Right Side Asymmetrical 2x2 Bento Box Grid */
.why-choose-right-grid {
  flex: 1.3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(190px, auto); /* Slightly increased row heights */
  gap: 25px;
}

/* Base Style for All Bento Items */
.bento-box {
  border-radius: 18px; /* Smooth wide rounded corners matching image_01b378.jpg */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 12, 36, 0.04);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  background: #ffffff;
}

/* Text Box Variety (Dark Blue Solid Block) */
.bento-box.dark-text-box {
  background-color: #000c24; /* Solid navy block identity */
  padding: 35px;
}

.bento-box.dark-text-box p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
  text-align: center;
}

/* Image Box Variety */
.bento-box.image-box {
  width: 100%;
  height: 100%;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents image squeezing or structural distortion */
  display: block;
}

/* Subtle Interactive Elevation on Hover */
.bento-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 12, 36, 0.1);
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTABILITY
   ========================================================================== */
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 80px 4%; /* Normalized breathing padding for mid-size tablets */
  }

  .why-choose-container {
    flex-direction: column;
    gap: 40px;
  }

  .why-choose-left {
    position: relative;
    top: 0;
  }
}

@media (max-width: 600px) {
  .why-choose-section {
    padding: 60px 4%;
  }

  .why-choose-right-grid {
    grid-template-columns: 1fr; /* Mobile systems stack layout natively */
    grid-auto-rows: auto;
  }

  .bento-box {
    height: 220px;
  }
}

/* ==========================================================================
   8. WHO WE ARE (OVERLAPPING INTERACTION LAYOUT)
   ========================================================================== */

/* ==========================================================================
   8. WHO WE ARE (FIXED WIDTH & SMOOTH UPWARD HOVER LAYOUT)
   ========================================================================= */
.who-we-are-section {
  max-width: 1200px; /* Width ko tight aur compact kiya taake container bahaar na bhaage */
  margin: 0 auto;
  padding: 120px 4%;
  background-color: #ffffff;
}

.who-we-are-container {
  display: flex;
  flex-direction: column;
  gap: 100px; /* Rows ke darmiyan behtareen spacing */
  margin-top: 50px;
}

/* Base Rows Setup */
.about-row {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

/* Image Block - Fixed Flex Basis */
.about-image-block {
  flex: 1; /* Equal weightage to image and text */
  height: 380px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 35px rgba(0, 12, 36, 0.06);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Text Block - Fixed Width & Padding */
.about-text-block {
  flex: 1; /* Equal weightage to image and text */
  background-color: #ffffff;
  padding: 50px 45px;
  box-shadow: 0 15px 40px rgba(0, 12, 36, 0.05);
  position: relative;
  z-index: 2;
  border-radius: 0px !important; /* Sharp corners intact */

  /* SMOOTH TRANSITION FOR UPWARD MOVEMENT */
  transition:
    background-color 0.4s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.about-text-block::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #43708a;
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Overlap Margins - Controls how much it sits inside the image */
.mission-row .about-text-block {
  margin-left: -60px;
}

.vision-row .about-text-block {
  margin-right: -60px;
}

/* Typography elements default state */
.about-block-title {
  font-size: 26px;
  font-weight: 700;
  color: #000c24;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}

.about-block-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #556070;
  transition: color 0.3s ease;
}

/* ==========================================================================
   FIXED: HOVER EFFECTS (SMOOTH UPWARD LIFT)
   ========================================================================== */

/* 1. When hovering the row, text card changes color and lifts UPWARD smoothly */
.about-row:hover .about-text-block {
  background-color: #000c24; /* Changes to dark blue instantly */
  transform: translateY(-15px); /* FIX: Card smoothly floats UP by 15px */
  box-shadow: 0 25px 50px rgba(0, 12, 36, 0.2); /* Enhanced soft shadow on lift */
}

/* 2. Text elements change color inside the active card scope */
.about-row:hover .about-block-title {
  color: #ffffff;
}

.about-row:hover .about-block-desc {
  color: #e2e8f0;
}

/* 3. Image background macro interaction zoom */
.about-row:hover .about-img {
  transform: scale(1.04);
}

/* ==========================================================================
   RESPONSIVE LAYOUT
   ========================================================================== */
@media (max-width: 991px) {
  .about-row {
    flex-direction: column !important;
    gap: 0;
  }

  .about-image-block {
    width: 100%;
    height: 300px;
  }

  .about-text-block {
    width: 90%;
    margin: -40px auto 0 auto !important; /* Stacked layout on tablets */
    padding: 40px 30px;
  }

  .about-row:hover .about-text-block {
    transform: translateY(-5px); /* Subtle lift on mobile frames */
  }
}

/* ==========================================================================
   TYPE OF ESTIMATES — INFINITE SLIDER
   ========================================================================== */

.estimates-section {
  width: 100%;
  padding: 90px 0 100px;
  background-color: #ffffff;
  overflow: hidden;
}

.estimates-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 4%;
}

.estimates-title {
  font-size: 42px;
  font-weight: 800;
  color: #000c24;
  letter-spacing: -0.5px;
  display: inline-block;
}

.estimates-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #43708a;
  margin: 14px auto 0;
  border-radius: 2px;
}

.estimates-slider-wrapper {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.estimates-slider-wrapper:hover .estimates-track {
  animation-play-state: paused;
}

/* 
   Card width = 380px, gap = 32px
   One set of 4 cards = (380 + 32) x 4 = 1648px
   translateX = -1648px = exactly one full set
   This prevents any gap or flicker at loop point
*/
.estimates-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 20px 0 30px;
  animation: estimatesScroll 22s linear infinite;
  will-change: transform;
}

.estimate-card {
  flex: 0 0 380px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 12, 36, 0.07);
  overflow: hidden;
  border: 1px solid #eef2f6;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.estimate-card:hover {
  transform: translateY(-10px);
  background-color: #000c24;
  border-color: #000c24;
  box-shadow: 0 24px 55px rgba(0, 12, 36, 0.22);
}

.estimate-img-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.estimate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.estimate-card:hover .estimate-img {
  transform: scale(1.06);
}

.estimate-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000c24;
  padding: 24px 28px 10px;
  letter-spacing: -0.2px;
  transition: color 0.35s ease;
}

.estimate-card:hover .estimate-card-title {
  color: #ffffff;
}

.estimate-card-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #556070;
  padding: 0 28px 28px;
  transition: color 0.35s ease;
}

.estimate-card:hover .estimate-card-desc {
  color: #c8d8e4;
}

/* 
   Exact pixel value = (380 + 32) x 4 = 1648px
   No % used — 100% accurate, zero flicker
*/
@keyframes estimatesScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1648px);
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .estimate-card {
    flex: 0 0 320px;
  }
  .estimates-title {
    font-size: 34px;
  }
  /* (320 + 32) x 4 = 1408px */
  @keyframes estimatesScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1408px);
    }
  }
}

@media (max-width: 768px) {
  .estimates-section {
    padding: 70px 0 80px;
  }
  .estimates-title {
    font-size: 28px;
  }
  .estimate-card {
    flex: 0 0 280px;
  }
  .estimate-img-wrap {
    height: 190px;
  }
  .estimate-card-title {
    font-size: 17px;
    padding: 20px 22px 8px;
  }
  .estimate-card-desc {
    font-size: 13px;
    padding: 0 22px 22px;
  }
  /* (280 + 32) x 4 = 1248px */
  @keyframes estimatesScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1248px);
    }
  }
}

@media (max-width: 480px) {
  .estimate-card {
    flex: 0 0 260px;
  }
  .estimates-title {
    font-size: 24px;
  }
  /* (260 + 32) x 4 = 1168px */
  @keyframes estimatesScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1168px);
    }
  }
}

/* ==========================================================================
   APPROACH & SERVICES SECTION
   ========================================================================== */

.approach-section {
  width: 100%;
  min-height: 500px;
  background-image: url("../images/banner-2.jpg.jpeg"); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 4%;
}

/* Dark navy overlay on top of bg image */
.approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 12, 36, 0.72);
  z-index: 0;
}

/* Two cards row */
.approach-container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* Individual card — glassmorphism border style */
.approach-card {
  flex: 1;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 48px 44px;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.05);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.approach-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Card heading */
.approach-card-title {
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 32px;
  letter-spacing: -0.3px;
}

/* Two-column bullet list inside card */
.approach-lists {
  display: flex;
  gap: 32px;
}

.approach-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approach-list li {
  font-size: 15px;
  font-weight: 400;
  color: #e2e8f0;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

/* Custom bullet dot */
.approach-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #43708a;
  font-size: 16px;
  line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .approach-card-title {
    font-size: 26px;
  }
  .approach-card {
    padding: 40px 32px;
  }
}

@media (max-width: 768px) {
  .approach-container {
    flex-direction: column;
    gap: 28px;
  }

  .approach-card-title {
    font-size: 22px;
  }
  .approach-card {
    padding: 32px 24px;
  }
  .approach-list li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .approach-lists {
    flex-direction: column;
    gap: 16px;
  }

  .approach-section {
    padding: 60px 4%;
  }
}

/* ==========================================================================
   CTA — 3-STEP SOLUTION SECTION
   ========================================================================== */

.cta-section {
  width: 100%;
  padding: 60px 4%;
  background-color: #ffffff;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #000c24;
  border-radius: 20px;
  padding: 55px 60px;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.cta-left {
  flex: 1.2;
}

.cta-main-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.cta-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #c8d8e4;
}

/* VERTICAL DIVIDER */
.cta-divider {
  width: 1px;
  height: 140px;
  background-color: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* RIGHT */
.cta-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.cta-sub-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.cta-call-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: #ffffff;
  color: #000c24;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 6px;
  border: 2px solid #ffffff;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.cta-call-btn:hover {
  background-color: transparent;
  color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 45px 36px;
    gap: 36px;
  }

  .cta-divider {
    width: 80px;
    height: 1px;
  }

  .cta-main-title {
    font-size: 22px;
  }
  .cta-sub-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 40px 4%;
  }
  .cta-container {
    padding: 36px 24px;
  }
  .cta-main-title {
    font-size: 20px;
  }
  .cta-sub-title {
    font-size: 20px;
  }
}

/* ==========================================================================
   3-STEP SECTION
   ========================================================================== */

.steps-section {
  width: 100%;
  padding: 80px 4%;
  background-color: #f3f4f6;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* Card */
.step-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.1);
}

/* Icon circle */
.step-icon-wrap {
  width: 90px;
  height: 90px;
  background-color: #000c24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.step-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Title */
.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #000c24;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

/* Description */
.step-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #556070;
  flex: 1;
}

/* Contact button — only on middle card */
.step-contact-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 44px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: 2px solid #000c24;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.step-contact-btn:hover {
  background-color: transparent;
  color: #000c24;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .steps-container {
    flex-direction: column;
    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .steps-section {
    padding: 60px 4%;
  }
  .step-card {
    padding: 36px 28px;
  }
  .step-title {
    font-size: 20px;
  }
  .step-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
   WHAT WE OFFER SECTION
   ========================================================================== */

.offer-section {
  width: 100%;
  padding: 90px 4%;
  background-color: #ffffff;
}

.offer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT — Image */
.offer-img-box {
  flex: 1.1;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.offer-img-box:hover .offer-img {
  transform: scale(1.03);
}

/* RIGHT — Content */
.offer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offer-title {
  font-size: 38px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.offer-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}

/* Checklist */
.offer-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-list-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Dark navy circle with checkmark */
.offer-check-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background-color: #000c24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-check-icon svg {
  width: 20px;
  height: 20px;
}

.offer-list-label {
  font-size: 18px;
  font-weight: 700;
  color: #000c24;
  letter-spacing: -0.2px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .offer-container {
    gap: 50px;
  }
  .offer-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .offer-container {
    flex-direction: column;
    gap: 40px;
  }

  .offer-img-box {
    width: 100%;
  }
  .offer-title {
    font-size: 28px;
  }
  .offer-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .offer-section {
    padding: 60px 4%;
  }
  .offer-title {
    font-size: 24px;
  }
  .offer-list-label {
    font-size: 16px;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
  width: 100%;
  padding: 20px 4% 90px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(
      30deg,
      transparent 47%,
      #e9edf2 48%,
      #e9edf2 50%,
      transparent 51%
    ),
    linear-gradient(
      150deg,
      transparent 47%,
      #e9edf2 48%,
      #e9edf2 50%,
      transparent 51%
    ),
    linear-gradient(
      90deg,
      transparent 47%,
      #e9edf2 48%,
      #e9edf2 50%,
      transparent 51%
    );
  background-size: 220px 130px;
  background-position:
    -40px 20px,
    -40px 20px,
    -40px 20px;
  pointer-events: none;
}

.testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: #090b10;
  text-align: center;
  margin-bottom: 42px;
  letter-spacing: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.testimonial-card {
  min-height: 300px;
  background-color: #000c24;
  border-radius: 8px;
  padding: 42px 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-shadow: 0 16px 34px rgba(0, 12, 36, 0.12);
}

.testimonial-text {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.8;
  color: #ffffff;
  max-width: 430px;
}

.testimonial-name {
  font-size: 17px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .testimonials-grid {
    gap: 24px;
  }

  .testimonial-card {
    padding: 36px 24px 30px;
  }

  .testimonial-text {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  .testimonials-section {
    padding: 10px 4% 70px;
  }

  .testimonials-title {
    font-size: 36px;
    margin-bottom: 34px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-section {
    padding: 0 4% 60px;
  }

  .testimonials-title {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 30px 22px 26px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .testimonial-name {
    font-size: 16px;
    margin-top: 24px;
  }
}

.faq-section {
  width: 100%;
  min-height: 760px;
  padding: 110px 20px;
  background-image: url("../images/pattern1.jpg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.faq-container {
  max-width: 1140px;
  margin: 0 auto;
}

.faq-container h2 {
  margin: 0 0 70px;
  text-align: center;
  font-size: 54px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-box {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 12, 27, 0.72);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  min-height: 104px;
  padding: 28px 36px;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  text-align: left;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: #ffffff;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #111322;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 9px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 9px;
}

.faq-item.active .faq-icon {
  background: #8d8d8d;
}

.faq-item.active .faq-icon::after {
  display: none;
}

.faq-answer {
  display: none;
  padding: 50px 36px 58px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  max-width: 1060px;
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.8;
  font-weight: 400;
}

/* Tablet */
@media (max-width: 991px) {
  .faq-section {
    min-height: auto;
    padding: 85px 18px;
  }

  .faq-container h2 {
    margin-bottom: 50px;
    font-size: 40px;
  }

  .faq-question {
    min-height: 92px;
    padding: 24px 28px;
    font-size: 23px;
  }

  .faq-answer {
    padding: 36px 28px 44px;
  }

  .faq-answer p {
    font-size: 19px;
    line-height: 1.7;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .faq-section {
    padding: 65px 15px;
    background-position: center;
  }

  .faq-container h2 {
    margin-bottom: 35px;
    font-size: 30px;
  }

  .faq-question {
    min-height: 78px;
    padding: 20px 18px;
    gap: 16px;
    font-size: 18px;
  }

  .faq-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
  }

  .faq-answer {
    padding: 26px 18px 34px;
  }

  .faq-answer p {
    font-size: 16px;
    line-height: 1.7;
  }
}

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 22, 0.35);
  z-index: 1;
}

.faq-container {
  position: relative;
  z-index: 2;
}

.faq-box {
  backdrop-filter: blur(2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.faq-question {
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.035);
}

.faq-answer {
  animation: faqFade 0.3s ease;
}

@keyframes faqFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   SOFTWARES WE USE SECTION
   Yeh CSS apni style.css ke end mein paste karo.
   ========================================================================== */

/* --- Section Wrapper --- */
.softwares-section {
  background-color: #f3f4f6; /* Image jaise light grey background */
  padding: 60px 0 50px;
  overflow: hidden;
}

/* --- Heading Container --- */
.softwares-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4%;
  text-align: center;
  margin-bottom: 40px;
}

/* --- Section Title --- */
.softwares-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark); /* #000c24 — tumhari existing variable */
  letter-spacing: -0.5px;
}

/* --- Carousel Outer Wrapper (clips overflow) --- */
.softwares-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;

  /* Left & right fade-out edges — premium look */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* --- Track: holds all logos in a row --- */
/* 
   Logo item width: 200px  |  Gap: 40px  |  Total items: 10 (5 original + 5 duplicate)
   Track width = (200 + 40) * 10 = 2400px
*/
.softwares-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: calc((200px + 40px) * 10); /* (logoWidth + gap) * totalItems */
  animation: softwareScroll 22s linear infinite;
}

/* --- Individual Logo Box --- */
.software-logo-item {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.software-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* --- Logo Image --- */
.software-logo-item img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(20%); /* Slight greyscale — professional look */
  transition: filter 0.3s ease;
}

.software-logo-item:hover img {
  filter: grayscale(0%); /* Full colour on hover */
}

/* --- Pause on hover --- */
.softwares-carousel:hover .softwares-track {
  animation-play-state: paused;
}

/* --- Infinite Scroll Keyframe ---
   Moves exactly half the total track width (5 logos), then instantly resets.
   This creates a seamless loop because duplicate set takes over visually.
*/
@keyframes softwareScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-1 * (200px + 40px) * 5)
    ); /* Half of total track */
  }
}

/* ==========================================================================
   MEDIA QUERIES — RESPONSIVE
   ========================================================================== */

/* --- Tablet (max 991px) --- */
@media (max-width: 991px) {
  .softwares-section {
    padding: 50px 0 40px;
  }

  .softwares-title {
    font-size: 26px;
  }

  .softwares-container {
    margin-bottom: 30px;
  }

  /* Logo items thoda chota */
  .software-logo-item {
    width: 160px;
    padding: 14px 16px;
  }

  .software-logo-item img {
    max-height: 50px;
  }

  /* Track width recalculate for smaller logos */
  .softwares-track {
    gap: 28px;
    width: calc((160px + 28px) * 10);
  }

  @keyframes softwareScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-1 * (160px + 28px) * 5));
    }
  }
}

/* --- Mobile (max 600px) --- */
@media (max-width: 600px) {
  .softwares-section {
    padding: 40px 0 32px;
  }

  .softwares-title {
    font-size: 22px;
  }

  .softwares-container {
    margin-bottom: 24px;
  }

  /* Mobile pe aur chota */
  .software-logo-item {
    width: 130px;
    padding: 12px 14px;
  }

  .software-logo-item img {
    max-height: 40px;
  }

  .softwares-track {
    gap: 20px;
    width: calc((130px + 20px) * 10);
  }

  @keyframes softwareScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-1 * (130px + 20px) * 5));
    }
  }
}

/* ==========================================================================
   SITE FOOTER
   Yeh CSS apni style.css ke bilkul end mein paste karo.
   ========================================================================== */

/* --- Outer Footer Shell --- */
.site-footer {
  background-color: #000d1f; /* Dark navy — screenshot jaisa */
  color: #c8d6e5;
  font-size: 15px;
  line-height: 1.7;
}

/* --- Main Grid Row (4 columns) --- */
.footer-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px 5% 55px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* ---- COL 1: Brand / Logo ---- */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 8px;
  padding: 10px; /* 👈 circle ke liye space */
  border-radius: 50%; /* 👈 circle shape */
  border: 1px solid rgba(67, 112, 138, 0.25); /* 👈 light theme outline */
  transition: all 0.3s ease;
}

.footer-logo-link:hover {
  border-color: rgba(67, 112, 138, 0.7); /* 👈 hover pe thoda bright */
  background-color: rgba(67, 112, 138, 0.08); /* 👈 subtle fill */
  box-shadow: 0 0 16px rgba(67, 112, 138, 0.2); /* 👈 soft glow */
  transform: scale(1.04);
}

.footer-logo {
  height: 200px; /* Bada kiya — properly visible hoga */
  width: auto;
  max-width: 220px;
  display: block;
  filter: brightness(0) invert(1); /* Logo white kar do dark bg pe */
}

.footer-about {
  color: #8fa8c0;
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
  margin-top: 0;
}

/* ---- Column Headings ---- */
.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 12px;
}

/* Heading ke neeche ek choti blue underline */
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background-color: #43708a; /* --hover-blue */
  border-radius: 2px;
}

/* ---- Links List (Quick Links & Services) ---- */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links li a {
  color: #8fa8c0;
  font-size: 14.5px;
  font-weight: 400;
  display: flex; /* flex: full width, ek line mein */
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap; /* Text wrap na ho */
}

/* Arrow indicator on hover */
.footer-links li a::before {
  content: "›";
  font-size: 18px;
  line-height: 1;
  color: #43708a;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  background-color: rgba(67, 112, 138, 0.12);
  border-left-color: #43708a;
  padding-left: 16px;
}

.footer-links li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Contact Info Items ---- */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: #8fa8c0;
  font-size: 14px;
  transition: color 0.25s ease; /* Address ka bhi color change hoga */
  cursor: default;
}

/* Address text hover — poora item hover pe white */
.footer-contact-item:hover {
  color: #ffffff;
}

.footer-contact-item:hover .footer-contact-icon {
  background-color: rgba(67, 112, 138, 0.35);
  color: #7ab2cf;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: rgba(67, 112, 138, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #43708a;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-item a {
  color: #8fa8c0;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

/* ---- Social Buttons ---- */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8fa8c0;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-btn svg {
  width: 17px;
  height: 17px;
  transition: color 0.25s ease;
}

/* Facebook — #1877F2 blue */
.social-btn.facebook:hover {
  background-color: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

/* Instagram — gradient purple to orange */
.social-btn.instagram:hover {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(214, 36, 159, 0.4);
}

/* X (Twitter) — black background, white X */
.social-btn.twitter:hover {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.social-btn.linkedin:hover {
  background-color: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.4);
}

/* ---- Divider Line ---- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 20px 5%;
}

.footer-bottom p {
  font-size: 13.5px;
  color: #6b84a0;
}

/* Developed by link */
.footer-dev-link {
  color: #43708a;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-dev-link:hover {
  color: #7ab2cf;
}

/* ==========================================================================
   MEDIA QUERIES — RESPONSIVE
   ========================================================================== */

/* --- Large Tablet (max 1100px): 2 columns --- */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 55px 5% 45px;
  }

  .footer-about {
    max-width: 100%;
  }
}

/* --- Small Tablet (max 768px): 2 columns, tighter --- */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 5% 38px;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .footer-logo {
    height: 80px;
  }
}

/* --- Mobile (max 540px): single column stack --- */
@media (max-width: 540px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 42px 6% 34px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo-link {
    margin: 0 auto 18px;
  }

  .footer-about {
    margin: 0 auto;
    max-width: 320px;
  }

  /* Headings underline centre pe */
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-heading {
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links li a {
    border-left: none;
    border-bottom: 1px solid transparent;
  }

  .footer-links li a:hover {
    border-left: none;
    border-bottom-color: #43708a;
    background-color: transparent;
    padding-left: 14px;
  }

  .footer-contact-item {
    justify-content: flex-start;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 12.5px;
  }
}

/* ==========================================================================
   NAVBAR RESPONSIVE — MEDIA QUERIES
   ==========================================================================
   KAHAN PASTE KARO:
   Apni style.css kholo — Ctrl+End se bilkul END pe jao
   aur yeh poora code wahan paste karo.
   ========================================================================== */

/* ---- Hamburger Button ---- */
.hamburger {
  display: none; /* Desktop pe hidden */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s ease;
  z-index: 1100;
}

.hamburger:hover {
  background-color: #f3f6f9;
}

/* Teenon dashes */
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: #000c24;
  border-radius: 4px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* X shape — jab menu open ho */
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   TABLET — 991px tak
   ========================================================================== */
@media (max-width: 991px) {
  /* CALL NOW button chhupa do tablet pe — space ke liye */
  .nav-cta {
    display: none;
  }

  /* Hamburger dikhao */
  .hamburger {
    display: flex;
  }

  /* Nav links — default mein chhupa, slide down karo open hone pe */
  .navbar {
    position: absolute;
    top: 100%; /* Header ke bilkul neeche */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      padding 0.3s ease;
    z-index: 999;
  }

  /* Open state */
  .navbar.nav-open {
    max-height: 600px; /* Itna kaafi hai saare links ke liye */
    padding: 12px 0 20px;
  }

  /* Links vertical stack */
  .nav-links {
    flex-direction: column;
    gap: 2px;
    padding: 0 16px;
  }

  .nav-links .nav-item {
    display: block;
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 15px;
  }

  /* Dropdown mobile mein */
  .dropdown-menu {
    position: static; /* Absolute se nikalo */
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background-color: #f8fafc;
    border-radius: 10px;
    padding: 6px 0 6px 12px;
    margin: 4px 0 4px 16px;
    display: none; /* Default chhupa */
  }

  /* Services hover pe dropdown open */
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
    transform: none;
  }

  .dropdown-menu li a {
    font-size: 13.5px;
    padding: 10px 14px;
  }
}

/* ==========================================================================
   MOBILE — 600px tak
   ========================================================================== */
@media (max-width: 600px) {
  .nav-container {
    padding: 14px 5%;
  }

  .logo img {
    height: 44px;
  }

  .nav-links .nav-item {
    font-size: 14px;
    padding: 11px 16px;
  }

  .hamburger span {
    width: 22px;
  }
}

/* ========================================
   PAGE HERO BANNER (Contact, About, etc.)
   ======================================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 20, 45, 0.82) 40%,
    rgba(5, 20, 45, 0.45) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .page-hero {
    height: 160px;
  }
  .page-hero-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 130px;
  }
  .page-hero-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   CONTACT SECTION
   style.css ke END mein paste karo
   ========================================================================== */

.contact-section {
  background-color: #ffffff;
  padding: 80px 5%;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

/* ---- LEFT INFO CARD ---- */
.contact-info-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f6;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease;
}

.contact-info-card:hover {
  box-shadow: 0 12px 40px rgba(0, 12, 36, 0.13);
  transform: translateY(-5px);
  border-color: #c7d8e4;
}

.contact-heading {
  font-size: 36px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 14px;
}

.contact-subtext {
  font-size: 14.5px;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Info Items */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  cursor: default;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: #000c24;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item:hover .contact-info-icon {
  background-color: #43708a;
  transform: scale(1.08);
}

.contact-info-item:hover .contact-info-text strong {
  color: #43708a;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-text strong {
  font-size: 15px;
  font-weight: 700;
  color: #000c24;
  transition: color 0.25s ease;
}

.contact-info-text span {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.6;
}

/* ---- RIGHT FORM ---- */
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background-color: #f3f4f6;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-size: 14.5px;
  color: #000c24;
  outline: none;
  transition: all 0.25s ease;
  box-sizing: border-box;
  font-family: inherit;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  background-color: #ffffff;
  border-color: #43708a;
  box-shadow: 0 0 0 3px rgba(67, 112, 138, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* Submit Button — improved */
.form-submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #000c24 0%, #1a2f50 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #43708a 0%, #2a5570 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-submit-btn:hover::before {
  opacity: 1;
}

.form-submit-btn:hover {
  box-shadow: 0 8px 24px rgba(67, 112, 138, 0.35);
  transform: translateY(-2px);
}

.form-submit-btn span {
  position: relative;
  z-index: 1;
}

.form-submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

/* Success / Error Messages */
.form-success-msg {
  background-color: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-error-msg {
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-info-card {
    padding: 32px 28px;
  }
  .contact-heading {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 5%;
  }
  .contact-info-card {
    padding: 26px 20px;
  }
  .contact-heading {
    font-size: 24px;
  }
  .form-input {
    padding: 12px 14px;
  }
}

/* MAP SECTION */
.map-section {
  width: 100%;
  padding: 0 5% 80px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.map-wrapper {
  max-width: 1200px; /* contact section jaisi same max-width */
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden; /* border radius iframe pe apply hoga */
  box-shadow: 0 12px 40px rgba(0, 12, 36, 0.12);
  border: 1px solid #eef2f6;
}

.contact-map {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .map-section {
    padding: 0 4% 60px;
  }
  .contact-map {
    height: 320px;
  }
  .map-wrapper {
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .map-section {
    padding: 0 5% 50px;
  }
  .contact-map {
    height: 250px;
  }
  .map-wrapper {
    border-radius: 10px;
  }
}

/* ==========================================================================
   TAKEOFF ESTIMATES SECTION
   style.css ke END mein paste karo
   ========================================================================== */

.takeoff-section {
  background-color: #000c24;
  padding: 70px 5%;
}

.takeoff-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 5 column grid */
.takeoff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Card */
.takeoff-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}

.takeoff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Circle Icon */
.takeoff-icon {
  width: 80px;
  height: 80px;
  background-color: #000c24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.takeoff-card:hover .takeoff-icon {
  background-color: #43708a;
}

.takeoff-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Title */
.takeoff-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #000c24;
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .takeoff-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .takeoff-section {
    padding: 50px 5%;
  }
  .takeoff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .takeoff-card {
    padding: 24px 16px 20px;
  }
  .takeoff-icon {
    width: 64px;
    height: 64px;
  }
  .takeoff-icon img {
    width: 30px;
    height: 30px;
  }
  .takeoff-card h4 {
    font-size: 13px;
  }
}

/* ==========================================================================
   COMPLETE ESTIMATES SECTION
   style.css ke END mein paste karo
   ========================================================================== */

.complete-est-section {
  background-color: #f5f5f0;
  padding: 70px 5%;
}

.complete-est-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 2 col: cards | image */
.complete-est-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
}

/* Cards — 2 col inner grid */
.complete-est-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Individual Card */
.complete-est-card {
  background: #ffffff;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #f0f0f0;
  transition: all 0.25s ease;
  cursor: default;
}

/* Rounded corners — outer edges only */
.complete-est-card:nth-child(1) {
  border-radius: 12px 0 0 0;
}
.complete-est-card:nth-child(2) {
  border-radius: 0 12px 0 0;
}
.complete-est-card:nth-child(5) {
  border-radius: 0 0 0 12px;
}
.complete-est-card:nth-child(6) {
  border-radius: 0 0 12px 0;
}

.complete-est-card:hover {
  background-color: #f8fafc;
  box-shadow: inset 0 0 0 1.5px #43708a;
  z-index: 1;
}

/* Icon */
.complete-est-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #000c24;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.complete-est-card:hover .complete-est-icon {
  background-color: #43708a;
}

.complete-est-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Title */
.complete-est-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #000c24;
  line-height: 1.35;
  margin: 0;
  transition: color 0.25s ease;
}

.complete-est-card:hover h4 {
  color: #43708a;
}

/* RIGHT IMAGE */
.complete-est-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 12, 36, 0.15);
  align-self: stretch;
}

.complete-est-img img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .complete-est-grid {
    grid-template-columns: 1fr;
  }
  .complete-est-img {
    order: -1;
  }
  .complete-est-img img {
    min-height: 260px;
    height: 260px;
  }
}

@media (max-width: 540px) {
  .complete-est-section {
    padding: 50px 5%;
  }
  .complete-est-cards {
    grid-template-columns: 1fr;
  }
  .complete-est-card:nth-child(1) {
    border-radius: 12px 12px 0 0;
  }
  .complete-est-card:nth-child(2) {
    border-radius: 0;
  }
  .complete-est-card:nth-child(5) {
    border-radius: 0;
  }
  .complete-est-card:nth-child(6) {
    border-radius: 0 0 12px 12px;
  }
  .complete-est-card {
    padding: 18px 20px;
  }
}

/* ==========================================================================
   ABOUT INTRO SECTION
   style.css ke END mein paste karo
   ========================================================================== */

.about-intro-section {
  background-color: #ffffff;
  padding: 90px 5%;
  overflow: hidden;
}

.about-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- LEFT TEXT ---- */
.about-intro-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #43708a;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}

.about-intro-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background-color: #43708a;
}

.about-intro-title {
  font-size: 40px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-intro-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.85;
  margin-bottom: 18px;
  text-align: justify;
}

.about-intro-highlight {
  color: #43708a;
  font-weight: 600;
}

/* Stats Row */
.about-intro-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #eef2f6;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat strong {
  font-size: 32px;
  font-weight: 800;
  color: #000c24;
  line-height: 1;
}

.about-stat span {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

/* ---- RIGHT IMAGE ---- */
.about-intro-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Circle image */
.about-intro-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 12, 36, 0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.about-intro-circle:hover {
  transform: scale(1.03);
}

.about-intro-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Background ring decoration */
.about-intro-circle::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(67, 112, 138, 0.3);
  z-index: -1;
  animation: spinRing 18s linear infinite;
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Floating badge */
.about-intro-float-badge {
  position: absolute;
  bottom: 20px;
  left: -10px;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0, 12, 36, 0.12);
  border: 1px solid #eef2f6;
  z-index: 2;
  animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.float-icon {
  font-size: 26px;
}

.about-intro-float-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-intro-float-badge strong {
  font-size: 13px;
  font-weight: 700;
  color: #000c24;
}

.about-intro-float-badge span {
  font-size: 11.5px;
  color: #9ca3af;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .about-intro-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-intro-badge {
    padding-left: 0;
  }

  .about-intro-badge::before {
    display: none;
  }

  .about-intro-desc {
    text-align: left;
  }

  .about-intro-stats {
    justify-content: center;
  }

  .about-intro-circle {
    width: 320px;
    height: 320px;
  }

  .about-intro-float-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .about-intro-section {
    padding: 60px 5%;
  }

  .about-intro-title {
    font-size: 28px;
  }

  .about-intro-circle {
    width: 260px;
    height: 260px;
  }

  .about-intro-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-stat strong {
    font-size: 26px;
  }
}

/* ==========================================================================
   CTA BANNER SECTION
   ========================================================================== */
.cta-banner {
  background-color: #000c24;
  padding: 50px 5%;
}

.cta-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  max-width: 600px;
}

.cta-banner-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 16px 36px;
  background-color: transparent;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-banner-btn:hover {
  background-color: #ffffff;
  color: #000c24;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-banner-container {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
  .cta-banner-title {
    font-size: 20px;
  }
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   style.css ke END mein paste karo
   ========================================================================== */

.why-section {
  background-color: #ffffff;
  padding: 90px 5%;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- HEADER ---- */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #43708a;
  margin-bottom: 14px;
}

.why-title {
  font-size: 42px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

.why-highlight {
  color: #43708a;
  font-weight: 600;
}

/* ---- MAIN GRID ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 24px;
  align-items: center;
}

/* ---- CARDS COLUMN ---- */
.why-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-card {
  background: #f8fafc;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
  cursor: default;
}

.why-card:first-child {
  border-radius: 12px 12px 0 0;
  border-bottom: none;
}

.why-card:last-child {
  border-radius: 0 0 12px 12px;
}

.why-card:hover {
  background-color: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 12, 36, 0.08);
  transform: translateX(0) scale(1.01);
  z-index: 1;
  border-color: #c7d8e4;
}

/* Icon */
.why-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background-color: #000c24;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.why-card:hover .why-icon {
  background-color: #43708a;
}

.why-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000c24;
  margin: 0;
  transition: color 0.3s ease;
}

.why-card:hover h4 {
  color: #43708a;
}

/* ---- CENTER IMAGE + BUTTON ---- */
.why-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.why-center-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 12, 36, 0.15);
  width: 100%;
}

.why-center-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.why-center-img:hover img {
  transform: scale(1.04);
}

/* Sample Estimate Button */
.why-btn {
  display: inline-block;
  padding: 16px 40px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-btn:hover {
  background-color: #43708a;
  box-shadow: 0 8px 24px rgba(67, 112, 138, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .why-center {
    grid-column: 1 / -1;
    order: -1;
  }

  .why-center-img img {
    height: 260px;
  }

  .why-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 60px 5%;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-center {
    grid-column: 1;
  }
  .why-center-img img {
    height: 220px;
  }
  .why-title {
    font-size: 26px;
  }
  .why-card {
    padding: 18px 20px;
  }
}

/* ==========================================================================
   WHY HIRE SECTION — SERVICES PAGE
   ========================================================================== */
.why-hire-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.why-hire-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ---- LEFT TEXT ---- */
.why-hire-text {
  flex: 1;
  max-width: 520px;
}

.why-hire-title {
  font-size: 36px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.why-hire-desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.85;
  text-align: justify;
}

/* ---- RIGHT COLLAGE ---- */
.why-hire-collage {
  flex: 1;
  position: relative;
  height: 480px;
}

.collage-img {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 12, 36, 0.12);
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.collage-img:hover img {
  transform: scale(1.04);
}

/* Top image — choti, upar left mein */
.collage-top {
  width: 200px;
  height: 160px;
  top: 0;
  left: 0;
  z-index: 3;
}

/* Middle image — badi, center-right mein */
.collage-mid {
  width: 340px;
  height: 310px;
  top: 40px;
  right: 0;
  z-index: 2;
}

/* Bottom image — medium, niche left mein */
.collage-bot {
  width: 240px;
  height: 195px;
  bottom: 0;
  left: 30px;
  z-index: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .why-hire-container {
    flex-direction: column;
    gap: 50px;
  }

  .why-hire-text {
    max-width: 100%;
    text-align: center;
  }

  .why-hire-desc {
    text-align: left;
  }

  .why-hire-collage {
    width: 100%;
    height: 380px;
  }

  .collage-top {
    width: 160px;
    height: 130px;
  }
  .collage-mid {
    width: 270px;
    height: 250px;
    top: 30px;
  }
  .collage-bot {
    width: 200px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .why-hire-section {
    padding: 60px 5%;
  }

  .why-hire-title {
    font-size: 26px;
  }

  .why-hire-collage {
    height: 300px;
  }

  .collage-top {
    width: 130px;
    height: 105px;
  }
  .collage-mid {
    width: 210px;
    height: 200px;
    right: 0;
  }
  .collage-bot {
    width: 155px;
    height: 125px;
    left: 10px;
  }
}

/* ==========================================================================
   PROJECT COST ESTIMATING SECTION — SERVICES PAGE
   ========================================================================== */
.cost-process-section {
  padding: 90px 5%;
  background-color: #f9fafb;
}

.cost-process-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ---- LEFT COLLAGE ---- */
.cost-collage {
  flex: 1;
  position: relative;
  height: 500px;
  flex-shrink: 0;
}

.cost-img {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 12, 36, 0.12);
}

.cost-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cost-img:hover img {
  transform: scale(1.04);
}

/* Top-left — choti image */
.cost-img-top {
  width: 180px;
  height: 150px;
  top: 0;
  left: 0;
  z-index: 3;
}

/* Center — badi landscape image */
.cost-img-mid {
  width: 370px;
  height: 320px;
  top: 60px;
  left: 100px;
  z-index: 2;
}

/* Bottom-left — medium image */
.cost-img-bot {
  width: 260px;
  height: 200px;
  bottom: 0;
  left: 0;
  z-index: 1;
}

/* ---- RIGHT TEXT ---- */
.cost-process-text {
  flex: 1;
}

.cost-process-title {
  font-size: 36px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.cost-process-desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.85;
  text-align: justify;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .cost-process-container {
    flex-direction: column;
    gap: 50px;
  }

  .cost-process-text {
    text-align: center;
  }

  .cost-process-desc {
    text-align: left;
  }

  .cost-collage {
    width: 100%;
    height: 380px;
  }

  .cost-img-top {
    width: 150px;
    height: 120px;
  }
  .cost-img-mid {
    width: 290px;
    height: 250px;
    left: 80px;
    top: 50px;
  }
  .cost-img-bot {
    width: 210px;
    height: 165px;
  }
}

@media (max-width: 480px) {
  .cost-process-section {
    padding: 60px 5%;
  }

  .cost-process-title {
    font-size: 26px;
  }

  .cost-collage {
    height: 310px;
  }

  .cost-img-top {
    width: 120px;
    height: 95px;
  }
  .cost-img-mid {
    width: 220px;
    height: 195px;
    left: 60px;
    top: 35px;
  }
  .cost-img-bot {
    width: 165px;
    height: 130px;
  }
}

/* ==========================================================================
   SERVICES WE OFFER SECTION
   ========================================================================== */
.services-offer-section {
  background-color: #000c24;
  padding: 90px 5%;
}

.services-offer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-offer-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
}

/* 2x2 Grid */
.services-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Each Card */
.service-offer-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 32px 36px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-offer-card:hover {
  background-color: rgba(67, 112, 138, 0.18);
  border-color: #43708a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Number Box */
.service-offer-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: #000c24;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  transition: all 0.3s ease;
}

.service-offer-card:hover .service-offer-num {
  background-color: #43708a;
  border-color: #43708a;
}

/* Service Name */
.service-offer-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.service-offer-card:hover .service-offer-name {
  color: #a8c8d8;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 700px) {
  .services-offer-grid {
    grid-template-columns: 1fr;
  }

  .services-offer-title {
    font-size: 28px;
  }

  .service-offer-card {
    padding: 24px 24px;
  }

  .service-offer-name {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .services-offer-section {
    padding: 60px 5%;
  }
  .services-offer-title {
    font-size: 24px;
  }
}

/* ==========================================================================
   WHY HIRE + COST PROCESS — RESPONSIVE FIX
   ========================================================================== */

/* Tablet (max 900px) — collage choti karo */
@media (max-width: 900px) {
  /* WHY HIRE */
  .why-hire-container {
    flex-direction: column;
    gap: 40px;
  }

  .why-hire-text {
    max-width: 100%;
    text-align: center;
  }

  .why-hire-desc {
    text-align: left;
  }

  .why-hire-collage {
    width: 100%;
    height: 300px;
  }

  .collage-top {
    width: 140px;
    height: 110px;
  }
  .collage-mid {
    width: 260px;
    height: 230px;
    top: 30px;
  }
  .collage-bot {
    width: 180px;
    height: 145px;
  }

  /* COST PROCESS */
  .cost-process-container {
    flex-direction: column;
    gap: 40px;
  }

  .cost-process-text {
    text-align: center;
  }
  .cost-process-desc {
    text-align: left;
  }

  .cost-collage {
    width: 100%;
    height: 300px;
  }

  .cost-img-top {
    width: 140px;
    height: 110px;
  }
  .cost-img-mid {
    width: 260px;
    height: 220px;
    left: 70px;
    top: 40px;
  }
  .cost-img-bot {
    width: 180px;
    height: 145px;
  }
}

/* Mobile (max 600px) — collage bilkul hide */
@media (max-width: 600px) {
  /* WHY HIRE — collage hide */
  .why-hire-collage {
    display: none;
  }

  .why-hire-section {
    padding: 60px 5%;
  }

  .why-hire-title {
    font-size: 24px;
  }
  .why-hire-desc {
    font-size: 14px;
  }

  /* COST PROCESS — collage hide */
  .cost-collage {
    display: none;
  }

  .cost-process-section {
    padding: 60px 5%;
  }

  .cost-process-title {
    font-size: 24px;
  }
  .cost-process-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
   TRADES INTERNATIONAL SECTION
   ========================================================================== */
.trades-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.trades-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trades-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
}

/* 3-column grid */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.trade-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 16px rgba(0, 12, 36, 0.06);
  transition: all 0.35s ease;
  cursor: default;
}

.trade-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 12, 36, 0.13);
  border-color: #43708a;
}

/* Image */
.trade-card-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.trade-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  filter: brightness(0.95);
}

.trade-card:hover .trade-card-img img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* Card Body */
.trade-card-body {
  padding: 22px 24px 26px;
  position: relative;
}

/* Blue left accent line */
.trade-card-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background-color: #43708a;
  border-radius: 0 3px 3px 0;
  transition: height 0.3s ease;
}

.trade-card:hover .trade-card-body::before {
  height: 60%;
}

.trade-card-name {
  font-size: 16px;
  font-weight: 800;
  color: #000c24;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.trade-card:hover .trade-card-name {
  color: #43708a;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .trades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trades-title {
    font-size: 30px;
  }
}

@media (max-width: 550px) {
  .trades-section {
    padding: 60px 5%;
  }

  .trades-grid {
    grid-template-columns: 1fr;
  }

  .trades-title {
    font-size: 24px;
  }

  .trade-card-img {
    height: 200px;
  }
}

/* ==========================================================================
   TAKEOFF BENEFITS SECTION
   ========================================================================== */
.takeoff-benefits-section {
  padding: 90px 5%;
  background-color: #f0f2f5;
}

.takeoff-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.takeoff-benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 48px 36px 44px;
  text-align: center;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 20px rgba(0, 12, 36, 0.05);
  transition: all 0.35s ease;
}

.takeoff-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 12, 36, 0.1);
  border-color: #43708a;
}

/* Icon Circle */
.benefit-icon {
  width: 80px;
  height: 80px;
  background-color: #000c24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: background-color 0.3s ease;
}

.benefit-icon i {
  font-size: 28px;
  color: #ffffff;
}

.takeoff-benefit-card:hover .benefit-icon {
  background-color: #43708a;
}

/* Title */
.benefit-title {
  font-size: 20px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Description */
.benefit-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.85;
}

/* Inline link */
.benefit-link {
  color: #43708a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.benefit-link:hover {
  border-bottom-color: #43708a;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .takeoff-benefits-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .takeoff-benefits-section {
    padding: 60px 5%;
  }

  .takeoff-benefits-container {
    grid-template-columns: 1fr;
  }

  .benefit-title {
    font-size: 18px;
  }
  .benefit-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
   TAKEOFF INTRO SECTION
   ========================================================================== */
.takeoff-intro-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.takeoff-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ---- LEFT TEXT ---- */
.takeoff-intro-text {
  flex: 1;
}

.takeoff-intro-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.takeoff-intro-title {
  font-size: 38px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

/* Blue accent divider */
.takeoff-intro-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 24px;
}

.takeoff-intro-desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 32px;
  text-align: justify;
}

.takeoff-intro-link {
  color: #43708a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(67, 112, 138, 0.4);
  transition: border-color 0.2s ease;
}

.takeoff-intro-link:hover {
  border-bottom-color: #43708a;
}

/* CTA Button */
.takeoff-intro-btn {
  display: inline-block;
  padding: 13px 32px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.takeoff-intro-btn:hover {
  background-color: #43708a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 112, 138, 0.3);
}

/* ---- RIGHT IMAGE ---- */
.takeoff-intro-img-box {
  flex: 1;
  position: relative;
}

.takeoff-intro-img-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.12);
}

/* Floating badge */
.takeoff-intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: #000c24;
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 12, 36, 0.2);
}

.badge-num {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 11px;
  font-weight: 600;
  color: #43708a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .takeoff-intro-container {
    flex-direction: column;
    gap: 50px;
  }

  .takeoff-intro-title {
    font-size: 30px;
  }

  .takeoff-intro-img-box img {
    height: 340px;
  }

  .takeoff-intro-badge {
    bottom: -16px;
    left: 16px;
  }
}

@media (max-width: 550px) {
  .takeoff-intro-section {
    padding: 60px 5%;
  }

  .takeoff-intro-title {
    font-size: 24px;
  }

  .takeoff-intro-desc {
    font-size: 14px;
  }

  .takeoff-intro-img-box img {
    height: 260px;
  }

  .takeoff-intro-badge {
    padding: 12px 18px;
    bottom: -14px;
    left: 10px;
  }

  .badge-num {
    font-size: 22px;
  }
  .badge-text {
    font-size: 10px;
  }
}

/* ==========================================================================
   CONSTRUCTION TAKEOFF SECTION
   ========================================================================== */
.ctakeoff-section {
  padding: 90px 5%;
  background-color: #f0f2f5;
}

.ctakeoff-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ---- LEFT IMAGE ---- */
.ctakeoff-img-box {
  flex: 1;
  position: relative;
}

.ctakeoff-img-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.12);
  transition: transform 0.4s ease;
}

.ctakeoff-img-box:hover img {
  transform: scale(1.02);
}

/* ---- RIGHT TEXT ---- */
.ctakeoff-text {
  flex: 1;
}

.ctakeoff-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.ctakeoff-title {
  font-size: 38px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.ctakeoff-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 24px;
}

.ctakeoff-desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 32px;
  text-align: justify;
}

.ctakeoff-link {
  color: #43708a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(67, 112, 138, 0.4);
  transition: border-color 0.2s ease;
}

.ctakeoff-link:hover {
  border-bottom-color: #43708a;
}

.ctakeoff-btn {
  display: inline-block;
  padding: 13px 32px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.ctakeoff-btn:hover {
  background-color: #43708a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 112, 138, 0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .ctakeoff-container {
    flex-direction: column;
    gap: 40px;
  }

  .ctakeoff-title {
    font-size: 30px;
  }

  .ctakeoff-img-box img {
    height: 320px;
  }
}

@media (max-width: 550px) {
  .ctakeoff-section {
    padding: 60px 5%;
  }

  .ctakeoff-title {
    font-size: 24px;
  }

  .ctakeoff-desc {
    font-size: 14px;
  }

  .ctakeoff-img-box img {
    height: 240px;
  }
}

/* ==========================================================================
   OUTSOURCE ESTIMATING SECTION
   ========================================================================== */
.outsource-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.outsource-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ---- LEFT TEXT ---- */
.outsource-text {
  flex: 1;
}

.outsource-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.outsource-title {
  font-size: 38px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.outsource-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 24px;
}

.outsource-desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 32px;
  text-align: justify;
}

.outsource-link {
  color: #43708a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(67, 112, 138, 0.4);
  transition: border-color 0.2s ease;
}

.outsource-link:hover {
  border-bottom-color: #43708a;
}

.outsource-btn {
  display: inline-block;
  padding: 13px 32px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.outsource-btn:hover {
  background-color: #43708a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 112, 138, 0.3);
}

/* ---- RIGHT IMAGE ---- */
.outsource-img-box {
  flex: 1;
  position: relative;
}

.outsource-img-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.12);
  transition: transform 0.4s ease;
}

.outsource-img-box:hover img {
  transform: scale(1.02);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .outsource-container {
    flex-direction: column;
    gap: 40px;
  }

  .outsource-title {
    font-size: 30px;
  }

  .outsource-img-box img {
    height: 320px;
  }
}

@media (max-width: 550px) {
  .outsource-section {
    padding: 60px 5%;
  }

  .outsource-title {
    font-size: 24px;
  }

  .outsource-desc {
    font-size: 14px;
  }

  .outsource-img-box img {
    height: 240px;
  }
}

/* ==========================================================================
   DIFFERENCE SECTION — FULL BG IMAGE + OVERLAY
   ========================================================================== */
.difference-section {
  position: relative;
  padding: 100px 5%;
  background-image: url("../images/yello cap.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

/* Dark overlay */
.difference-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 12, 36, 0.72),
    rgba(0, 12, 36, 0.6)
  );
  z-index: 0;
}

.difference-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.difference-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.difference-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  margin-bottom: 40px;
  text-align: center;
}

.difference-link {
  color: #43708a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(67, 112, 138, 0.5);
  transition: border-color 0.2s ease;
}

.difference-link:hover {
  border-bottom-color: #43708a;
}

/* Button */
.difference-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.difference-btn:hover {
  background-color: #43708a;
  border-color: #43708a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .difference-section {
    padding: 80px 6%;
    background-attachment: scroll;
  }

  .difference-title {
    font-size: 28px;
  }

  .difference-desc {
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .difference-title {
    font-size: 22px;
  }

  .difference-btn {
    padding: 13px 28px;
    font-size: 12px;
  }
}

/* ==========================================================================
   WHY TAKEOFF SECTION
   ========================================================================== */
.why-takeoff-section {
  padding: 90px 5%;
  background-color: #f0f2f5;
}

.why-takeoff-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-takeoff-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* 2x2 Grid */
.why-takeoff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Card */
.why-takeoff-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px 36px;
  border: 1px solid #eef2f6;
  border-left: 4px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 12, 36, 0.05);
  transition: all 0.35s ease;
}

.why-takeoff-card:hover {
  border-left-color: #43708a;
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 12, 36, 0.1);
}

/* Icon */
.why-takeoff-icon {
  width: 52px;
  height: 52px;
  background-color: #000c24;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.why-takeoff-icon i {
  font-size: 20px;
  color: #ffffff;
}

.why-takeoff-card:hover .why-takeoff-icon {
  background-color: #43708a;
}

/* Title */
.why-takeoff-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 14px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.why-takeoff-card:hover .why-takeoff-card-title {
  color: #43708a;
}

/* Desc */
.why-takeoff-card-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.85;
  text-align: justify;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .why-takeoff-grid {
    grid-template-columns: 1fr;
  }

  .why-takeoff-title {
    font-size: 28px;
  }

  .why-takeoff-card {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .why-takeoff-section {
    padding: 60px 5%;
  }

  .why-takeoff-title {
    font-size: 22px;
  }

  .why-takeoff-card-title {
    font-size: 17px;
  }

  .why-takeoff-card-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
   MECHANICAL INTRO SECTION
   ========================================================================== */
.mech-intro-section {
  padding: 90px 5%;
  background-color: #f0f2f5;
}

.mech-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ---- LEFT TEXT ---- */
.mech-intro-text {
  flex: 1;
}

.mech-block {
  margin-bottom: 36px;
}

.mech-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.mech-title {
  font-size: 36px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.mech-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 20px;
}

.mech-subtitle {
  font-size: 26px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 16px;
  line-height: 1.3;
}

.mech-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 14px;
}

.mech-desc strong {
  color: #43708a;
  font-weight: 700;
}

/* Button */
.mech-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.mech-btn:hover {
  background-color: #43708a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 112, 138, 0.3);
}

/* ---- RIGHT IMAGE ---- */
.mech-intro-img-box {
  flex: 1;
  position: relative;
}

.mech-intro-img-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.12);
  transition: transform 0.4s ease;
}

.mech-intro-img-box:hover img {
  transform: scale(1.02);
}

/* Floating badge */
.mech-img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background-color: #000c24;
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 12, 36, 0.2);
}

.mech-img-badge i {
  font-size: 22px;
  color: #43708a;
}

.mech-img-badge span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .mech-intro-container {
    flex-direction: column;
    gap: 50px;
  }

  .mech-title {
    font-size: 28px;
  }
  .mech-subtitle {
    font-size: 22px;
  }

  .mech-intro-img-box img {
    height: 360px;
  }

  .mech-img-badge {
    bottom: -14px;
    right: 14px;
  }
}

@media (max-width: 550px) {
  .mech-intro-section {
    padding: 60px 5%;
  }

  .mech-title {
    font-size: 22px;
  }
  .mech-subtitle {
    font-size: 18px;
  }
  .mech-desc {
    font-size: 14px;
  }

  .mech-intro-img-box img {
    height: 260px;
  }

  .mech-img-badge {
    padding: 12px 16px;
    right: 10px;
  }
}

/* ==========================================================================
   WHY MECHANICAL SECTION
   ========================================================================== */
.why-mech-section {
  position: relative;
  padding: 90px 5%;
  background-image: url("../images/mechanical-3.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.why-mech-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 12, 36, 0.75),
    rgba(0, 12, 36, 0.65)
  );
  z-index: 0;
}

.why-mech-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.why-mech-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.why-mech-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  text-align: center;
}

.why-mech-desc strong {
  color: #ffffff;
  font-weight: 700;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .why-mech-section {
    padding: 70px 6%;
    background-attachment: scroll;
  }

  .why-mech-title {
    font-size: 26px;
  }
  .why-mech-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .why-mech-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   MECH SERVICES INCLUDED SECTION
   ========================================================================== */
.mech-included-section {
  padding: 90px 5%;
  background-color: #f0f2f5;
}

.mech-included-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ---- LEFT TEXT ---- */
.mech-included-text {
  flex: 1;
}

.mech-included-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.mech-included-title {
  font-size: 34px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.mech-included-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 18px;
}

.mech-included-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Checklist */
.mech-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.mech-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.5;
}

.mech-included-list li i {
  color: #43708a;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- RIGHT IMAGE ---- */
.mech-included-img-box {
  flex: 1;
  position: relative;
}

.mech-included-img-box img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.12);
  transition: transform 0.4s ease;
}

.mech-included-img-box:hover img {
  transform: scale(1.02);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .mech-included-container {
    flex-direction: column;
    gap: 40px;
  }

  .mech-included-title {
    font-size: 26px;
  }

  .mech-included-img-box img {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .mech-included-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mech-included-section {
    padding: 60px 5%;
  }

  .mech-included-title {
    font-size: 22px;
  }

  .mech-included-desc {
    font-size: 14px;
  }

  .mech-included-list li {
    font-size: 14px;
  }

  .mech-included-img-box img {
    height: 240px;
  }
}

/* ==========================================================================
   HOW MECHANICAL WORKS SECTION
   ========================================================================== */
.how-mech-section {
  position: relative;
  padding: 90px 5%;
  background-image: url("../images/mechanical-5.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.how-mech-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 12, 36, 0.75),
    rgba(0, 12, 36, 0.65)
  );
  z-index: 0;
}

.how-mech-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.how-mech-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.how-mech-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  text-align: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .how-mech-section {
    padding: 70px 6%;
    background-attachment: scroll;
  }
  .how-mech-title {
    font-size: 26px;
  }
  .how-mech-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .how-mech-title {
    font-size: 22px;
  }
}
/* ==========================================================================
   ACCURATE COST SECTION
   ========================================================================== */
.accurate-cost-section {
  padding: 90px 5%;
  background-color: #f0f2f5;
}

.accurate-cost-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ---- LEFT TEXT ---- */
.accurate-cost-text {
  flex: 1;
}

.accurate-cost-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.accurate-cost-title {
  font-size: 34px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.accurate-cost-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 22px;
}

.accurate-cost-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 16px;
}

/* Stats Row */
.accurate-cost-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background-color: #000c24;
  border-radius: 10px;
  padding: 20px 28px;
  margin: 28px 0 32px;
}

.accurate-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.accurate-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.accurate-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: #a0aec0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.accurate-stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Button */
.accurate-cost-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.accurate-cost-btn i {
  font-size: 14px;
}

.accurate-cost-btn:hover {
  background-color: #43708a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 112, 138, 0.3);
}

/* ---- RIGHT IMAGE ---- */
.accurate-cost-img-box {
  flex: 1;
  position: relative;
}

.accurate-cost-img-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.12);
  transition: transform 0.4s ease;
}

.accurate-cost-img-box:hover img {
  transform: scale(1.02);
}

/* Floating badge */
.accurate-cost-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background-color: #000c24;
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 12, 36, 0.2);
}

.accurate-cost-badge i {
  font-size: 20px;
  color: #43708a;
}

.accurate-cost-badge span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .accurate-cost-container {
    flex-direction: column;
    gap: 50px;
  }

  .accurate-cost-title {
    font-size: 26px;
  }

  .accurate-cost-img-box img {
    height: 360px;
  }

  .accurate-cost-badge {
    bottom: -14px;
    right: 14px;
  }
}

@media (max-width: 550px) {
  .accurate-cost-section {
    padding: 60px 5%;
  }

  .accurate-cost-title {
    font-size: 22px;
  }

  .accurate-cost-desc {
    font-size: 14px;
  }

  .accurate-cost-stats {
    padding: 16px 16px;
  }

  .accurate-stat-num {
    font-size: 20px;
  }

  .accurate-cost-img-box img {
    height: 260px;
  }

  .accurate-cost-badge {
    padding: 12px 14px;
    right: 10px;
  }
}

/* ==========================================================================
   MECH CARDS SECTION — DARK BG
   ========================================================================== */
.mech-cards-section {
  position: relative;
  padding: 90px 5%;
  background-image: url("../images/pattern1.jpg.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.mech-cards-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 15, 0.88);
  z-index: 0;
}

.mech-cards-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.mech-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 48px 36px 44px;
  text-align: center;
  border: 1px solid #eef2f6;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.35s ease;
}

.mech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* Icon */
.mech-card-icon {
  width: 80px;
  height: 80px;
  background-color: #000c24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: background-color 0.3s ease;
}

.mech-card-icon i {
  font-size: 26px;
  color: #ffffff;
}

.mech-card:hover .mech-card-icon {
  background-color: #43708a;
}

/* Title */
.mech-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.35;
  margin-bottom: 16px;
}

/* Desc */
.mech-card-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.85;
  text-align: center;
}

.mech-card-link {
  color: #43708a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(67, 112, 138, 0.4);
  transition: border-color 0.2s ease;
}

.mech-card-link:hover {
  border-bottom-color: #43708a;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .mech-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .mech-cards-section {
    padding: 60px 5%;
    background-attachment: scroll;
  }

  .mech-cards-container {
    grid-template-columns: 1fr;
  }

  .mech-card {
    padding: 36px 24px;
  }

  .mech-card-title {
    font-size: 17px;
  }
  .mech-card-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
   MECH BENEFITS SECTION
   ========================================================================== */
.mech-benefits-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.mech-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mech-benefits-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
}

/* 4-column grid */
.mech-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Card */
.mech-benefit-card {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 32px 26px;
  border: 1px solid #eef2f6;
  border-top: 3px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 12, 36, 0.04);
  transition: all 0.35s ease;
}

.mech-benefit-card:hover {
  border-top-color: #43708a;
  background-color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 12, 36, 0.1);
}

/* Icon */
.mech-benefit-icon {
  width: 50px;
  height: 50px;
  background-color: #000c24;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background-color 0.3s ease;
}

.mech-benefit-icon i {
  font-size: 18px;
  color: #ffffff;
}

.mech-benefit-card:hover .mech-benefit-icon {
  background-color: #43708a;
}

/* Title */
.mech-benefit-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.mech-benefit-card:hover .mech-benefit-card-title {
  color: #43708a;
}

/* Desc */
.mech-benefit-card-desc {
  font-size: 14px;
  color: #556070;
  line-height: 1.8;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .mech-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .mech-benefits-section {
    padding: 60px 5%;
  }

  .mech-benefits-title {
    font-size: 24px;
  }

  .mech-benefits-grid {
    grid-template-columns: 1fr;
  }

  .mech-benefit-card-title {
    font-size: 16px;
  }
}
/* ==========================================================================
   MECH FAQ SECTION
   ========================================================================== */
.mech-faq-section {
  padding: 90px 5%;
  background-color: #f0f2f5;
}

.mech-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.mech-faq-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
}

/* FAQ List */
.mech-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Each Item */
.mech-faq-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 12, 36, 0.06);
}

/* Question Button */
.mech-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background-color: #000c24;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.mech-faq-question span {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

.mech-faq-icon {
  font-size: 14px;
  color: #ffffff;
  flex-shrink: 0;
  transition:
    transform 0.35s ease,
    color 0.3s ease;
}

/* Active state */
.mech-faq-item.active .mech-faq-question {
  background-color: #43708a;
}

.mech-faq-item.active .mech-faq-icon {
  transform: rotate(45deg);
}

/* Answer */
.mech-faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #ffffff;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 28px;
}

.mech-faq-item.active .mech-faq-answer {
  max-height: 400px;
  padding: 24px 28px;
}

.mech-faq-answer p {
  font-size: 15px;
  color: #556070;
  line-height: 1.85;
  margin-bottom: 12px;
}

.mech-faq-answer p:last-child {
  margin-bottom: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .mech-faq-title {
    font-size: 26px;
  }

  .mech-faq-question {
    padding: 18px 20px;
  }
  .mech-faq-question span {
    font-size: 14px;
  }

  .mech-faq-item.active .mech-faq-answer {
    padding: 20px 20px;
  }
  .mech-faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .mech-faq-section {
    padding: 60px 5%;
  }
  .mech-faq-title {
    font-size: 22px;
  }
}

/* ==========================================================================
   ELECTRICAL BENEFITS SECTION
   ========================================================================== */
.elec-benefits-section {
  padding: 90px 5%;
  background-color: #f0f2f5;
}

.elec-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.elec-benefits-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
}

.elec-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.elec-benefit-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 48px 36px 44px;
  text-align: center;
  border: 1px solid #eef2f6;
  border-bottom: 3px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 12, 36, 0.05);
  transition: all 0.35s ease;
}

.elec-benefit-card:hover {
  border-bottom-color: #43708a;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 12, 36, 0.1);
}

/* Icon */
.elec-benefit-icon {
  width: 80px;
  height: 80px;
  background-color: #000c24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: background-color 0.3s ease;
}

.elec-benefit-icon i {
  font-size: 28px;
  color: #ffffff;
}

.elec-benefit-card:hover .elec-benefit-icon {
  background-color: #43708a;
}

/* Title */
.elec-benefit-title {
  font-size: 20px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.elec-benefit-card:hover .elec-benefit-title {
  color: #43708a;
}

/* Desc */
.elec-benefit-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.85;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .elec-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .elec-benefits-title {
    font-size: 28px;
  }
}

@media (max-width: 580px) {
  .elec-benefits-section {
    padding: 60px 5%;
  }

  .elec-benefits-grid {
    grid-template-columns: 1fr;
  }

  .elec-benefits-title {
    font-size: 22px;
  }
  .elec-benefit-title {
    font-size: 18px;
  }
  .elec-benefit-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
   ELECTRICAL SPLIT SECTION
   ========================================================================== */
.elec-split-section {
  padding: 80px 5%;
  background-color: #f0f2f5;
}

.elec-split-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Each Row */
.elec-split-row {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* Row 2 — image left */
.elec-split-row-reverse {
  flex-direction: row-reverse;
}

/* ---- TEXT ---- */
.elec-split-text {
  flex: 1;
}

.elec-split-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.elec-split-title {
  font-size: 34px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.elec-split-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 22px;
}

.elec-split-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.9;
  text-align: justify;
}

.elec-split-link {
  color: #43708a;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(67, 112, 138, 0.4);
  transition: border-color 0.2s ease;
}

.elec-split-link:hover {
  border-bottom-color: #43708a;
}

/* ---- IMAGE ---- */
.elec-split-img-box {
  flex: 1;
}

.elec-split-img-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.1);
  transition: transform 0.4s ease;
}

.elec-split-img-box:hover img {
  transform: scale(1.02);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .elec-split-row,
  .elec-split-row-reverse {
    flex-direction: column;
    gap: 36px;
  }

  .elec-split-title {
    font-size: 26px;
  }

  .elec-split-img-box img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .elec-split-section {
    padding: 60px 5%;
  }

  .elec-split-title {
    font-size: 22px;
  }

  .elec-split-desc {
    font-size: 14px;
  }

  .elec-split-img-box img {
    height: 230px;
  }
}

/* ==========================================================================
   ELECTRICAL CTA BANNER SECTION
   ========================================================================== */
.elec-banner-section {
  position: relative;
  padding: 100px 5%;
  background-image: url("../images/electric-3.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.elec-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 12, 36, 0.78),
    rgba(0, 12, 36, 0.68)
  );
  z-index: 0;
}

.elec-banner-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.elec-banner-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.elec-banner-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  margin-bottom: 40px;
}

.elec-banner-btn {
  display: inline-block;
  padding: 15px 42px;
  background-color: #ffffff;
  color: #000c24;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.elec-banner-btn:hover {
  background-color: #43708a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .elec-banner-section {
    padding: 80px 6%;
    background-attachment: scroll;
  }

  .elec-banner-title {
    font-size: 28px;
  }
  .elec-banner-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .elec-banner-title {
    font-size: 22px;
  }

  .elec-banner-btn {
    padding: 13px 28px;
    font-size: 12px;
  }
}

/* ==========================================================================
   ELECTRICAL HIRING BENEFITS SECTION
   ========================================================================== */
.elec-hiring-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.elec-hiring-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- TOP TITLE ---- */
.elec-hiring-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

/* ---- 2x2 GRID ---- */
.elec-hiring-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 70px;
}

.elec-hiring-card {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid #eef2f6;
  border-left: 4px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 12, 36, 0.04);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.elec-hiring-card:hover {
  border-left-color: #43708a;
  background-color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 12, 36, 0.1);
}

.elec-hiring-icon {
  width: 50px;
  height: 50px;
  background-color: #000c24;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.elec-hiring-icon i {
  font-size: 18px;
  color: #ffffff;
}

.elec-hiring-card:hover .elec-hiring-icon {
  background-color: #43708a;
}

.elec-hiring-card-title {
  font-size: 19px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.elec-hiring-card:hover .elec-hiring-card-title {
  color: #43708a;
}

.elec-hiring-card-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.85;
}

/* ---- BOTTOM BLOCK ---- */
.elec-track-block {
  background-color: #000c24;
  border-radius: 16px;
  padding: 60px 50px;
}

.elec-track-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.elec-track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.elec-track-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 26px;
  transition: all 0.35s ease;
}

.elec-track-card:hover {
  background-color: rgba(67, 112, 138, 0.15);
  border-color: #43708a;
  transform: translateY(-5px);
}

.elec-track-icon {
  width: 50px;
  height: 50px;
  background-color: #43708a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background-color 0.3s ease;
}

.elec-track-icon i {
  font-size: 18px;
  color: #ffffff;
}

.elec-track-card:hover .elec-track-icon {
  background-color: #ffffff;
}

.elec-track-card:hover .elec-track-icon i {
  color: #43708a;
}

.elec-track-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.elec-track-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .elec-hiring-grid {
    grid-template-columns: 1fr;
  }

  .elec-track-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .elec-hiring-title {
    font-size: 28px;
  }
  .elec-track-title {
    font-size: 24px;
  }

  .elec-track-block {
    padding: 40px 28px;
  }
}

@media (max-width: 580px) {
  .elec-hiring-section {
    padding: 60px 5%;
  }

  .elec-track-grid {
    grid-template-columns: 1fr;
  }

  .elec-hiring-title {
    font-size: 22px;
  }
  .elec-track-title {
    font-size: 20px;
  }

  .elec-hiring-card-title {
    font-size: 17px;
  }
  .elec-hiring-card-desc {
    font-size: 14px;
  }
}

/* ==========================================================================
   PLUMBING INTRO SECTION
   ========================================================================== */
.plumb-intro-section {
  padding: 90px 5%;
  background-color: #f0f2f5;
}

.plumb-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ---- LEFT TEXT ---- */
.plumb-intro-text {
  flex: 1;
}

.plumb-intro-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.plumb-intro-title {
  font-size: 40px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.plumb-intro-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 22px;
}

.plumb-intro-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 30px;
}

.plumb-intro-desc strong {
  color: #000c24;
  font-weight: 700;
}

/* Stats */
.plumb-intro-stats {
  display: flex;
  align-items: center;
  background-color: #000c24;
  border-radius: 10px;
  padding: 20px 28px;
  margin-bottom: 32px;
}

.plumb-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.plumb-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.plumb-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: #a0aec0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plumb-stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Button */
.plumb-intro-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.plumb-intro-btn:hover {
  background-color: #43708a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 112, 138, 0.3);
}

/* ---- RIGHT IMAGE ---- */
.plumb-intro-img-box {
  flex: 1;
  position: relative;
}

.plumb-intro-img-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.12);
  transition: transform 0.4s ease;
}

.plumb-intro-img-box:hover img {
  transform: scale(1.02);
}

/* Floating Badge */
.plumb-intro-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background-color: #000c24;
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 12, 36, 0.2);
}

.plumb-intro-badge i {
  font-size: 20px;
  color: #43708a;
}

.plumb-intro-badge span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .plumb-intro-container {
    flex-direction: column;
    gap: 50px;
  }

  .plumb-intro-title {
    font-size: 30px;
  }

  .plumb-intro-img-box img {
    height: 360px;
  }

  .plumb-intro-badge {
    bottom: -14px;
    right: 14px;
  }
}

@media (max-width: 550px) {
  .plumb-intro-section {
    padding: 60px 5%;
  }

  .plumb-intro-title {
    font-size: 24px;
  }
  .plumb-intro-desc {
    font-size: 14px;
  }

  .plumb-intro-stats {
    padding: 16px;
  }
  .plumb-stat-num {
    font-size: 20px;
  }

  .plumb-intro-img-box img {
    height: 260px;
  }

  .plumb-intro-badge {
    padding: 12px 14px;
    right: 10px;
  }
}

/* ==========================================================================
   PLUMBING VARIETY SECTION
   ========================================================================== */
.plumb-variety-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.plumb-variety-container {
  max-width: 1100px;
  margin: 0 auto;
}

.plumb-variety-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 50px;
  letter-spacing: -0.3px;
}

/* 3-column layout: cards | image | cards */
.plumb-variety-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

/* ---- COLUMNS ---- */
.plumb-variety-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card */
.plumb-variety-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background-color: #f8fafc;
  border: 1px solid #eef2f6;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 12, 36, 0.05);
  transition: all 0.3s ease;
}

.plumb-variety-card:hover {
  background-color: #ffffff;
  border-color: #43708a;
  transform: translateX(0) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 12, 36, 0.1);
}

/* Right col cards hover left direction */
.plumb-variety-col:last-child .plumb-variety-card:hover {
  transform: scale(1.02);
}

/* Icon Box */
.plumb-variety-icon {
  width: 52px;
  height: 52px;
  background-color: #000c24;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.plumb-variety-icon i {
  font-size: 20px;
  color: #ffffff;
}

.plumb-variety-card:hover .plumb-variety-icon {
  background-color: #43708a;
}

/* Name */
.plumb-variety-name {
  font-size: 17px;
  font-weight: 700;
  color: #000c24;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.plumb-variety-card:hover .plumb-variety-name {
  color: #43708a;
}

/* ---- CENTER IMAGE ---- */
.plumb-variety-img-box {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}

.plumb-variety-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.15);
  transition: transform 0.4s ease;
}

.plumb-variety-img-box:hover img {
  transform: scale(1.04);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .plumb-variety-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  /* Image center mein aaye dono columns ke beech */
  .plumb-variety-img-box {
    grid-column: 1 / -1;
    width: 220px;
    height: 220px;
    margin: 0 auto;
    order: -1;
  }
}

@media (max-width: 580px) {
  .plumb-variety-section {
    padding: 60px 5%;
  }

  .plumb-variety-title {
    font-size: 24px;
  }

  .plumb-variety-layout {
    grid-template-columns: 1fr;
  }

  .plumb-variety-img-box {
    grid-column: 1;
    width: 180px;
    height: 180px;
  }

  .plumb-variety-card {
    padding: 18px 18px;
  }

  .plumb-variety-name {
    font-size: 15px;
  }
}

/* ==========================================================================
   PLUMBING SERVICES GRID SECTION
   ========================================================================== */
.plumb-services-section {
  padding: 80px 5%;
  background-color: #000c24;
}

.plumb-services-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* 3x2 Grid */
.plumb-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.plumb-service-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 44px 30px 36px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.plumb-service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-color: #43708a;
}

/* Icon Circle */
.plumb-service-icon {
  width: 80px;
  height: 80px;
  background-color: #000c24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.plumb-service-icon i {
  font-size: 26px;
  color: #ffffff;
}

.plumb-service-card:hover .plumb-service-icon {
  background-color: #43708a;
}

/* Name */
.plumb-service-name {
  font-size: 17px;
  font-weight: 700;
  color: #000c24;
  line-height: 1.35;
  text-align: center;
  transition: color 0.3s ease;
}

.plumb-service-card:hover .plumb-service-name {
  color: #43708a;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .plumb-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .plumb-services-section {
    padding: 60px 5%;
  }

  .plumb-services-grid {
    grid-template-columns: 1fr;
  }

  .plumb-service-card {
    padding: 34px 24px 28px;
  }

  .plumb-service-name {
    font-size: 16px;
  }
}

/* ==========================================================================
   PLUMBING OFFER SECTION
   ========================================================================== */
.plumb-offer-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.plumb-offer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.plumb-offer-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

/* ---- IMAGE CARDS ---- */
.plumb-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}

.plumb-offer-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  cursor: default;
}

.plumb-offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  filter: brightness(0.65);
}

.plumb-offer-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.5);
}

.plumb-offer-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px 22px;
}

.plumb-offer-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
  width: 100%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.plumb-offer-card:hover .plumb-offer-card-title {
  transform: translateY(-4px);
}

/* ---- TEXT BLOCK ---- */
.plumb-offer-text-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.plumb-offer-block-title {
  font-size: 30px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.plumb-offer-block-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.9;
}

.plumb-offer-block-desc strong {
  color: #000c24;
  font-weight: 700;
}

/* ---- CHECKLIST BLOCK ---- */
.plumb-offer-checklist-block {
  background-color: #f8fafc;
  border-radius: 16px;
  padding: 50px 50px;
  border: 1px solid #eef2f6;
}

.plumb-offer-checklist-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.3;
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}

.plumb-offer-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.plumb-checklist-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plumb-checklist-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.5;
}

.plumb-checklist-col li i {
  color: #43708a;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .plumb-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plumb-offer-checklist {
    grid-template-columns: 1fr;
  }

  .plumb-offer-title {
    font-size: 26px;
  }
  .plumb-offer-block-title {
    font-size: 24px;
  }
  .plumb-offer-checklist-title {
    font-size: 22px;
  }

  .plumb-offer-checklist-block {
    padding: 36px 28px;
  }
}

@media (max-width: 580px) {
  .plumb-offer-section {
    padding: 60px 5%;
  }

  .plumb-offer-grid {
    grid-template-columns: 1fr;
  }

  .plumb-offer-card {
    height: 200px;
  }

  .plumb-offer-title {
    font-size: 22px;
  }
  .plumb-offer-block-title {
    font-size: 20px;
  }
  .plumb-offer-checklist-title {
    font-size: 18px;
  }

  .plumb-checklist-col li {
    font-size: 14px;
  }

  .plumb-offer-checklist-block {
    padding: 28px 20px;
  }
}

/* ==========================================================================
   COMMERCIAL PLUMBING SECTION
   ========================================================================== */
.commercial-plumb-section {
  position: relative;
  padding: 100px 5%;
  background-image: url("../images/commercial-banner.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.commercial-plumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 12, 36, 0.88) 40%,
    rgba(0, 12, 36, 0.3) 100%
  );
  z-index: 0;
}

.commercial-plumb-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.commercial-plumb-title {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.commercial-plumb-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 16px;
}

.commercial-plumb-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 15px 40px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.commercial-plumb-btn:hover {
  background-color: #43708a;
  border-color: #43708a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .commercial-plumb-section {
    padding: 80px 6%;
    background-attachment: scroll;
  }

  .commercial-plumb-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 12, 36, 0.88),
      rgba(0, 12, 36, 0.75)
    );
  }

  .commercial-plumb-title {
    font-size: 32px;
  }
  .commercial-plumb-desc {
    font-size: 14px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .commercial-plumb-title {
    font-size: 26px;
  }

  .commercial-plumb-btn {
    padding: 13px 28px;
    font-size: 12px;
  }
}

/* ==========================================================================
   PLUMBING CHECKLIST SECTIONS (COMMERCIAL + INDUSTRIAL)
   ========================================================================== */
.plumb-commercial-list-section,
.plumb-industrial-list-section {
  padding: 80px 5%;
  background-color: #ffffff;
}

.plumb-commercial-list-container,
.plumb-industrial-list-container {
  max-width: 1100px;
  margin: 0 auto;
}

.plumb-list-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.3;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.plumb-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
  background-color: #f8fafc;
  border-radius: 14px;
  padding: 40px 44px;
  border: 1px solid #eef2f6;
}

.plumb-list-col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plumb-list-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.55;
}

.plumb-list-col li i {
  color: #43708a;
  font-size: 17px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==========================================================================
   INDUSTRIAL PLUMBING TEXT+IMAGE SECTION
   ========================================================================== */
.plumb-industrial-section {
  padding: 90px 5%;
  background-color: #f0f2f5;
}

.plumb-industrial-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* LEFT TEXT */
.plumb-industrial-text {
  flex: 1;
}

.plumb-industrial-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.plumb-industrial-title {
  font-size: 34px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.plumb-industrial-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 22px;
}

.plumb-industrial-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 30px;
}

.plumb-industrial-desc strong {
  color: #000c24;
  font-weight: 700;
}

.plumb-industrial-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.plumb-industrial-btn:hover {
  background-color: #43708a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67, 112, 138, 0.3);
}

/* RIGHT IMAGE */
.plumb-industrial-img-box {
  flex: 1;
}

.plumb-industrial-img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.12);
  transition: transform 0.4s ease;
}

.plumb-industrial-img-box:hover img {
  transform: scale(1.02);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .plumb-checklist-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 24px;
  }

  .plumb-industrial-container {
    flex-direction: column;
    gap: 40px;
  }

  .plumb-list-title {
    font-size: 24px;
  }
  .plumb-industrial-title {
    font-size: 26px;
  }
  .plumb-industrial-img-box img {
    height: 320px;
  }
}

@media (max-width: 550px) {
  .plumb-commercial-list-section,
  .plumb-industrial-list-section,
  .plumb-industrial-section {
    padding: 60px 5%;
  }

  .plumb-list-title {
    font-size: 20px;
  }
  .plumb-industrial-title {
    font-size: 22px;
  }
  .plumb-list-col li {
    font-size: 14px;
  }
  .plumb-industrial-img-box img {
    height: 240px;
  }
}

/* ==========================================================================
   PLUMBING TAKEOFFS BANNER
   ========================================================================== */
.plumb-takeoff-banner {
  position: relative;
  padding: 90px 5%;
  background-image: url("../images/plumbing-course.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.plumb-takeoff-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 12, 36, 0.78),
    rgba(0, 12, 36, 0.65)
  );
  z-index: 0;
}

.plumb-takeoff-banner-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.plumb-takeoff-banner-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.plumb-takeoff-banner-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
}

/* ==========================================================================
   PLUMBING DELIVERABLES SECTION
   ========================================================================== */
.plumb-deliverables-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.plumb-deliverables-container {
  max-width: 1200px;
  margin: 0 auto;
}

.plumb-deliverables-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 44px;
  letter-spacing: -0.3px;
}

/* Row 1 — 5 cards */
.plumb-deliverables-row5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

/* Row 2 — 4 cards */
.plumb-deliverables-row4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Card */
.plumb-deliver-card {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 32px 20px 28px;
  text-align: center;
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(0, 12, 36, 0.04);
  transition: all 0.35s ease;
}

.plumb-deliver-card:hover {
  transform: translateY(-6px);
  border-color: #43708a;
  background-color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 12, 36, 0.1);
}

/* Icon */
.plumb-deliver-icon {
  width: 62px;
  height: 62px;
  background-color: #000c24;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.plumb-deliver-icon i {
  font-size: 22px;
  color: #ffffff;
}

.plumb-deliver-card:hover .plumb-deliver-icon {
  background-color: #43708a;
}

/* Name */
.plumb-deliver-name {
  font-size: 14px;
  font-weight: 700;
  color: #000c24;
  line-height: 1.4;
  text-align: center;
  transition: color 0.3s ease;
}

.plumb-deliver-card:hover .plumb-deliver-name {
  color: #43708a;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .plumb-deliverables-row5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .plumb-deliverables-row4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .plumb-takeoff-banner {
    padding: 70px 6%;
    background-attachment: scroll;
  }
  .plumb-takeoff-banner-title {
    font-size: 28px;
  }
  .plumb-takeoff-banner-desc {
    font-size: 14px;
  }

  .plumb-deliverables-row5,
  .plumb-deliverables-row4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .plumb-deliverables-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .plumb-deliverables-section {
    padding: 60px 5%;
  }

  .plumb-deliverables-row5,
  .plumb-deliverables-row4 {
    grid-template-columns: 1fr;
  }

  .plumb-takeoff-banner-title {
    font-size: 24px;
  }
  .plumb-deliverables-title {
    font-size: 22px;
  }
  .plumb-deliver-name {
    font-size: 13px;
  }
}

/* ==========================================================================
   PRIVACY POLICY SECTION
   ========================================================================== */
.privacy-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ---- LEFT TEXT ---- */
.privacy-text {
  flex: 1;
}

.privacy-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.privacy-title {
  font-size: 42px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.privacy-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 22px;
}

.privacy-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 36px;
}

/* Feature Items */
.privacy-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.privacy-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background-color: #f8fafc;
  border-radius: 10px;
  border-left: 3px solid transparent;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}

.privacy-feature-item:hover {
  border-left: 3px solid #43708a;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 12, 36, 0.07);
  transform: translateX(4px);
}

.privacy-feature-icon {
  width: 46px;
  height: 46px;
  background-color: #000c24;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.privacy-feature-icon i {
  font-size: 17px;
  color: #ffffff;
}

.privacy-feature-item:hover .privacy-feature-icon {
  background-color: #43708a;
}

.privacy-feature-text h3 {
  font-size: 16px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.privacy-feature-item:hover .privacy-feature-text h3 {
  color: #43708a;
}

.privacy-feature-text p {
  font-size: 14px;
  color: #556070;
  line-height: 1.7;
  margin: 0;
}

/* ---- RIGHT IMAGE ---- */
.privacy-img-box {
  flex: 1;
  position: relative;
}

.privacy-img-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.12);
  transition: transform 0.4s ease;
}

.privacy-img-box:hover img {
  transform: scale(1.02);
}

.privacy-img-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background-color: #000c24;
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 12, 36, 0.2);
}

.privacy-img-badge i {
  font-size: 20px;
  color: #43708a;
}

.privacy-img-badge span {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

/* ==========================================================================
   TERMS & CONDITIONS SECTION
   ========================================================================== */
.terms-section {
  padding: 80px 5%;
  background-color: #000c24;
  border-radius: 20px;
  margin: 0 3% 80px;
}

.terms-container {
  max-width: 1000px;
  margin: 0 auto;
}

.terms-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.terms-divider {
  width: 60px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin: 0 auto 40px;
}

.terms-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.terms-list li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  text-align: justify;
  padding-left: 8px;
}

.terms-list li::marker {
  color: #43708a;
  font-weight: 700;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .privacy-container {
    flex-direction: column;
    gap: 50px;
  }

  .privacy-title {
    font-size: 32px;
  }

  .privacy-img-box img {
    height: 380px;
  }

  .privacy-img-badge {
    bottom: -14px;
    left: 14px;
  }

  .terms-section {
    margin: 0 2% 60px;
  }
  .terms-title {
    font-size: 28px;
  }
}

@media (max-width: 550px) {
  .privacy-section {
    padding: 60px 5%;
  }

  .privacy-title {
    font-size: 26px;
  }
  .privacy-desc {
    font-size: 14px;
  }

  .privacy-img-box img {
    height: 280px;
  }

  .privacy-img-badge {
    padding: 12px 14px;
    left: 10px;
  }

  .terms-section {
    padding: 50px 5%;
    margin: 0 0 60px;
    border-radius: 0;
  }

  .terms-title {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .terms-list li {
    font-size: 14px;
  }
}

/* ==========================================================================
   PORTFOLIO INTRO SECTION
   ========================================================================== */
.portfolio-intro-section {
  padding: 90px 5%;
  background-color: #ffffff;
}

.portfolio-intro-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- TOP: TEXT + IMAGE ---- */
.portfolio-intro-top {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 50px;
}

.portfolio-intro-text {
  flex: 1;
}

.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #43708a;
  background-color: rgba(67, 112, 138, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.portfolio-title {
  font-size: 42px;
  font-weight: 800;
  color: #000c24;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.portfolio-divider {
  width: 50px;
  height: 3px;
  background-color: #43708a;
  border-radius: 2px;
  margin-bottom: 22px;
}

.portfolio-desc {
  font-size: 15px;
  color: #556070;
  line-height: 1.9;
  margin-bottom: 16px;
  text-align: justify;
}

.portfolio-desc strong {
  color: #000c24;
  font-weight: 700;
}

/* Image */
.portfolio-intro-img-box {
  flex-shrink: 0;
  width: 380px;
  position: relative;
}

.portfolio-intro-img-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 12, 36, 0.12);
  transition: transform 0.4s ease;
}

.portfolio-intro-img-box:hover img {
  transform: scale(1.02);
}

.portfolio-img-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background-color: #000c24;
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 12, 36, 0.2);
}

.portfolio-badge-num {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.portfolio-badge-text {
  font-size: 11px;
  font-weight: 600;
  color: #43708a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---- CLIENTS BLOCK ---- */
.portfolio-clients-block {
  background-color: #f8fafc;
  border-radius: 14px;
  padding: 36px 40px;
  border: 1px solid #eef2f6;
  margin-bottom: 36px;
}

.portfolio-clients-title {
  font-size: 22px;
  font-weight: 800;
  color: #000c24;
  margin-bottom: 24px;
}

.portfolio-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.portfolio-client-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #2d3748;
}

.portfolio-client-item i {
  color: #43708a;
  font-size: 16px;
  flex-shrink: 0;
}

/* ---- DESC BLOCK ---- */
.portfolio-desc-block {
  margin-bottom: 40px;
}

/* ---- CTA GRID ---- */
.portfolio-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.portfolio-cta-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background-color: #000c24;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.portfolio-cta-card:hover {
  background-color: #43708a;
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 12, 36, 0.2);
}

.portfolio-cta-icon {
  width: 46px;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.portfolio-cta-card:hover .portfolio-cta-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.portfolio-cta-icon i {
  font-size: 18px;
  color: #43708a;
  transition: color 0.3s ease;
}

.portfolio-cta-card:hover .portfolio-cta-icon i {
  color: #ffffff;
}

.portfolio-cta-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.portfolio-cta-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
}

.portfolio-cta-content p strong {
  color: #ffffff;
}

/* ---- BUTTON ---- */
.portfolio-btn-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.portfolio-quote-btn {
  display: inline-block;
  padding: 15px 48px;
  background-color: #000c24;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.portfolio-quote-btn:hover {
  background-color: #43708a;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(67, 112, 138, 0.35);
}

/* ---- BOTTOM TEXT ---- */
.portfolio-bottom-text {
  font-size: 15px;
  color: #556070;
  line-height: 1.9;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-bottom-text strong {
  color: #000c24;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .portfolio-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .portfolio-intro-top {
    flex-direction: column;
    gap: 40px;
  }

  .portfolio-intro-img-box {
    width: 100%;
  }

  .portfolio-intro-img-box img {
    height: 280px;
  }

  .portfolio-img-badge {
    bottom: -14px;
    left: 14px;
  }

  .portfolio-cta-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-title {
    font-size: 32px;
  }
}

@media (max-width: 580px) {
  .portfolio-intro-section {
    padding: 60px 5%;
  }

  .portfolio-title {
    font-size: 26px;
  }
  .portfolio-desc {
    font-size: 14px;
  }

  .portfolio-clients-block {
    padding: 24px 20px;
  }

  .portfolio-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-client-item {
    font-size: 14px;
  }

  .portfolio-intro-img-box img {
    height: 220px;
  }
}
