* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #ffffff;
  background: url('images/bg-grainy-blue-dark.jpg');
}

/* Hide scrollbar for Chrome, Safari, Edge */
body::-webkit-scrollbar {
  display: none;
}

html,
body {
  overflow-x: hidden;
}

.site-nav {
  max-width: 100%;
  overflow: hidden;
}


/* ---------- DESIGN TOKENS (CSS VARIABLES) ---------- */
:root {
  /* Colors */
  --brand-primary: #334238;
  /* Cadmium Yellow */
  --brand-secondary: #faf2e8;
  /* Oasis */
  --bg: url('images/bg-grainy-blue.jpg');
  /* Creamy White */
  --heading: #2B1F1A;
  /* Charcoal Brown */
  --text: #5A4A42;
  /* Warm Gray */
  --muted: #E7E0D5;
  /* light border / input */
  --highlight: #F5C242;
  /* Turmeric Yellow */
  --accent-mint: #d40315;
  /* optional-btn-bg */
  --white: #FFFFFF;
  --black: #000000;

  /* Spacing scale */
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;

  /* Typography sizes (desktop default) */
  --h1: 44px;
  /* hero */
  --h2: 28px;
  /* section title */
  --h3: 20px;
  /* card title */
  --text-lg: 18px;
  --text-md: 16px;
  --text-sm: 14px;

  /* Radii & shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --card-shadow: 0 8px 20px rgba(43, 31, 26, 0.06);
  --soft-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* ---------- Responsive breakpoints ---------- */
/* Mobile-first: default is mobile */
@media (min-width: 768px) {
  :root {
    --h1: 56px;
    --h2: 32px;
    --h3: 22px;
    --text-lg: 18px;
  }
}

@media (min-width: 1200px) {
  :root {
    --h1: 64px;
    --h2: 36px;
    --h3: 24px;
    --space-xl: 80px;
  }
}

/* ---------- Utility containers ---------- */
.ub-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-s);
  max-width: 1600px;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Common helpers */
.center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Screen reader only */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */


/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Main Skyline-like font */
body,
p,
a,
li,
nav,
.nav-right-section a {
  font-family: "Mulish", sans-serif;
}

/* Section tagline (Skyline italic) */
.section-title .tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

/* Headings */
h1,
h2,
h3 {
  font-family: "Mulish", sans-serif;
  font-weight: 900;
}

/* underline only for normal text links */
.right-nav-section a:not(.nav-call-btn):hover,
.btn-secondary:hover {
  text-decoration: none;
}

/* global links – no underline by default */
a {
  text-decoration: none;
}


/* navigation */
nav {
  display: flex;
  padding: var(--space-s);
  padding-top: 30px;
  justify-content: space-between;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  padding: var(--space-m);
  padding-top: 30px;

  background: transparent;
  transition: transform 0.35s ease, background 0.35s ease;
}

/* Hide on scroll down */
.site-nav.nav-hidden {
  transform: translateY(-120%);
}

/* Add background after scroll */
.site-nav.scrolled {
  background: rgba(51, 66, 56, 0.95);
  backdrop-filter: blur(8px);
}

.left-nav-section img {
  height: 75px;
  width: auto;
}

.right-nav-section {
  gap: 45px;
}

.right-nav-section a {
  font-size: 15px;
  color: #faf2e8;
}

/* NAV LINK HOVER EFFECT */
.right-nav-section .menu-link {
  position: relative;
  font-size: 15px;
  color: #faf2e8;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* Underline */
.right-nav-section .menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #cce561;
  transition: width 0.35s ease;
}

/* Hover effect */
.right-nav-section .menu-link:hover {
  color: #cce561;
}

.right-nav-section .menu-link:hover::after {
  width: 100%;
}

/* EXCLUDE Call button */
.nav-call-btn::after {
  display: none;
}


.nav-call-btn {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 17px !important;
  font-weight: 600;
  color: #000000 !important;
  background-color: #ff9c94;
  border-radius: 6px;
  text-decoration: none !important;
  overflow: hidden;
  z-index: 1;
  transition: color 0.35s ease;
}

/* Animated layer */
.nav-call-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  color: #000000;
  background-color: #cce561;
  /* dark green like NewEngen */
  z-index: -1;
  transition: bottom 0.35s ease;
}

/* Hover animation */
.nav-call-btn:hover::before {
  bottom: 0;
}

/* Text color change */
.nav-call-btn:hover {
  color: #000000;
}

.nav-call-btn:hover .btn-arrow {
  transform: translateX(6px) rotate(-5deg);
}

.btn-arrow {
  display: inline-block;
  font-size: 20px;
  transform: translateY(3px);
  /* moves arrow slightly down */
  transition: transform 0.35s ease, color 0.35s ease;
}

/* ===============================
   MOBILE NAV
================================ */

.desktop-nav {
  display: flex;
}


/* MOBILE MENU */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #334238;
  padding: 160px 24px;
  display: none;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
  z-index: 999;
}

.mobile-nav a {
  font-size: 22px;
  font-weight: 800;
  color: #faf2e8;

}

