/* =========================================
   PADMAVATI ENGINEERING — Design System v2
   Aesthetic: Industrial Precision + Modern Clean
   Accent: Deep Teal #0D7377
   Display: DM Sans | Body: Outfit
   DFII: 16 (Excellent)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ------- CSS Variables ------- */
:root {
  --teal:         #0D7377;
  --teal-light:   #14919B;
  --teal-dark:    #0A5460;
  --teal-pale:    #E0F4F5;
  --teal-glow:    rgba(13,115,119,0.18);
  --accent:       #4FE8B8;
  --white:        #FFFFFF;
  --off-white:    #F7F9FA;
  --bg:           #F3F6F8;
  --bg-dark:      #0F1E24;
  --bg-mid:       #172730;
  --text:         #0E1F26;
  --text-muted:   #63788A;
  --border:       #DDE5EA;
  --border-dark:  rgba(255,255,255,0.08);

  --shadow-xs:    0 1px 4px rgba(14,31,38,0.06);
  --shadow-sm:    0 4px 12px rgba(14,31,38,0.08);
  --shadow-md:    0 8px 28px rgba(13,115,119,0.14);
  --shadow-lg:    0 20px 56px rgba(13,115,119,0.18);
  --shadow-float: 0 24px 64px rgba(14,31,38,0.18);

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --display-font: 'DM Sans', sans-serif;
  --body-font:    'Outfit', sans-serif;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow:   0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h:     76px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }

/* =========================================
   TYPOGRAPHY SYSTEM
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.heading-xl {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.heading-lg {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
}

.heading-md {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.subtext {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

em.hi { font-style: normal; color: var(--teal); }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--body-font);
  letter-spacing: 0.3px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,115,119,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: all var(--transition);
}

/* Transparent on hero */
#navbar.transparent {
  background: transparent;
}

/* Solid after scroll */
#navbar.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(14,31,38,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  gap: 24px;
}

.nav-logo img {
  height: 58px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--trans-slow);
}
#navbar.solid .nav-logo img { filter: none; }

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.nav-link svg {
  width: 12px; height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform var(--transition);
}

.nav-item:hover .nav-link svg { transform: rotate(180deg); }

#navbar.solid .nav-link { color: var(--text); }

.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}
#navbar.solid .nav-link:hover,
#navbar.solid .nav-link.active {
  background: var(--teal-pale);
  color: var(--teal);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Arrow pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-dropdown a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-dropdown a:hover {
  background: var(--teal-pale);
  color: var(--teal);
}
.nav-dropdown a:hover::before { background: var(--teal); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.solid .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================
   HERO SLIDER
   ========================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--bg-dark);
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}
.slide.active .slide-bg { transform: scale(1); }

/* Overlay — diagonal teal wash */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg,
      rgba(10,84,96,0.88) 0%,
      rgba(13,115,119,0.65) 45%,
      rgba(0,0,0,0.30) 100%);
}

/* Diagonal decorative stripe */
.slide-stripe {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 100%;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(180deg, rgba(79,232,184,0.06) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Slides backgrounds */
.slide-1 .slide-bg { background-image: url('../images/banner1.jpg'); }
.slide-2 .slide-bg { background-image: url('../images/banner2.jpg'); }
.slide-3 .slide-bg { background-image: url('../images/banner3.jpg'); }
.slide-4 .slide-bg { background-image: url('../images/banner4.jpg'); }

/* Content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-h);
}

.hero-text {
  max-width: 660px;
}

/* Animated pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(79,232,184,0.12);
  border: 1px solid rgba(79,232,184,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.8s 0.3s forwards ease-out;
}

.pill-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,232,184,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(79,232,184,0); }
}

.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.8s 0.5s forwards ease-out;
}

.hero-h1 .line-accent {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.8s 0.7s forwards ease-out;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.8s 0.9s forwards ease-out;
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  animation: scrollDot 1.8s infinite ease-in-out;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(10px); opacity: 0; }
}

/* Slide controls */
.slider-nav {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* =========================================
   STATS BAR
   ========================================= */
#stats-bar {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

#stats-bar::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.06); }

.stat-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-info {}

.stat-num {
  font-family: var(--display-font);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* =========================================
   WELCOME SECTION
   ========================================= */
#welcome {
  padding: 96px 0;
  background: var(--white);
}

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

/* Image stack */
.welcome-imgs {
  position: relative;
  padding-bottom: 48px;
}

.welcome-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  display: block;
}

.welcome-img-float {
  position: absolute;
  bottom: 0; right: -20px;
  width: 200px; height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-float);
  display: block;
}

.welcome-exp-badge {
  position: absolute;
  top: 28px; left: -20px;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 100px;
}

.exp-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--display-font);
}

.exp-text {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.welcome-text .label { margin-bottom: 12px; }

.welcome-text .heading-xl { margin-bottom: 18px; }

.welcome-text .subtext { margin-bottom: 28px; }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.check-item::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--teal-pale);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 10l4 4L15 6' stroke='%230D7377' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
#products {
  padding: 96px 0;
  background: var(--bg);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .label { justify-content: center; }
.section-head .label::before { display: none; }
.section-head .subtext { margin: 0 auto; }

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: all var(--trans-slow);
  display: block;
  text-decoration: none;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}

.pc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.pc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.product-card:hover .pc-img img { transform: scale(1.1); }

.pc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,84,96,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .pc-img-overlay { opacity: 1; }

.pc-hover-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  background: var(--white);
  color: var(--teal);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.product-card:hover .pc-hover-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pc-body {
  padding: 16px 16px 18px;
}

.pc-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.pc-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  font-family: var(--display-font);
}

/* =========================================
   SERVICES / WHAT WE DO
   ========================================= */
#what-we-do {
  padding: 96px 0;
  background: var(--white);
}

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

