:root {
  --teal: #1a6e6e;
  --teal-dark: #145a5a;
  --teal-light: #e8f5f5;
  --accent: #1a6e6e;
  --text: #222;
  --muted: #666;
  --light-bg: #f8f9fa;
  --white: #fff;
  --border: #e0e0e0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  text-align: justify;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--teal-dark);
  color: #cde8e8;
  font-size: 0.78rem;
  padding: 7px 0;
}

.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content:center;
  align-items: center;
 
 
}

.topbar-left {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.topbar-left a,
.topbar-right a {
  color: #cde8e8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-left a:hover,
.topbar-right a:hover {
  color: #fff;
}

.topbar-right {
  display: flex;
  gap: 12px;
}

.topbar-right a {
  font-size: 1rem;
}

/* ── NAV ── */
nav {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1280px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

/* .logo-box {
  background: var(--teal);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
} */




.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
  justify-content: center;
  gap: 5px;
}

.nav-links>li {
  flex-shrink: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
  padding: 0 14px;
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
  transition: color .2s, border-color .2s;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* ── DROPDOWN ── */
.nav-links li {
  position: relative;
}

.nav-links li.has-dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links li.has-dropdown>a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  transition: transform .25s;
}

.nav-links li.has-dropdown:hover>a::after {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: 10px;
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--teal);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 2000;
  padding: 8px 0;
}

/* Arrow tip */
.dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--teal);
}

.nav-links li.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  border-bottom: none !important;
  border-top: none !important;
  height: auto !important;
  transition: background .18s, color .18s, padding-left .18s;
}

.dropdown a:hover {
  background: var(--teal-light);
  color: var(--teal);
  padding-left: 24px;
  border-bottom: none !important;
}

.dropdown a i {
  width: 22px;
  height: 22px;
  background: var(--teal-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: background .18s;
}

.dropdown a:hover i {
  background: var(--teal);
  color: #fff;
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 18px;
}

/* Mobile dropdown */
.mobile-dropdown {
  display: none;
  flex-direction: column;
  background: var(--teal-light);
}

.mobile-dropdown.open {
  display: flex;
}

.mobile-dropdown a {
  padding: 11px 36px !important;
  font-size: 0.82rem !important;
  color: var(--teal) !important;
  border-bottom: 1px solid rgba(26, 110, 110, 0.1) !important;
}

.mobile-dropdown a:hover {
  background: rgba(26, 110, 110, 0.08);
}

.mobile-services-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-services-toggle .toggle-arrow {
  transition: transform .25s;
}

.mobile-services-toggle.open .toggle-arrow {
  transform: rotate(180deg);
}

.mobile-projects-toggle .toggle-arrow {
  transition: transform .25s;
}

.mobile-projects-toggle.open .toggle-arrow {
  transform: rotate(180deg);
}

.btn-quote {
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 11px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  transition: background .2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-quote:hover {
  background: var(--teal-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--teal);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
  color: var(--teal);
}

/* ── HERO ── */
.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(135deg, #f0f8f8 0%, #fff 60%);
  overflow: hidden;
  position: relative;
}

/* Animated diagonal teal background */
.hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  background: linear-gradient(135deg, #e8f5f5, #d0ecec);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
  animation: heroSlice 1s cubic-bezier(.22, .61, .36, 1) both;
}

/* Floating geometric shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--teal);
}

.hero-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -80px;
  right: 5%;
  animation: shapeFloat 8s ease-in-out infinite;
}

.hero-shape:nth-child(2) {
  width: 160px;
  height: 160px;
  top: 60%;
  right: 30%;
  animation: shapeFloat 6s ease-in-out infinite 1s;
}

.hero-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 48%;
  animation: shapeFloat 5s ease-in-out infinite 2s;
}

.hero-shape:nth-child(4) {
  width: 50px;
  height: 50px;
  bottom: 15%;
  left: 8%;
  background: #e9c46a;
  animation: shapeFloat 7s ease-in-out infinite .5s;
}

/* Ticker / sliding stats bar */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--teal);
  z-index: 2;
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
}