.mobile-nav-link {
  padding-left: var(--space-s);
  /* padding-top: 10px; */
  /* border-top: 1px solid #000000; */
  padding-top: 10px;
  padding-bottom: 10px;
}

/* CALL BUTTON */
.mobile-call-btn {
  margin-top: 30px;
  padding: 14px;
  background: #cce561;
  color: #334238;
  text-align: center;
  border-radius: 8px;
}

/* ACTIVE */
.mobile-nav.active {
  transform: translateX(0);
}

/* HAMBURGER ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

/* ===============================
   PREMIUM HAMBURGER (LIKE IMAGE)
================================ */

.hamburger {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #ff9c94;
  /* soft pink */
  border: none;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1001;
  margin: 10px;
}

.hamburger span {
  width: 22px;
  height: 3px;
  background: #1a1a1a;
  border-radius: 4px;
  transition: all 0.35s ease;
}

/* Hover */
.hamburger:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* ACTIVE → PERFECT CROSS */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* SHOW ONLY ON MOBILE */
@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }
}



/* Fotter  */

/* ===============================
   SITE FOOTER
   =============================== */

.site-footer {
  background-color: #334238;
  color: #faf2e8;
  /* padding: 100px 0 40px; */
  padding: var(--space-s);
  padding-top: 100px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

/* Brand */
.footer-logo {
  width: 160px;
  margin-bottom: 22px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: #e7e0d5;
  max-width: 360px;
}

/* Columns */
.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 22px;
  color: #cce561;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  font-size: 14px;
  margin-bottom: 12px;
  color: #faf2e8;
}

.footer-col a {
  color: #faf2e8;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #cce561;
}

/* Contact */
.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #e7e0d5;
}

.footer-credit {
  font-size: 13px;
  color: #cce561;
}

/* CODERNN CREDIT */
.footer-credit a {
  color: #cce561;
  font-weight: 700;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* FOOTER SOCIAL ICONS */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #faf2e8;
  transition: all 0.35s ease;
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-socials a:hover {
  background: #cce561;
  color: #334238;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 70px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Footer end here */

/* FLOATING WHATSAPP BUTTON */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  /* WhatsApp green */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

/* Mobile spacing fix */
@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* FLOATING CALL BUTTON (MOBILE ONLY) */

.call-float {
  position: fixed;
  right: 22px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ff9c94;
  /* matches your CTA */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-float svg {
  width: 26px;
  height: 26px;
  color: #000000;
}


.call-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

@media (min-width: 769px) {
  .call-float {
    display: none;
  }
}

/* Hide call button smoothly */
.call-float.hide-call {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}

/* cases */

/* Default (desktop & large screens) */
.whatsapp-float {
  display: flex;
}

.call-float {
  display: none;
}

@media (max-width: 480px) {
  .call-float {
    display: flex;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .call-float {
    display: none;
  }

  .whatsapp-float {
    display: flex;
  }
}

.float-hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
  transition: all 0.3s ease;
}

.float-hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
}


/* Home page style start here */

/* hero section */

.hero-section {
  background-color: var(--brand-primary);
  /* height: 100vh;
  width: 100vw; */
  padding-top: 120px;
  padding-bottom: 40px;

}

.left-bottom-hero-section {
  width: 50%;
  padding: var(--space-s);
}

.left-bottom-hero-section h1 {
  color: var(--brand-secondary);
  font-size: 6em;
  line-height: 100px;
  padding-bottom: 100px;

}

.left-bottom-hero-section p {
  color: var(--brand-secondary);
  width: 80%;
  font-size: 16px;
  padding-bottom: 20px;
}

/* CTA wrapper */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}



/* ========== PRIMARY CTA ========== */
/* PRIMARY CTA – CLEAN VERSION */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  background: var(--brand-secondary);
  border-radius: 6px;
  color: #1a1a1a;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

/* background fill animation */
.btn-primary::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #0f3d2e;
  /* brand dark */
  transition: bottom 0.35s ease;
  z-index: -1;
}

/* label */
.btn-label {
  transition: color 0.35s ease;
}

/* arrow */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  transform: translateY(1px);
  transition: transform 0.35s ease, color 0.35s ease;
}

/* hover effects */
.btn-primary:hover::before {
  bottom: 0;
}

.btn-primary:hover .btn-label {
  color: var(--brand-secondary);
}

.btn-primary:hover .btn-arrow {
  transform: translate(6px, 1px);
  color: var(--brand-secondary);
}





/* ========== SECONDARY CTA ========== */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #334238;
  background-color: #6f8f7a;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.btn-secondary .btn-icon {
  display: inline-flex;
  transform: translateY(1px);
  transition: transform 0.3s ease;
}

.btn-secondary:hover {
  background-color: #334238;
  color: var(--brand-secondary);
  transform: translateY(-1px);
  border: 1px solid var(--brand-secondary);
}