.svc-text .label { margin-bottom: 12px; }
.svc-text .heading-xl { margin-bottom: 16px; }
.svc-text .subtext { margin-bottom: 36px; }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.svc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: default;
}

.svc-item:hover {
  background: var(--teal-pale);
  border-color: var(--teal-pale);
}

.svc-icon {
  width: 46px; height: 46px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: all var(--transition);
}

.svc-item:hover .svc-icon {
  background: var(--teal);
}

.svc-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--display-font);
  margin-bottom: 3px;
}

.svc-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Service image right */
.svc-img-wrap {
  position: relative;
}

.svc-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-float);
}

/* Teal accent block */
.svc-accent-block {
  position: absolute;
  top: -18px; right: -18px;
  width: 120px; height: 120px;
  background: var(--teal);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.18;
}

.svc-accent-block-2 {
  position: absolute;
  bottom: -18px; left: -18px;
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.15;
}

/* =========================================
   SLOGAN SECTION
   ========================================= */
#slogan {
  padding: 60px 0;
  background: var(--bg-dark);
  overflow: hidden;
  position: relative;
}

#slogan::before {
  content: 'SWIFT STURDY SAFE SAVINGS';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  font-family: var(--display-font);
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  line-height: 1;
}

.slogan-pills {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.slogan-pill {
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--display-font);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: default;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
}

.slogan-pill:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 32px rgba(13,115,119,0.4);
}

.slogan-pill.featured {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* =========================================
   CLIENTS
   ========================================= */
#clients {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}

.client-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}

.client-chip:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.client-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.client-name {
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--display-font);
  color: var(--text-muted);
  letter-spacing: 1px;
  transition: color var(--transition);
}

.client-chip:hover .client-name { color: var(--teal); }

/* =========================================
   PROJECTS PREVIEW
   ========================================= */
#projects-preview {
  padding: 96px 0;
  background: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}

.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
  display: block;
}

.project-card:hover img { transform: scale(1.12); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,84,96,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-overlay { opacity: 1; }

.project-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--transition);
}
.project-card:hover .project-label {
  transform: translateY(0);
  opacity: 1;
}
.project-label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.project-label h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

/* Proud clients note */
.projects-footer {
  text-align: center;
  margin-top: 56px;
}

/* =========================================
   CTA BANNER
   ========================================= */
#cta-band {
  padding: 84px 0;
  background: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
}

#cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

#cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-text .label { color: var(--accent); }
.cta-text .label::before { background: var(--accent); }

.cta-h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  font-family: var(--display-font);
  font-weight: 800;
  margin: 8px 0 0;
}

.cta-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 10px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: var(--bg-dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img {
  height: 56px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-bottom: 24px;
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.footer-links a::before {
  content: '';
  width: 16px; height: 1px;
  background: rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before {
  width: 22px;
  background: var(--teal-light);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fci-icon {
  width: 34px; height: 34px;
  background: rgba(13,115,119,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.fci p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom a { color: var(--teal-light); }

/* =========================================
   PAGE HERO (Inner pages)
   ========================================= */
.page-hero {
  padding-top: var(--navbar-h);
  height: 320px;
  background: linear-gradient(120deg, var(--bg-dark) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative teal square */
.page-hero::before {
  content: '';
  position: absolute;
  right: 10%; top: 50%;
  transform: translateY(-50%) rotate(25deg);
  width: 240px; height: 240px;
  border: 2px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 13%; top: 50%;
  transform: translateY(-50%) rotate(15deg);
  width: 180px; height: 180px;
  background: rgba(13,115,119,0.2);
  border-radius: var(--radius-lg);
}

.page-hero-text { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.84rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--accent); font-weight: 600; }

/* =========================================
   SCROLL TO TOP
   ========================================= */
#back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(13,115,119,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}
#back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-top:hover { background: var(--teal-dark); transform: translateY(-3px); }

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
[data-reveal],
[data-reveal="left"],
[data-reveal="right"],
[data-reveal="zoom"] {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.4,0,0.2,1);
}

[data-reveal] { transform: translateY(32px); }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="zoom"] { transform: scale(0.92); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* delay helpers */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* =========================================
   CONTACT INFO SECTION
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

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

.ci-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ci-icon {
  width: 46px; height: 46px;
  background: var(--teal-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-body h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.ci-body p {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

/* Form */
.form-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
}

.form-box .heading-md { margin-bottom: 28px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.3px;
}

.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--body-font);
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,115,119,0.1);
}

textarea.form-control { resize: vertical; min-height: 120px; }

/* =========================================
   BLOG CARDS
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--trans-slow);
  display: block;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
  border-color: var(--teal-light);
}

.blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.08); }

.blog-body { padding: 22px; }

.blog-tag {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--display-font);
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: var(--teal); }

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.blog-footer {
  padding: 0 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.read-more {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.blog-card:hover .read-more { gap: 8px; }

/* =========================================
   GALLERY / PRODUCTS GRID WIDER
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .welcome-grid,
  .svc-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

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

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.10); }

  .svc-img-main { height: 320px; }
  .welcome-img-main { height: 320px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
    box-shadow: var(--shadow-float);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-link { color: var(--text) !important; }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: var(--bg);
    padding: 4px 8px;
    display: none;
  }
  .nav-dropdown::before { display: none; }
  .nav-item.open .nav-dropdown { display: block; }

  .nav-toggle { display: flex; }
  .nav-right .btn { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .slogan-pills { gap: 10px; }
  .slogan-pill { padding: 12px 22px; font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-h1 { font-size: 1.9rem; }
  .welcome-img-float { display: none; }
  .welcome-exp-badge { left: 12px; }
  .clients-row { gap: 12px; }
  .client-chip { padding: 12px 22px; }
}