.hero-ticker-track {
  display: flex;
  gap: 60px;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 18s linear infinite;
}

.hero-ticker-track span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-ticker-track span i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
}

.hero-content {
  padding: 60px 60px 80px max(40px, calc((100vw - 1200px)/2 + 40px));
  z-index: 1;
  position: relative;
}

/* Staggered entry animations */
.hero-content .hero-badge {
  animation: fadeUp .6s ease .1s both;
}

.hero-content h1 {
  animation: fadeUp .7s ease .25s both;
}

.hero-content .hero-tagline {
  animation: fadeUp .7s ease .4s both;
}

.hero-content .hero-desc {
  animation: fadeUp .7s ease .5s both;
}

.hero-content .hero-btns {
  animation: fadeUp .7s ease .65s both;
}

.hero-content .hero-trust {
  animation: fadeUp .7s ease .8s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  border: 1px solid rgba(26, 110, 110, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 6px;
}

.hero-content h1 span {
  color: var(--teal);
  display: block;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  letter-spacing: 1.5px;
  color: var(--muted);
  margin: 18px 0 14px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Quick trust bar below buttons */
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.trust-item i {
  color: var(--teal);
  font-size: 1rem;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, color .2s, transform .2s;
}

.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.hero-img {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  padding: 40px 40px 80px 0;
  animation: fadeRight .9s ease .35s both;
}

.hero-img img {
  width: 100%;
  max-width: 560px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  object-fit: cover;

}

/* Animated slideshow placeholder */
.hero-img-placeholder {
  width: 100%;
  max-width: 540px;
  height: 540px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* 
.hero-slide:nth-child(1) {
  background: linear-gradient(135deg, #0d3b3b 0%, #1a6e6e 60%, #2a9d8f 100%);
}

.hero-slide:nth-child(2) {
  background: linear-gradient(135deg, #1a3a20 0%, #2d6a4f 60%, #52b788 100%);
}

.hero-slide:nth-child(3) {
  background: linear-gradient(135deg, #0a2540 0%, #023e8a 60%, #0096c7 100%);
} */

.hero-slide i {
  font-size: 4rem;
  opacity: 0.7;
}

.hero-slide .slide-label {
  font-size: 1rem;
  opacity: 0.9;
}

.hero-slide .slide-sub {
  font-size: 0.75rem;
  opacity: 0.65;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  transition: width .3s, background .3s;
}

.hero-dot.active {
  width: 22px;
  background: #fff;
}

/* Floating badge on image */
.hero-img-badge {
  position: absolute;
  bottom: 100px;
  left: -20px;
  z-index: 3;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: badgeFloat 3s ease-in-out infinite;
  font-family: 'Montserrat', sans-serif;
}

.hero-img-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
}

.hero-img-badge .badge-num {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--teal);
}

.hero-img-badge .badge-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-img-badge2 {
  position: absolute;
  top: 30px;
  right: -10px;
  z-index: 3;
  background: var(--teal);
  border-radius: 12px;
  padding: 11px 16px;
  box-shadow: 0 8px 28px rgba(26, 110, 110, 0.35);
  display: flex;
  align-items: center;
  gap: 9px;
  animation: badgeFloat 4s ease-in-out infinite 1s;
  font-family: 'Montserrat', sans-serif;
}

.hero-img-badge2 i {
  color: #fff;
  font-size: 1.1rem;
}

.hero-img-badge2 .badge-num {
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
}

.hero-img-badge2 .badge-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ── SECTION COMMON ── */
section {
  padding: 20px 20px;
}

.section-inner {
  max-width: 1200px;
  margin: auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--teal);
  max-width: 50px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 18px;
}

.section-title span {
  color: var(--teal);
}

.section-center {
  text-align: center;
}

.section-center .section-label {
  justify-content: center;
}

/* ── ABOUT ── */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);

}

.about-img-wrap img {
  width: 100%;
  
  object-fit: cover;
}

.about-img-placeholder {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.about-img-placeholder img {
  border-radius: 20px;
}


.about-desc {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--teal-light);
  border-radius: 8px;
  border-left: 4px solid var(--teal);
}

.stat-item i {
  font-size: 1.6rem;
  color: var(--teal);
  width: 36px;
  text-align: center;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--teal);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  margin-top: 24px;
  transition: background .2s;
}