.btn-secondary:hover .btn-icon {
  transform: translate(2px, 1px);
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Right side animation  */

/* HERO RIGHT VISUAL */
/* RIGHT HERO */
.right-bottom-hero-section {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* STACK WRAPPER */
.hero-card-stack {
  position: relative;
  width: 380px;
  height: 550px;
  perspective: 1200px;
}

/* CARD BASE */
.hero-card {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(30px) scale(0.94);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(.4, 0, .2, 1),
    opacity 1.2s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.4s ease;
}

/* CARD IMAGE */
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ACTIVE CARD */
.hero-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 3;
}

/* ACTIVE CARD */
.hero-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 3;
}

/* NEXT CARD (right side) */
.hero-card.next {
  opacity: 1;
  transform: translateX(28px) scale(0.96);
  z-index: 2;
}

/* LAST CARD (further right) */
.hero-card.last {
  opacity: 1;
  transform: translateX(56px) scale(0.92);
  z-index: 1;
}


/* HOVER – PREMIUM LIFT */
.hero-card-stack:hover .hero-card.active {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .hero-card-stack {
    width: 280px;
    height: 360px;
    margin-top: 40px;
  }
}


/* Home page 2nd Service Section */


/* SECTION BASE */
.work-style-section {
  background: #faf2e8;
  padding: 100px 0;
  padding: var(--space-s);

}

.work-style-section-service-section {
  padding-top: 110px;
  padding-bottom: 50px;
}

.wssss-top-section {
  flex-direction: column;
  width: 100%;
}

/* EYEBROW */
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #000000;
}

/* HEADING */
.section-heading {
  font-size: 48px;
  font-weight: 900;
  /* max-width: 900px; */
  margin-bottom: 70px;
  color: #2B1F1A;
}

/* HIGHLIGHT PILL */
.highlight-pill {
  background: #cce561;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 45px;
}

/* CARD GRID */
.work-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 130px;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* CARD */
.work-card img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.work-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* newly Added */

.service-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #5A4A42;
  margin: 8px 0 10px;
}

/* TAGS */
.work-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.work-tags span {
  font-size: 13px;
  padding: 6px 12px;
  border: 1px solid #d6cec4;
  border-radius: 999px;
  color: #5A4A42;
}

/* CTA */
.work-cta {
  margin-top: 60px;
}

.services-btn {
  background-color: #ff9c94;
}

.services-btn span {
  font-size: 12px;
}

@media (max-width: 768px) {
  .section-heading {
    font-size: 34px;
  }

  .work-cards {
    grid-template-columns: 1fr;
  }

  .work-card img {
    height: 300px;
  }
}

/* IMAGE WRAPPER */
.image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 540px;
  margin-bottom: 30px;

}

/* IMAGE */
.image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* IMAGE OVERLAY */
.service-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}



/* BOTTOM TRIANGLE CARD */
.bottom-triangle-card {
  position: absolute;
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%) scale(0.9);
  background: #faf2e8;
  color: #2B1F1A;
  padding: 20px 28px 26px;
  text-align: center;
  border-radius: 16px 16px 0 0;
  clip-path: polygon(0 0,
      100% 0,
      100% 85%,
      55% 85%,
      50% 100%,
      45% 85%,
      0 85%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}



/* TEXT */
.bottom-triangle-card strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.bottom-triangle-card span {
  display: block;
  font-size: 13px;
  margin-top: 4px;
  color: #5A4A42;
}

/* HOVER EFFECT */
.work-card:hover .service-image-overlay {
  opacity: 1;
}

.work-card:hover .bottom-triangle-card {
  bottom: 18px;
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.work-card:hover img {
  transform: scale(1.03);
}


@media (max-width: 768px) {
  .bottom-triangle-card {
    bottom: 16px;
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

  .service-image-overlay {
    opacity: 0.2;
  }
}


/* HOME – ABOUT SECTION */

.about-section {
  background: #faf2e8;
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
}

.about-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 26px;
  color: #334238;
  text-align: center;
}

.about-heading {
  font-size: 46px;
  font-weight: 900;
  color: #2B1F1A;
  text-align: center;
  margin-bottom: 90px;
  line-height: 1.15;
}

.about-heading span {
  color: #334238;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* CONTENT */
.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #5A4A42;
  margin-bottom: 22px;
}

.about-text strong {
  color: #334238;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 32px 0 42px;
}

.about-points span {
  font-size: 14px;
  color: #334238;
  font-weight: 600;
}

/* BUTTON */
.about-btn {
  background-color: #ff9c94;
}

/* VISUAL CARD */
.about-visual {
  display: flex;
  justify-content: center;
}

.about-card {
  background: #334238;
  color: #faf2e8;
  padding: 46px 42px;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.about-card h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e7e0d5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-card {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 90px 0;
  }

  .about-heading {
    font-size: 34px;
    margin-bottom: 60px;
  }

  .about-text {
    font-size: 15px;
  }

  .about-points span {
    font-size: 13px;
  }
}


/*Home 3rd section trust profe section */

/* TRUST PROOF SECTION */
.trust-proof-section {
  position: relative;
  background: url('images/bg-grainy-blue-dark.jpg');
  background-size: cover;
  background-position: center;
  padding: 220px 0 120px;
  text-align: center;
  overflow: hidden;
}

.trust-proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 242, 232, 0.9);
  z-index: 1;
  pointer-events: none;
}

.trust-proof-section .ub-container {
  position: relative;
  z-index: 2;
}


.trust-proof-section::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  background: #faf2e8;
  clip-path: polygon(0 0,
      100% 0,
      100% 70%,
      50% 100%,
      0 70%);
}

.trust-eyebrow {
  color: #334238;
}

.trust-heading {
  color: #2B1F1A;
}

.trust-heading span {
  color: #334238;
}

.trust-stat strong {
  color: #334238;
}

.trust-stat p {
  color: #5A4A42;
}


/* Eyebrow */
.trust-eyebrow {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #000000;
}

/* Heading */
.trust-heading {
  font-size: 48px;
  font-weight: 900;
  color: #2B1F1A;
  margin-bottom: 80px;
  line-height: 1.15;
}

.trust-heading span {
  color: #334238;
}

/* Stats Grid */
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}

/* Single Stat */
.trust-stat strong {
  display: block;
  font-size: 56px;
  font-weight: 900;
  color: #334238;
  margin-bottom: 12px;
}

.trust-stat p {
  font-size: 15px;
  color: #5A4A42;
  max-width: 180px;
  margin: 0 auto;
}

/* Hover – subtle (NewEngen style) */
.trust-stat {
  transition: transform 0.3s ease;
}

.trust-stat:hover {
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .trust-heading {
    font-size: 34px;
    margin-bottom: 60px;
  }

  .trust-stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-stat strong {
    font-size: 44px;
  }
}

/* HOME – SECTION 4: PROCESS*/

.process-section {
  background: #faf2e8;
  text-align: center;
  padding: var(--space-s);
  /* padding: 140px 0 120px; */
  padding-top: 140px;
  padding-bottom: 140px;
}

/* Eyebrow */
.process-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 28px;
  color: #334238;
}

/* Heading */
.process-heading {
  font-size: 46px;
  font-weight: 900;
  color: #2B1F1A;
  margin-bottom: 90px;
  line-height: 1.15;
}

.process-heading span {
  color: #334238;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* Card */
.process-card {
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}

/* Step number */
.process-step {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #334238;
  margin-bottom: 18px;
}

/* Title */
.process-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #2B1F1A;
}

/* Description */
.process-card p {
  font-size: 14px;
  color: #5A4A42;
  line-height: 1.6;
}

/* Hover – subtle & premium */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.14);
}

/* Responsive */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .process-heading {
    font-size: 34px;
    margin-bottom: 60px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Home page 4th testimonials*/

/*
HOME – SECTION 5: TESTIMONIALS 
*/

.testimonials-section {
  background: rgba(250, 242, 232, 0.9);
  padding: var(--space-s);
  text-align: center;
  padding-top: 140px;
  padding-bottom: 140px;
}

/* Eyebrow */
.testimonials-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 28px;
  color: #334238;
}

/* Heading */
.testimonials-heading {
  font-size: 46px;
  font-weight: 900;
  color: #2B1F1A;
  margin-bottom: 90px;
  line-height: 1.15;
}

.testimonials-heading span {
  color: #334238;
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* newly Added */

.testimonial-stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #f5c242;
  /* premium gold */
  margin-bottom: 12px;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  color: #5A4A42;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* Name */
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #334238;
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.14);
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-heading {
    font-size: 34px;
    margin-bottom: 60px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===============================
   HOME – LOCAL COVERAGE SECTION
   =============================== */

.coverage-section {
  position: relative;
  background: #334238;
  background-size: cover;
  background-position: center;
  padding: 150px 0 130px;
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
  overflow: hidden;
}

.coverage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.coverage-section .ub-container {
  position: relative;
  z-index: 2;
}

.coverage-eyebrow {
  color: #cce561;
  /* highlight green */
}

.coverage-heading {
  color: #faf2e8;
}

.coverage-heading span {
  color: #cce561;
}

.coverage-text {
  color: #e7e0d5;
}

.coverage-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #faf2e8;
}

.map-placeholder {
  background: rgba(255, 255, 255, 0.1);
  color: #faf2e8;
  backdrop-filter: blur(6px);
}


/* Grid */
.coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Eyebrow */
.coverage-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 22px;
  padding-bottom: 20px;
  /* color: var(--brand-secondary); */
}

/* Heading */
.coverage-heading {
  font-size: 42px;
  font-weight: 900;
  /* color: var(--brand-secondary); */
  margin-bottom: 26px;
  line-height: 1.15;
}

.coverage-heading span {
  /* color: var(--brand-secondary); */
  padding-bottom: 20px;
}

/* Text */
.coverage-text {
  font-size: 16px;
  /* color: var(--brand-secondary); */
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Area List */
.coverage-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  padding-bottom: 10px;
}

.coverage-list li {
  font-size: 14px;
  padding: 8px 14px;
  border: 1px solid #d6cec4;
  border-radius: 999px;
  color: #334238;
  background: #ffffff;
}