.btn-read:hover {
  background: var(--teal-dark);
}

/* ── SERVICES ── */
.services {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform .25s, box-shadow .25s;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(26, 110, 110, 0.15);
  border-bottom-color: var(--teal);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.6rem;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
  a{text-decoration: none;
    color: #222222;
  }
}

.service-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FEATURED PROJECTS ── */
.projects {
  background: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s;
  width: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-img {
  position: relative;
  /* Critical: keeps the absolute overlay contained */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* This is the magic for responsive images without fixed heights */
.project-img img {
  width: 100%;

  /* Maintains perfect aspect ratio as width changes */
  display: block;
  /* Removes weird spacing below images */

  /* PRO-TIP: If your images have different sizes, uncomment the two lines below 
     to make them perfectly uniform in the grid without distorting them */
  /* aspect-ratio: 4 / 3; */
  /* object-fit: cover; */
}

.project-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4));
  pointer-events: none;
  /* Ensures the overlay doesn't block hover/click events on the image */
}

.project-info {
  padding: 16px;
}

.project-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.project-info p {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.projects-cta {
  text-align: center;
  margin-top: 36px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 11px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  transition: background .2s, color .2s;
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablets */
  }
}

@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
  }
}

/* ── CLIENTS ── */
/* Container that hides the content moving outside of it */
.logo-slider {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
  background-color: #f8f9fa;
  /* Optional background */
  white-space: nowrap;
}

/* The track holding all logos */
.clients-logos {
  display: flex;
  align-items: center;
  width: max-content;
  /* Important: makes sure it doesn't wrap to the next line */
  /* 15s is the speed. Change it to make it faster or slower */
  animation: infiniteScroll 15s linear infinite;
}

/* Pause the animation when the user hovers over the logos */
.logo-slider:hover .clients-logos {
  animation-play-state: paused;
}

/* Individual logo boxes */
.client-logo {
  width: 150px;
  /* Adjust this width based on your image size */
  margin: 0 30px;
  /* Space between logos */
  flex-shrink: 0;
}

/* Ensure images fit perfectly */
.client-logo img {
  width: 100%;

  object-fit: cover;
  display: block;
}

/* The Infinite Loop Animation */
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Move exactly 50% of the total width (which is the width of the original set) */
    transform: translateX(-50%);
  }
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

/* Animated background blobs */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  animation: blobFloat 6s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: blobFloat 8s ease-in-out infinite reverse;
}

.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  animation: particleRise linear infinite;
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-icon-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-phone-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  animation: phonePulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
}

.cta-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  animation: slideInLeft .7s ease both;
}

.cta-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 5px;
  animation: slideInLeft .7s ease .15s both;
}

.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: slideInRight .7s ease .2s both;
}

.btn-call {
  background: #fff;
  color: var(--teal);
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.btn-call:hover {
  background: #e8f5f5;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-call i {
  animation: phoneRing 1.5s ease-in-out infinite;
}

.btn-consult {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.btn-consult::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform .35s ease;
}

.btn-consult:hover::before {
  transform: translateX(0);
}

.btn-consult:hover {
  transform: translateY(-3px);
  border-color: #fff;
}

/* Animated divider line */
.cta-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmerLine 3s linear infinite;
  background-size: 200% 100%;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-10px, 15px) scale(0.97);
  }
}

@keyframes particleRise {
  0% {
    transform: translateY(100px) scale(0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateY(-120px) scale(1);
    opacity: 0;
  }
}

@keyframes phonePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
}