/* Map */
.coverage-map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-placeholder {
  width: 100%;
  height: 320px;
  background: #e7e0d5;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #5A4A42;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .coverage-heading {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .coverage-section {
    padding: 100px 0 90px;
  }

  .map-placeholder {
    height: 260px;
  }
}

/* ===============================
   HOME – FINAL CTA SECTION
   =============================== */

.final-cta-section {
  position: relative;
  background: var(--brand-primary);
  background-size: cover;
  background-position: center;
  padding: 170px 0 160px;
  text-align: center;
  overflow: hidden;
}

/* Overlay for readability */
.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content above overlay */
.final-cta-section .ub-container {
  position: relative;
  z-index: 2;
}

/* Eyebrow */
.final-cta-eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 800;
  margin-bottom: 26px;
  color: #cce561;
}

/* Heading */
.final-cta-heading {
  font-size: 56px;
  font-weight: 900;
  color: #faf2e8;
  margin-bottom: 28px;
  line-height: 1.12;
}

.final-cta-heading span {
  color: #cce561;
}

/* Text */
.final-cta-text {
  font-size: 16px;
  color: #e7e0d5;
  max-width: 760px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* Buttons */
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta-section {
    padding: 120px 0 110px;
  }

  .final-cta-heading {
    font-size: 36px;
  }

  .final-cta-text {
    font-size: 15px;
  }
}

/* --------------------------------ABOUT PAGE ----------------------------------- */

/* ABOUT PAGE – HERO SECTION*/


.about-hero-new {
  /* padding: 140px 0 120px; */
  padding: var(--space-s);
  /* padding-top: -10px; */
  padding-bottom: 80px;
  background-color: var(--brand-primary);
  /* height: 100vh; */
  margin-top: -40px;
}


/* LEFT */
.about-hero-content {
  color: var(--brand-secondary);
}


.about-hero-title {
  font-size: 110px;
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 32px;
}

.about-hero-title span {
  display: block;
  color: var(--brand-secondary);
}

.about-hero-desc {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.9;
}

/* RIGHT IMAGE */
.about-hero-image img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
  width: 630px;
}

.about-hero-bottom-content {
  display: flex;
  justify-content: space-between;
}

.about-hero-actions {
  margin-top: 195px;
}

.about-hero-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ff8b7b;
  /* same as your Call Now button */
  color: #1e1e1e;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.about-hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-hero-actions .btn-arrow {
  font-size: 18px;
  font-weight: 800;
  margin-top: -5px;
}

.about-hero-btn {
  font-size: 14px;
}

@media (max-width: 600px) {
  .about-hero-actions {
    margin-top: 22px;
  }

  .about-hero-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* 
  ABOUT PAGE – WHO WE ARE
*/

/*ABOUT PAGE – WHO WE ARE */

.about-who-section {
  background: #faf2e8;
  /* same as home services */
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
}

.about-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #334238;
  text-align: center;
}

.about-heading {
  font-size: 46px;
  font-weight: 900;
  color: #2B1F1A;
  text-align: center;
  margin-bottom: 70px;
  line-height: 1.15;
}

.about-heading span {
  color: #334238;
}

.about-who-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.about-who-content p {
  font-size: 16px;
  color: #5A4A42;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* RIGHT CARD */
.about-who-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-who-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #2B1F1A;
}

.about-who-card ul {
  list-style: none;
  padding: 0;
}

.about-who-card li {
  font-size: 15px;
  color: #334238;
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .about-who-section {
    padding: 90px 0;
  }

  .about-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .about-who-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-who-content p {
    font-size: 15px;
  }

  .about-who-card {
    padding: 28px 24px;
  }
}


/* ABOUT PAGE – WHAT WE DO */

.about-services-section {
  background: #ffffff;
  /* alternate bg for flow */
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-service-card {
  background: var(--brand-secondary);
  padding: 36px 30px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-service-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #2B1F1A;
}

.about-service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5A4A42;
}

.about-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.about-services-cta {
  margin-top: 70px;
  display: flex;
  justify-content: center;
}

.about-btn-services-cta {
  background-color: #ff9c94;
}


@media (max-width: 600px) {
  .about-services-section {
    padding: 90px 0;
  }

  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-service-card {
    padding: 28px 24px;
  }

  .about-service-card h3 {
    font-size: 17px;
  }

  .about-service-card p {
    font-size: 14px;
  }
}

/*
   ABOUT – OUR JOURNEY
*/

.journey-section {
  background: #334238;
  padding: var(--space-s);
  padding-bottom: 140px;
  padding-top: 140px;
}

.journey-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #cce561;
  text-align: center;
}

.journey-heading {
  font-size: 42px;
  font-weight: 900;
  color: #faf2e8;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.15;
}

.journey-heading span {
  color: #cce561;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

/* Content */
.journey-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #e7e0d5;
  margin-bottom: 22px;
}

/* Stats */
.journey-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.journey-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.journey-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: #cce561;
  margin-bottom: 6px;
}

.journey-stat span {
  font-size: 14px;
  color: #faf2e8;
}