@keyframes phoneRing {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(15deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  40% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmerLine {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ── FOOTER ── */
footer {
  background: #0d3b3b;
  color: #aac8c8;
  padding: 60px 20px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .logo-box {
  background: var(--teal);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: #9dc0c0;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cde8e8;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background .2s;
}

.footer-social a:hover {
  background: var(--teal);
  color: #fff;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #9dc0c0;
  text-decoration: none;
  font-size: 0.83rem;
  transition: color .2s;
}
.footer-contact-list a{color: #9dc0c0;
  text-decoration: none;
  font-size: 0.83rem;
  transition: color .2s;}
.footer-contact-list a:hover{ color: #fff;}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #9dc0c0;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--teal);
  margin-top: 3px;
  width: 14px;
}

.footer-map {
  width: 100%;
  height: 130px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  /* justify-content: center; */
      align-items: baseline;
  color: #cde8e8;
  font-size: 0.8rem;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-map i {
  font-size: 1.5rem;
  color: var(--teal);
}

.footer-bottom {
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 0.78rem;
  color: #6a9090;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroSlice {
  from {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }

  to {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes shapeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(8deg);
  }
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes dotBlink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links,
  .btn-quote {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .about-img-placeholder {
    justify-self: center;
  }

  .about-img-placeholder img {
    width: 500px;
    border-radius: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .hero-content {
    padding: 60px 24px 30px;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-img {
    padding: 0 24px 70px;
  }

  .hero-img-placeholder {
    max-width: 100%;
    height: 300px;
  }

  .hero-img-badge {
    left: 10px;
    bottom: 80px;
  }

  .hero-img-badge2 {
    right: 10px;
    top: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  /* .about-img-wrap {
    height: 400px;
  } */

  .about-img-placeholder {

    justify-self: center;
  }

  .about-img-placeholder img {
    width: 350px;
  }

  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1;
    min-width: 140px;
  }

  .nav-links,
  .btn-quote {
    display: none;
  }

  .hamburger {
    display: block;
  }
   .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 650px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-icon-wrap {
    justify-content: center;
  }

  .cta-btns {
    justify-content: center;
  }

  .topbar-left {
    gap: 10px;
  }

  .about-stats {
    flex-direction: column;
  }
  .logo-box img{width: 150px !important;}
}

@media (max-width: 400px) {
  /* .logo-box {width: 150px ;} */
  .cta-icon-wrap{gap: 2px;}
  .footer-map{align-items: normal;}
  .cta-text h3 {
    font-size: 15px !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* About Us  */
/* ── INNER PAGE HEADER (ABOUT US) ── */
.page-header {
  background: var(--teal-light);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header .main-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--teal-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: var(--muted);
  margin-left: 10px;
}

.breadcrumb .active {
  color: var(--teal);
}

/* ── MISSION & VISION CARDS ── */
.mv-section {
  background: var(--light-bg);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.mv-card {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(26, 110, 110, 0.15);
}

.mv-card-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.mv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 16px;
}

.mv-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* ── INNER PAGE HEADER (ABOUT US) ── */
.page-header {
  /* Yaha apni image ka naam ya path dalein */
  background-image: url('images/img/page-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* Parallax effect ke liye (optional) */

  padding: 100px 20px 80px;
  /* Thoda padding badha diya better look ke liye */
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Image ke upar Teal color ka transparent overlay */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Agar black overlay chahiye toh rgba(0,0,0,0.6) use karein */
  background: rgba(20, 90, 90, 0.75);
  /* var(--teal-dark) ka transparent version */
  z-index: 1;
}

.page-header .main-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #ffffff;
  /* Dark color se White kar diya */
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  /* Text ko overlay ke upar laane ke liye */
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 2;
  /* Text ko overlay ke upar laane ke liye */
}

.breadcrumb a {
  color: #cde8e8;
  /* Light teal color */
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  color: rgba(255, 255, 255, 0.5);
  margin-left: 10px;
}

.breadcrumb .active {
  color: #ffffff;
}

/* About Us  */
/* Contact Us */
/* ── CONTACT US PAGE ── */
.contact-section {
  padding: 80px 20px;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form Styling */
.contact-form-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--light-bg);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 110, 110, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Contact Info Styling */
.contact-info-wrap {
  padding-top: 50px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  transform: translateY(-5px);
  background: var(--teal);
  color: #fff;
}

.contact-info-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-info-text p, 
.contact-info-text a {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-text a:hover {
  color: var(--teal);
}

/* Map Section */
.map-section {
  padding-bottom: 80px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-form-card {
    order: 2; /* Info pehle dikhega mobile me, form baad me */
  }
  .contact-info-wrap {
    order: 1;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-card {
    padding: 24px;
  }
      .about-img-placeholder img {width: 300px;}
}
/* Contact Us */
/* service */
/* ── SINGLE SERVICE DETAIL PAGE ── */
.service-details-section { padding: 80px 20px; background: #fff; }
.service-details-grid { display: grid; grid-template-columns: 1fr 2.8fr; gap: 50px; align-items: start; }

/* Sidebar Styling */
.service-sidebar { background: var(--light-bg); padding: 30px 20px; border-radius: 10px; position: sticky; top: 100px; }
.service-sidebar h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; margin-bottom: 20px; color: var(--teal-dark); border-bottom: 2px solid var(--border); padding-bottom: 12px; }
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li { margin-bottom: 10px; }
.service-list a { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; background: #fff; color: var(--muted); text-decoration: none; border-radius: 6px; font-weight: 600; font-size: 0.85rem; transition: all 0.3s ease; border-left: 3px solid transparent; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.service-list a:hover, .service-list a.active { background: var(--teal-light); color: var(--teal); border-left-color: var(--teal); }

/* Sidebar Quick Contact */
.sidebar-contact { margin-top: 30px; background: linear-gradient(135deg, var(--teal-dark), var(--teal)); color: #fff; padding: 30px 20px; border-radius: 10px; text-align: center; box-shadow: var(--shadow); }
.sidebar-contact i { font-size: 2.5rem; margin-bottom: 15px; opacity: 0.9; }
.sidebar-contact h4 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; margin-bottom: 10px; }
.sidebar-contact p { font-size: 0.85rem; opacity: 0.85; margin-bottom: 20px; }
.sidebar-contact .btn-white { display: inline-block; background: #fff; color: var(--teal); padding: 12px 24px; border-radius: 4px; text-decoration: none; font-weight: 700; font-size: 0.85rem; transition: transform 0.2s; }
.sidebar-contact .btn-white:hover { transform: translateY(-3px); }

/* Main Content Styling */
.service-content img { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; margin-bottom: 35px; box-shadow: var(--shadow); }
.service-content h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.2rem); color: var(--text); margin-bottom: 20px; }
.service-content p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; margin-bottom: 20px; }
.service-content h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--teal-dark); margin: 40px 0 20px; }

/* Grid Features */
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; }
.feature-box { display: flex; align-items: flex-start; gap: 18px; padding: 24px; background: var(--light-bg); border-radius: 8px; border-top: 3px solid var(--teal); transition: transform 0.3s ease; }
.feature-box:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: #fff; }
.feature-box-icon { width: 50px; height: 50px; background: var(--teal-light); color: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.feature-box-text h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.feature-box-text p { font-size: 0.85rem; margin: 0; color: var(--muted); }

/* Responsive Adjustments */
@media (max-width: 991px) {
  .service-details-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-sidebar { position: static; order: 2; /* Move sidebar below content on mobile */ }
  .service-content { order: 1; }
  .service-content img { height: 300px; }
}

@media (max-width: 576px) {
  .service-features { grid-template-columns: 1fr; }
  .service-content img { height: 220px; }
}
/* service */
/* project */
/* ── PROJECTS PAGE SPECIFIC ── */
.projects-page-wrap {
  padding: 80px 20px;
  background: var(--light-bg);
}

/* Comprehensive Project Table */
.project-table-section {
  padding: 60px 20px 80px;
  background: #fff;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px; /* Ensures table doesn't squish too much on mobile */
  font-family: 'Open Sans', sans-serif;
}

.custom-table thead {
  background: var(--teal-light);
}

.custom-table th {
  padding: 18px 20px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal-dark);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.custom-table td {
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.custom-table tbody tr {
  transition: background 0.2s ease;
}

.custom-table tbody tr:hover {
  background: #fdfdfd;
  box-shadow: inset 4px 0 0 var(--teal);
}

/* Specific Column Styling */
/* .col-sr { font-weight: 700; color: var(--muted); width: 60px; } */
.col-sr{display: none !important;}
.col-name { font-weight: 700; color: var(--teal-dark); }
.col-owner { font-weight: 600; }
.col-cost { font-family: 'Montserrat', sans-serif; font-weight: 600; color: #2e7d32; }

/* Year Badge */
.year-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--teal);
  color: #fff;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
/* ── PAGINATION STYLING ── */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-btn {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal);
}

.page-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#pageNumbers {
  display: flex;
  gap: 5px;
}
/* ── FULLY RESPONSIVE TABLE (CARD VIEW FOR MOBILE) ── */
@media (max-width: 768px) {
  
  /* Table ki default property hata kar usko block banana */
  .custom-table, 
  .custom-table thead, 
  .custom-table tbody, 
  .custom-table th, 
  .custom-table td, 
  .custom-table tr { 
    display: block; 
  }
  
  /* Mobile par table ki purani header line hide karna */
  .custom-table thead tr { 
    display: none; 
  }
  
  /* Har Row (tr) ko ek Card ka design dena */
  .custom-table tr { 
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    border-top: 4px solid var(--teal);
  }
  
  /* Har cell (td) ko flexbox banana taaki heading left me aur value right me aaye */
  .custom-table td { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    padding: 14px 16px;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.9rem;
  }
  
  .custom-table td:last-child { 
    border-bottom: none; 
    background-color: var(--light-bg);
  }
  
  /* CSS ke through fake headings add karna (bina HTML change kiye) */
  .custom-table td::before { 
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--teal-dark);
    font-size: 0.85rem;
    text-align: left;
    padding-right: 15px;
    text-transform: uppercase;
  }

  /* Yahan hum bata rahe hain ki kis line par konsi heading dikhani hai */
  /* .custom-table td:nth-of-type(1)::before { content: "Sr. No:"; }
  .custom-table td:nth-of-type(2)::before { content: "Name of Work:"; }
  .custom-table td:nth-of-type(3)::before { content: "Client / Owner:"; }
  .custom-table td:nth-of-type(4)::before { content: "Location:"; }
  .custom-table td:nth-of-type(5)::before { content: "Project Cost:"; }
  .custom-table td:nth-of-type(6)::before { content: "Year:"; } */
  /* Yahan hum bata rahe hain ki kis line par konsi heading dikhani hai (8 Columns) */
  .custom-table td:nth-of-type(1)::before { content: "Sr. No:"; }
  .custom-table td:nth-of-type(2)::before { content: "Name of Work:"; }
  .custom-table td:nth-of-type(3)::before { content: "Client / Owner:"; }
  .custom-table td:nth-of-type(4)::before { content: "Location:"; }
  .custom-table td:nth-of-type(5)::before { content: "Architect / Consultant:"; }
  .custom-table td:nth-of-type(6)::before { content: "Project Cost:"; }
  .custom-table td:nth-of-type(7)::before { content: "Year:"; }
  .custom-table td:nth-of-type(8)::before { content: "Remarks:"; }
  /* Table container ki width fix karna */
  .custom-table { min-width: 100%; }
  .table-responsive { 
    box-shadow: none; 
    border-top: none; 
    background: transparent; 
    overflow-x: hidden; 
  }
  
  /* Mobile ke liye chote Pagination Buttons */
  .pagination-container { gap: 6px; }
  .page-btn { padding: 8px 12px; font-size: 0.8rem; }
  .col-name { text-align: right; }
}

@media (max-width: 400px) {
  /* Bohot chote phones ke liye thoda text size adjust karna */
  .custom-table td { flex-direction: column; align-items: flex-start; text-align: left; gap: 5px; }
  .custom-table td::before { padding-right: 0; color: var(--teal); }
  .col-name { text-align: left; }
}
/* project */
/* certificate */
/* ── CERTIFICATE PAGE SPECIFIC (AS PER REFERENCE IMAGE) ── */
.certificate-section {
  padding: 80px 20px;
  background: var(--light-bg);
}

/* Image me 3 column hain, isliye 3 columns set kiye */
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  margin-top: 40px;
}

.certificate-card {
  background: #fff;
  padding: 25px 25px 35px 25px; /* Image jaisa white border effect dene ke liye */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Sirf upar aane ka animation */
  border: none; /* Koi border nahi */
}

/* Hover karne par sirf thoda sa upar aayega (Lift effect) */
.certificate-card:hover {
  transform: translateY(-10px); 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Upar aane par halki shadow taaki real lage */
}

.certificate-img {
  width: 100%;
  height: 380px; 
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Image katega nahi, pura fit hoga */
}

/* Image ke niche wala text (Italic font image jaisa) */
.certificate-title {
  font-family: 'Georgia', serif; 
  font-style: italic;
  font-size: 1.15rem;
  color: #111;
  font-weight: 600;
}

/* Responsive (Mobile aur Tablet ke liye) */
@media (max-width: 991px) {
  .certificate-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .certificate-grid { grid-template-columns: 1fr; }
  .certificate-img { height: 300px; }
}
/* certificate */
/* OUR ASSOCIATES */
/* Main Wrapper Container */
.mentorship-wrapper {
  max-width: 1140px; /* Adjust to match your website's container width */
  margin: 50px auto;
  padding: 0 15px;
  font-family: 'Inter', sans-serif;
}

/* Heading Row Styling */
.mentorship-title-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: center;
}

.mentorship-icon {
  background-color: #145a5a; /* Teal brand color */
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}

.mentorship-title-row h2 {
  color: #145a5a; /* Teal brand color */
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

/* Thin Divider Line */
.mentorship-line {
  border: none;
  border-top: 1px solid #dcdcdc;
  margin: 0 0 35px 0;
}

/* Cards Flex Container */
.mentorship-cards-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

/* Individual Mentor Card */
.mentor-item {
  background-color: #ffffff;
  /* This creates the thick colored line on the left side */
  border-left: 6px solid #1a8377; 
  border-radius: 8px; /* Rounds the corners of the box and the left border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow like the image */
  padding: 22px 35px;
  flex: 1; /* Makes cards stretch to fill available space evenly */
  min-width: 250px; /* Prevents cards from getting too squished on smaller screens */
}

.mentor-item h4 {
  margin: 0;
  font-size: 18px;
  color: #2c3e50;
  font-weight: 700;
  text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .mentorship-title-row h2 {
    font-size: 26px;
  }
  .mentorship-cards-container {
    flex-direction: column;
  }
}
/* ── ASSOCIATES PAGE SPECIFIC (WITH LOGO & SOCIALS) ── */
.associates-wrap {
  padding: 80px 20px;
  background: var(--light-bg);
}

.associates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr ;
  gap: 50px;
  margin-top: 50px;
}

.associate-col {
  background: transparent;
}

.associate-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--teal-dark);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 15px;
}

.associate-col h3 i { color: var(--teal); font-size: 1.8rem; }

/* Stylish Card Design */
.associate-card {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Info left, Socials right */
  background: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--teal);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.associate-card:hover {
  transform: translateX(8px); 
  box-shadow: 0 8px 25px rgba(26, 110, 110, 0.15);
}

/* Left Section: Logo + Name */
.associate-card-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Logo Image Container */
.associate-logo {
  width: 55px;
  height: 55px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px; /* Box look ke liye, gol chahiye toh 50% kar dein */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}

.associate-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Logo katega nahi */
}

/* Associate Text Info */
.associate-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
  text-transform: capitalize;
}

.associate-info p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 4px 0 0 0;
  font-weight: 600;
}