/* Responsive */
@media (max-width: 1024px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .journey-section {
    padding: 100px 0;
  }

  .journey-heading {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .journey-content p {
    font-size: 15px;
  }

  .journey-stats {
    grid-template-columns: 1fr;
  }
}

/*
   ABOUT – WHY CHOOSE US
*/

.why-choose-section {
  background: var(--brand-secondary);
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

.why-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #334238;
}

.why-heading {
  font-size: 46px;
  font-weight: 900;
  color: #2B1F1A;
  margin-bottom: 80px;
  line-height: 1.15;
}

.why-heading span {
  color: #334238;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.why-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #2B1F1A;
}

.why-card p {
  font-size: 15px;
  color: #5A4A42;
  line-height: 1.6;
}

/* Hover */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.14);
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose-section {
    padding: 90px 0;
  }

  .why-heading {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/*
   ABOUT – FINAL CTA 
*/

.about-final-cta {
  position: relative;
  background: #334238;
  /* same brand green */
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay */
.about-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content above overlay */
.about-final-cta .ub-container {
  position: relative;
  z-index: 2;
}

.about-final-eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 800;
  margin-bottom: 26px;
  color: #cce561;
}

.about-final-heading {
  font-size: 52px;
  font-weight: 900;
  color: #faf2e8;
  margin-bottom: 28px;
  line-height: 1.12;
}

.about-final-heading span {
  color: #cce561;
}

.about-final-text {
  font-size: 16px;
  color: #e7e0d5;
  max-width: 760px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.about-final-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about-final-btn-primary .btn-arrow {
  margin-top: -5px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-final-cta {
    padding: 120px 0;
  }

  .about-final-heading {
    font-size: 34px;
  }

  .about-final-text {
    font-size: 15px;
  }

  .about-final-buttons {
    gap: 16px;
  }
}

/* ---------------------------CONTACT PAGE CSS START HERE------------------------ */

/*
   CONTACT HERO
 */

/* ABOUT PAGE – HERO SECTION*/


.contact-hero {
  /* padding: 140px 0 120px; */
  padding: var(--space-s);
  /* padding-top: -10px; */
  padding-bottom: 80px;
  background-color: var(--brand-primary);
  /* height: 100vh; */
  margin-top: -40px;
}


.contact-hero-content {
  color: var(--brand-secondary);
}


.contact-heading {
  font-size: 88px;
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 32px;
}

.contact-heading span h2 {
  display: block;
  color: #cce561;
  font-size: 58px;
  margin-top: 10px;
}

.contact-desc {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.9;
}

/* RIGHT IMAGE */
.contact-hero-content-bottom-right-section img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
  width: 630px;
}

.contact-hero-contect-bottom-section {
  display: flex;
  justify-content: space-between;
}

.contact-hero-cta {
  margin-top: 255px;
  align-items: flex-start;
}

/* CONTACT – DETAILS  */

.contact-details-section {
  background: #faf2e8;
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

.contact-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #334238;
}

.contact-details-heading {
  font-size: 46px;
  font-weight: 900;
  color: #2B1F1A;
  margin-bottom: 80px;
  line-height: 1.15;
}

.contact-details-heading span {
  color: #334238;
}

/* GRID */
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}


/* CARD */
.contact-detail-card {
  background: #ffffff;
  padding: 44px 36px;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: left;
}

/* ICON */
.contact-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(51, 66, 56, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  color: #334238;
}

.contact-detail-card:hover .contact-icon {
  background: #334238;
}

.contact-detail-card:hover .contact-icon svg {
  color: #faf2e8;
}


/* TITLE */
.contact-detail-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2B1F1A;
}

/* MAIN VALUE */
.contact-value {
  font-size: 16px;
  font-weight: 600;
  color: #334238;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-value a {
  color: #334238;
  font-weight: 700;
}

/* SUB NOTE */
.contact-note {
  font-size: 14px;
  color: #5A4A42;
  opacity: 0.9;
}

/* HOVER */
.contact-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.14);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-details-section {
    padding: 90px 0;
  }

  .contact-details-heading {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* CONTACT – ADDRESS SECTION */

.contact-address-section {
  background: #334238;
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
}

/* ADDRESS CARD */
.address-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 46px 36px;
  backdrop-filter: blur(6px);
}

.address-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cce561;
  color: #334238;
  border-radius: 50%;
}

.address-icon svg {
  width: 30px;
  height: 30px;
}

.address-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: #faf2e8;
  margin-bottom: 14px;
}

.address-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e7e0d5;
}

/* MAP */
.address-map .map-placeholder {
  height: 320px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  color: #faf2e8;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.address-map svg {
  width: 46px;
  height: 46px;
  opacity: 0.9;
}

.address-map span {
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .address-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .contact-address-section {
    padding: 100px 0;
  }

  .address-card {
    padding: 36px 26px;
  }

  .address-map .map-placeholder {
    height: 260px;
  }
}

/* ===============================
   CONTACT – FORM SECTION
   =============================== */

.contact-form-section {
  background: #faf2e8;
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

.contact-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #334238;
}

.contact-form-heading {
  font-size: 46px;
  font-weight: 900;
  color: #2B1F1A;
  margin-bottom: 80px;
  line-height: 1.15;
}

.contact-form-heading span {
  color: #334238;
}

/* FORM */
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* GROUP */
.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 13px;
  font-weight: 800;
  color: #334238;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}


.form-group input,
.form-group textarea {
  padding: 16px 18px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #d6cec4;
  outline: none;
  background: #ffffff;
  font-family: "Mulish", sans-serif;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9c8f87;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #334238;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}


/* FULL WIDTH */
.form-group.full-width {
  grid-column: span 2;
}

/* ACTION */
.form-action {
  grid-column: span 2;
  text-align: center;
  margin-top: 20px;
}

.contact-form .btn-primary {
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 10px;
  background: #ff9c94;
  color: #1a1a1a;
  letter-spacing: 0.6px;
  transition: all 0.35s ease;
  font-family: 'Mulish';
  border: none;
  cursor: pointer;
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.contact-form .btn-arrow {
  font-size: 18px;
  margin-top: -2px;
}


/* RESPONSIVE */
@media (max-width: 600px) {
  .contact-form-section {
    padding: 90px 0;
  }

  .contact-form-heading {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width,
  .form-action {
    grid-column: span 1;
  }
}

/*
   CONTACT – FINAL CTA
*/

.contact-final-cta {
  position: relative;
  background: #334238;
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}

/* Overlay */
.contact-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.contact-final-cta .ub-container {
  position: relative;
  z-index: 2;
}

/* Eyebrow */
.contact-final-eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 800;
  margin-bottom: 26px;
  color: #cce561;
}

/* Heading */
.contact-final-heading {
  font-size: 52px;
  font-weight: 900;
  color: #faf2e8;
  margin-bottom: 28px;
  line-height: 1.12;
}

.contact-final-heading span {
  color: #cce561;
}

/* Text */
.contact-final-text {
  font-size: 16px;
  color: #e7e0d5;
  max-width: 760px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* Buttons */
.contact-final-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-final-btn {
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-final-cta {
    padding: 120px 0;
  }

  .contact-final-heading {
    font-size: 34px;
  }

  .contact-final-text {
    font-size: 15px;
  }

  .contact-final-buttons {
    gap: 16px;
  }
}

/*----------------------- SEVICES PAGE CSS START HERE ------------------------- */

/* SERVICES – HERO SECTION */

.services-hero {
  background: var(--brand-primary);
  padding: var(--space-s);
  padding-bottom: 80px;
  margin-top: -40px;
  /* height: 100vh; */
}

.services-hero-content {
  color: var(--brand-secondary);
}

.services-heading {
  font-size: 88px;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 32px;
}

.services-heading span {
  display: block;
  color: #cce561;
  font-size: 56px;
  margin-top: 10px;
}

.services-hero-bottom {
  display: flex;
  justify-content: space-between;
}

.services-hero-left {
  max-width: 520px;
}

.services-desc {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

.services-hero-content-cta {
  margin-top: 240px;
}

/* IMAGE */
.services-hero-right img {
  width: 630px;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-heading {
    font-size: 48px;
  }

  .services-heading span {
    font-size: 32px;
  }

  .services-hero-bottom {
    flex-direction: column;
    gap: 40px;
  }

  .services-hero-right img {
    width: 100%;
  }
}

/* SERVICES PAGE – OVERVIEW */

.services-overview-section {
  background: #faf2e8;
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

.services-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #334238;
}

.services-overview-heading {
  font-size: 46px;
  font-weight: 900;
  color: #2B1F1A;
  margin-bottom: 90px;
  line-height: 1.15;
}

.services-overview-heading span {
  color: #334238;
}

/* GRID */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.service-overview-card {
  background: #ffffff;
  padding: 38px 32px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-overview-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #2B1F1A;
}

.service-overview-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5A4A42;
}

/* HOVER */
.service-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.14);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-overview-section {
    padding: 90px 0;
  }

  .services-overview-heading {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/*
   SERVICES – DETAIL SECTION
 */

.service-detail-section {
  background: #ffffff;
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
}

.service-eyebrow {
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #334238;
  text-align: center;
}

.service-detail-heading {
  font-size: 46px;
  font-weight: 900;
  color: #2B1F1A;
  text-align: center;
  margin-bottom: 90px;
  line-height: 1.15;
}

.service-detail-heading span {
  color: #334238;
}

/* GRID */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* CONTENT */
.service-detail-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #5A4A42;
  margin-bottom: 22px;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 32px 0 42px;
}

.service-points li {
  font-size: 15px;
  font-weight: 600;
  color: #334238;
  margin-bottom: 12px;
}

/* CTA */
.service-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-cta .btn-arrow {
  margin-top: -5px;
}

.service-more-link {
  margin-top: 28px;
  font-size: 14px;
}

.service-more-link a {
  color: #334238;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.service-more-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #cce561;
  transition: width 0.3s ease;
}

.service-more-link a:hover {
  color: #000;
}

.service-more-link a:hover::after {
  width: 100%;
}

/* IMAGE */
.service-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* SERVICES – REVERSE LAYOUT */

.service-detail-section.reverse .service-detail-grid {
  direction: rtl;
}

.service-detail-section.reverse .service-detail-content,
.service-detail-section.reverse .service-detail-image {
  direction: ltr;
}


/* RESPONSIVE */
@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .service-detail-section {
    padding: 90px 0;
  }

  .service-detail-heading {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .service-detail-content p {
    font-size: 15px;
  }

  .service-detail-image img {
    height: 280px;
  }
}

.service-alt-bg {
  background: #e3e0df;
}

/*
   SERVICES – FINAL CTA */

.services-final-cta {
  position: relative;
  background: var(--brand-primary);
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}

/* Overlay */
.services-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.services-final-cta .ub-container {
  position: relative;
  z-index: 2;
}

.services-final-eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 800;
  margin-bottom: 26px;
  color: #cce561;
}

.services-final-heading {
  font-size: 54px;
  font-weight: 900;
  color: #faf2e8;
  margin-bottom: 28px;
  line-height: 1.12;
}

.services-final-heading span {
  color: #cce561;
}

.services-final-text {
  font-size: 16px;
  color: #e7e0d5;
  max-width: 760px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.services-final-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.services-final-btn .btn-arrow {
  margin-top: -4px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-final-cta {
    padding: 120px 0;
  }

  .services-final-heading {
    font-size: 36px;
  }

  .services-final-text {
    font-size: 15px;
  }
}

/* AFTER ALL PAGES FIX CODES */

/* ===== FIX HERO IMAGE OVERFLOW ===== */

.about-hero-image img,
.services-hero-right img,
.contact-hero-content-bottom-right-section img {
  width: 100%;
  max-width: 630px;
  height: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ===== FIX HERO CARD OVERFLOW ===== */

/* .hero-card-stack {
  overflow: hidden;
} */

/* ===== FLOAT HIDE CLEAN VERSION ===== */

.float-hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s ease;
}

/* ===== GLOBAL OVERFLOW SAFETY ===== */

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ===== SAFE OVERFLOW FIX ===== */

/* .hero-card-stack, */
.work-card,
.image-wrap,
.final-cta-section,
.about-final-cta,
.contact-final-cta,
.services-final-cta {
  overflow: hidden !important;
}

/* ------------- All services Css Code start here ---------------*/

/* ... */

.single-service-hero {
  background: var(--brand-primary);
  padding: var(--space-s);
  padding-top: 0px;
  padding-bottom: 100px;
}

.single-service-title {
  font-size: 88px;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 32px;
  width: 70%;
  color: var(--brand-secondary);
}

.cctv-serives-hero-cta{
  margin-top: 240px;
}

.cold-drink-supply-title{
  width: 50%;
}

.pvc-interior-work-title{
  width: 50%;
}

.deticated-cold-drink-cta{
  margin-top: 180px;
}

.serivces-bottom-section {
  display: flex;
  justify-content: space-between;
}

.single-service-desc {
  font-size: 16px;
  color: var(--brand-secondary);
  opacity: 0.9;
  max-width: 520px;
  padding-bottom: 90px;
  line-height: 1.5;
}

.deticated-serives-hero-cta{
  margin-top: 240px;
}

.tea-supply-cta{
  margin-top: 140px;
}

.single-service-image img {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  width: 630px;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.deticated-serivces-bottom-left-section{
  max-width: 520px;
}

/* pvc */

.pvc-desc {
  padding-bottom: 130px;
}

/* hygine */

.hygiene-diaper-desc {
  padding-bottom: 150px;
}

.hygiene-heading {
  line-height: 0.99;
}

/* cold drink */

.cold-drink-desc {
  padding-bottom: 130px;
}

/* tea supply */

.tea-supply-desc {
  padding-bottom: 200px;
}


/*
   SERVICE BENEFITS – IMPROVED
================================ */

.service-benefits-section {
  background: #faf2e8;
  padding: var(--space-s);
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
}

.service-benefits-heading {
  font-size: 46px;
  font-weight: 900;
  color: #2B1F1A;
  margin-bottom: 90px;
  line-height: 1.15;
}

.service-benefits-heading span {
  color: #334238;
}

/* Grid */
.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.service-benefit-card {
  background: #ffffff;
  padding: 44px 36px;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-benefit-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #2B1F1A;
}

.service-benefit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5A4A42;
}

/* Hover */
.service-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.14);
}

/* Responsive */
@media (max-width: 1024px) {
  .service-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-benefits-section {
    padding: 90px 0;
  }

  .service-benefits-heading {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .service-benefits-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* add email option */

.footer-contact a {
  word-break: break-word;
}

.hero-card-stack {
  position: relative;
  width: 380px;
  height: 550px;
  perspective: 1200px;
  overflow: none!important;
}

.hero-card.next {
  transform: translateX(18px) scale(0.96);
}

.hero-card.last {
  transform: translateX(36px) scale(0.92);
}