/* Right Section: Social Media Links */
.associate-socials {
  display: flex;
  gap: 8px;
}

.associate-socials a {
  width: 32px;
  height: 32px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.associate-socials a:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive Grid for Mobile */
@media (max-width: 900px) {
  .associates-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 450px) {
  .associate-card { flex-direction: column; align-items: flex-start; gap: 15px; }
  .associate-socials { width: 100%; justify-content: flex-start; padding-left: 73px; }
}
/* OUR ASSOCIATES */

/* Clients */
/* ── CLIENTS PAGE SPECIFIC (LOGO GRID) ── */
.clients-wrap {
  /* padding: 80px 20px; */
  background: var(--light-bg);
}

/* 5 Columns ka grid badi screen ke liye */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* Har logo ke liye ek clean white box */
.client-logo-box {
  background: #fff;
width: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover karne par halka sa lift aur shadow badhega */
.client-logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(26, 110, 110, 0.12);
  border-color: var(--teal-light);
}

 .client-logo-box img {
  width: 100%;
  object-fit: cover; 
  /* Agar aap chahein ki logo pehle grey dikhe aur hover pe color aaye, toh niche ki 2 line use karein: */
  /* filter: grayscale(100%); opacity: 0.7; transition: 0.3s;  */
 } 
/* 
.client-logo-box:hover img {
  filter: grayscale(0%); opacity: 1;
} */

/* Responsive Grid */
@media (max-width: 991px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .client-logo-box {  padding: 15px; }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .client-logo-box { padding: 10px; }
}
/* Clients */

/* whatsapp and top button */
/* --- Floating WhatsApp Icon (Bottom Left) --- */
.whatsapp-float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 40px;
  left: 40px;
  background-color: #25d366; /* Official WhatsApp Color */
  color: #FFF;
  border-radius: 50px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  color: #FFF;
  transform: translateY(-5px); /* Slight lift effect on hover */
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

/* --- Go to Top Button (Bottom Right) --- */
.go-top-btn {
  display: none; /* Hidden by default, revealed by JS on scroll */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  border: none;
  outline: none;
  background-color: #2b7a78; /* Teal matching your website theme */
  color: white;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 15px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  justify-content: center;
  align-items: center;
}

.go-top-btn:hover {
  background-color: #1f5c5a; /* Darker teal on hover */
  transform: translateY(-5px);
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}
/* whatsapp and top button */
/* On Going Projects */
/* Container & Spacing (Adjust padding as needed to match your existing sections) */
.ongoing-projects-section {
  padding: 60px 15px;
  background-color: #fcfcfc; /* Matches the subtle off-white background */
  font-family: 'Inter', sans-serif; /* Adjust to your site's font */
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.pre-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #777;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pre-heading .line {
  height: 1px;
  width: 40px;
  background-color: #ccc;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-header h2 .highlight {
  color: #1a8377; /* The teal brand color from your design */
}

.section-header p {
  color: #666;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layout */
.onprojects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* Card Styling to match the "Our Architects" list */
/* .design-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 24px 30px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.design-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.design-card p {
  font-size: 14px;
  color: #7a7a7a;
  margin: 0;
  font-weight: 500;
} */
 .design-card {
  background: #ffffff;
  padding: 24px 30px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Remove the full border from the previous code */
  border: none; 
  
  /* Add the border ONLY to the bottom */
  border-bottom: 4px solid #1a8377; /* Uses the brand's teal color */
}

/* Keep the hover effect the same */
.design-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.design-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.design-card p {
  font-size: 14px;
  color: #7a7a7a;
  margin: 0;
  font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
  .projects-grid {
    grid-template-columns: 1fr; /* Stacks cards on mobile */
  }
}
/* On Going Projects */