:root {
  --primary: #0b84d8;
  --primary2: #005b9e;
  --accent: #13b6a5;
  --secondary: #30b94d;
  --dark: #071525;
  --text: #142033;
  --muted: #627187;
  --soft: #eff8ff;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(5, 35, 75, .16);
  --shadow-sm: 0 12px 34px rgba(5, 35, 75, .1);
  --radius: 28px;
  --ease: cubic-bezier(.2, .8, .2, 1)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65
}

a {
  text-decoration: none;
  color: inherit
}

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

/* .container {
  width: min(1300px, 10%);
  margin: auto
} */

.topbar {
  background: #06111f;
  color: #dff6ff;
  font-size: 13px
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  flex-wrap: wrap
}

.topbar i {
  color: #6fd7ff
}

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  z-index: 50;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .06)
}

.nav-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px
}

.brand b {
  display: block;
  font-size: 22px;
  color: #0c6eb5;
  line-height: 1.1
}

.brand small {
  display: block;
  color: #111;
  font-weight: 600
}

.logo-mark {
  width: 64px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ebfbff, #fff);
  border: 2px solid #aee5ff;
  color: #0c7ed0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
  box-shadow: var(--shadow-sm)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px
}

.nav-links a {
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  color: #263547;
  transition: .3s
}

.nav-links a:hover,
.nav-links .active {
  background: #e8f7ff;
  color: var(--primary)
}

.nav-quote,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff !important;
  padding: 14px 22px !important;
  border-radius: 14px !important;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(11, 132, 216, .25);
  transition: .3s var(--ease)
}

.btn:hover,
.nav-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(11, 132, 216, .32)
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: none
}

.btn.light {
  background: #fff;
  color: var(--primary) !important
}

.drop {
  position: relative
}

.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  min-width: 245px;
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: .3s;
  z-index: 10
}

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

.dropdown a {
  display: block;
  border-radius: 12px
}

.menu-toggle {
  display: none;
  background: #eaf7ff;
  border: 0;
  border-radius: 12px;
  padding: 12px;
  font-size: 20px;
  color: var(--primary)
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: 1.2s ease
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 13, 24, .92), rgba(8, 74, 120, .55), rgba(0, 0, 0, .15))
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px
}

.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  margin: 0 0 22px;
  font-weight: 700;
  letter-spacing: -.02em
}

.hero p {
  font-size: 18px;
  color: #e5f7ff;
  max-width: 680px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px
}

.hero-controls {
  position: absolute;
  right: 5%;
  top: 50%;
  z-index: 3;
  display: grid;
  gap: 12px
}

.hero-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: .3s
}

.hero-controls button:hover {
  background: var(--primary);
  transform: scale(1.08)
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -50px;
  position: relative;
  z-index: 3
}

.stat {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #e8f3fb
}

.stat b {
  display: block;
  font-size: 42px;
  line-height: 1;
  color: var(--primary);
  font-weight: 900
}

.stat span {
  font-weight: 700;
  color: #526277
}

.section {
  padding: 95px 0
}

.section.alt {
  background: linear-gradient(180deg, #f4fbff, #eef8ff)
}

.section.dark {
  background: #071525;
  color: #fff
}

.section.dark p {
  color: #cfe1ee
}

.section-title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 46px
}

.section-title h2 {
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.1;
  margin: 5px 0 12px;
  letter-spacing: -.03em
}

.section-title p {
  color: var(--muted);
  margin: 0
}

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

.split h2,
.quote-layout h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -.03em
}

.split p {
  color: var(--muted)
}

.section.dark .split p {
  color: #c6d6e4
}

.ticks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0
}

.ticks span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
  color: #314158
}

.ticks i {
  color: var(--secondary);
  margin-top: 4px
}

.image-combo {
  position: relative
}

.image-combo>img,
.rounded-img {
  height: 470px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}

.floating-card {
  position: absolute;
  right: -18px;
  bottom: 28px;
  background: #fff;
  border-radius: 22px;
  padding: 20px 25px;
  box-shadow: var(--shadow);
  animation: floaty 3.8s ease-in-out infinite
}

.floating-card b {
  display: block;
  color: var(--primary);
  font-size: 34px;
  line-height: 1
}

.floating-card span {
  font-size: 13px;
  font-weight: 700;
  color: #455
}

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

.service-card {
  background: #fff;
  border: 1px solid #e4f1fa;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: .38s var(--ease);
  position: relative
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
  border-color: #bfeaff
}

.card-img {
  height: 180px;
  display: block;
  position: relative;
  overflow: hidden
}

.card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .7s var(--ease)
}

.service-card:hover img {
  transform: scale(1.12) rotate(.5deg)
}

.card-img span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 15px 25px rgba(11, 132, 216, .28)
}

.card-body {
  padding: 38px 21px 24px
}

.card-body h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 8px
}

.card-body p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 15px
}

.card-body ul {
  padding-left: 18px;
  margin: 0 0 14px;
  color: #42556b;
  font-size: 13px
}

.text-link {
  font-weight: 900;
  color: var(--primary);
  font-size: 14px
}

.process-list {
  display: grid;
  gap: 16px
}

.process-list div {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 22px;
  transition: .3s
}

.process-list div:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateX(6px)
}

.process-list b {
  color: #68d7ff;
  font-size: 24px
}

.process-list h3 {
  margin: 3px 0
}

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

.category-grid.big {
  grid-template-columns: repeat(4, 1fr)
}

.category-card {
  position: relative;
  height: 270px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  isolation: isolate
}

.category-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: .7s var(--ease)
}

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

.category-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 20, 40, .82));
  z-index: 1
}

.category-card span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  z-index: 2
}

.category-card:hover span {
  color: #8be7ff
}

.client-marquee {
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e7f2fb
}

.client-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 32s linear infinite
}

.client-logo {
  width: 178px;
  height: 88px;
  border-radius: 17px;
  border: 1px solid #e6f1f8;
  background: linear-gradient(180deg, #fff, #f8fcff);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  color: #14517f;
  padding: 12px
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 58px;
  border-radius: 36px;
  color: #fff;
  background: linear-gradient(135deg, rgba(6, 21, 38, .94), rgba(7, 92, 151, .82)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80') center/cover;
  box-shadow: var(--shadow)
}

.cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 10px
}

.cta p {
  color: #dcefff;
  margin: 0
}

.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 125px 0;
  background: linear-gradient(135deg, rgba(4, 18, 32, .94), rgba(8, 121, 190, .78)), url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1700&q=80') center/cover
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #e5f7ff
}

.water-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .11);
  filter: blur(2px);
  animation: pulse 6s infinite
}

.orb-1 {
  width: 280px;
  height: 280px;
  left: -70px;
  bottom: -90px
}

.orb-2 {
  width: 160px;
  height: 160px;
  right: 12%;
  top: 40px;
  animation-delay: 1s
}

.project-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: -20px 0 34px
}

.filter-btn {
  border: 1px solid #cfe8fb;
  background: #fff;
  color: #226;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800
}

.filter-btn.active {
  background: var(--primary);
  color: #fff
}

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

.project-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid #e6f1f8;
  transition: .36s var(--ease);
  position: relative
}

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

.project-img {
  height: 255px;
  overflow: hidden;
  position: relative
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .72s var(--ease)
}

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

.shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .35), transparent 70%);
  transform: translateX(-100%);
  transition: .8s
}

.project-card:hover .shine {
  transform: translateX(100%)
}

.project-info {
  padding: 23px
}

.project-info span {
  display: inline-block;
  background: #e9f8ff;
  color: var(--primary);
  font-weight: 900;
  font-size: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  margin-bottom: 9px
}

.project-info h3 {
  font-size: 22px;
  margin: 0 0 4px
}

.project-info p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

.table-shell {
  overflow: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e6f1f8
}

table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  min-width: 760px
}

th {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  text-align: left;
  font-size: 14px
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid #edf3f8
}

tbody tr {
  transition: .25s
}

tbody tr:hover td {
  background: #f1fbff
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px
}

.detail-main,
.side-box,
.form-card {
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e6f1f8
}

.detail-hero {
  height: 360px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 28px
}

.detail-main h2 {
  font-size: clamp(30px, 4vw, 35px);
  line-height: 1.1;
  margin: 0 0 14px
}

.detail-main p {
  color: var(--muted);
  margin-bottom: 10px;
}

.detail-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 14px;
  margin: 20px 0 32px */
}

.detail-points div {
  display: flex;
  gap: 12px;
  background: #f5fbff;
  border-radius: 16px;
  padding: 14px;
  font-weight: 700
}

.detail-points i {
  color: var(--secondary);
  margin-top: 3px
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 18px 0 30px
}

.timeline div {
  display: flex;
  gap: 18px;
  background: #f7fbff;
  border-radius: 12px;
  padding: 18px;
  border-left: 4px solid var(--primary)
}

.timeline b {
  color: var(--primary);
  font-size: 23px
}

.mini-cta {
  border-radius: 24px;
  background: linear-gradient(135deg, #eaf8ff, #f5fffd);
  padding: 24px
}

.sidebar {
  position: sticky;
  top: 110px;
  height: max-content
}

.side-box {
  margin-bottom: 20px
}

.side-box h3 {
  margin-top: 0
}

.side-box a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #edf3f8;
  font-weight: 700;
  color: #36485d;
  transition: .25s
}

.side-box a:hover,
.side-box a.current {
  color: var(--primary);
  padding-left: 6px
}

.side-box.accent {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff
}

.side-box.accent .btn {
  background: #fff;
  color: var(--primary) !important
}

.quality-grid,
.supplier-grid,
.client-grid {
  display: grid;
  gap: 20px
}

.quality-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px
}

.quality-grid div,
.supplier,
.client-tile {
  background: #fff;
  border: 1px solid #e6f1f8;
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: .3s
}

.quality-grid div:hover,
.supplier:hover,
.client-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.quality-grid i,
.client-tile i {
  color: var(--primary);
  font-size: 28px
}

.quality-grid b,
.quality-grid span {
  display: block
}

.quality-grid span {
  color: var(--muted);
  font-size: 13px
}

.supplier-grid {
  grid-template-columns: repeat(6, 1fr)
}

.supplier {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #14517f
}

.client-grid {
  grid-template-columns: repeat(4, 1fr)
}

.client-tile {
  text-align: center;
  display: grid;
  gap: 10px;
  place-items: center;
  min-height: 130px;
  font-weight: 900
}

.contact-layout,
.quote-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start
}

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

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid #1b1b1b !important;
  border-radius: 15px;
  padding: 15px 16px;
  font: inherit;
  margin-bottom: 14px
}

.form-card textarea {
  min-height: 145px;
  resize: vertical
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px #e1f4ff
}

.contact-cards {
  display: grid;
  gap: 16px
}

.contact-cards div {
  /* background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgb(208, 235, 252) !important; */
  padding: 14px;
}

.contact-cards > div, .contact-icon-box {
    align-items: flex-start;
    text-align: left;
    position: relative;
    display: flex !important;
    gap: 18px;
    background: rgb(225, 243, 255) !important;
    overflow: hidden;
    padding: 24px 26px !important;
    border-radius: 18px !important;
}

.contact-cards i {
  font-size: 28px;
  color: var(--primary)
}

.footer {
  background: #071525;
  color: #d5e8f5;
  padding: 72px 0 18px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 34px
}

.footer .brand b,
.footer h3 {
  color: #fff
}

.footer .brand small {
  color: #b8d7e9
}

.footer p {
  color: #b8cddd
}

.footer a {
  display: block;
  color: #d5e8f5;
  margin: 8px 0
}

.social {
  display: flex;
  gap: 10px
}

.social i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .11);
  margin-top: 42px;
  padding-top: 20px;
  color: #9bb2c5
}

.whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #0dbb57;
  color: #fff;
  z-index: 80;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .25)
}

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--primary);
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  z-index: 80;
  box-shadow: var(--shadow-sm)
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s ease, transform .75s ease
}

.reveal.show {
  opacity: 1;
  transform: translateY(0)
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .55
  }

  50% {
    transform: scale(1.14);
    opacity: .22
  }
}

@media(max-width:1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .category-grid.big {
    grid-template-columns: repeat(3, 1fr)
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .detail-layout,
  .contact-layout,
  .quote-layout,
  .split {
    grid-template-columns: 1fr
  }

  .sidebar {
    position: static
  }

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

@media(max-width:820px) {
  .menu-toggle {
    display: block
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    box-shadow: var(--shadow)
  }

  .nav-links.open {
    display: flex
  }

  .drop:hover .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none
  }

  .dropdown {
    display: none
  }

  .drop.open .dropdown {
    display: block
  }

  .topbar-inner {
    justify-content: center;
    text-align: center
  }

  .hero {
    min-height: 690px
  }

  .hero-controls {
    right: 20px;
    bottom: 22px;
    top: auto;
    display: flex
  }

  .section {
    padding: 68px 0
  }

  .project-grid,
  .category-grid,
  .category-grid.big,
  .quality-grid,
  .detail-points,
  .form-grid,
  .client-grid {
    grid-template-columns: 1fr
  }

  .category-card {
    height: 270px
  }

  .footer-grid,
  .ticks {
    grid-template-columns: 1fr
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px
  }

  .brand b {
    font-size: 16px
  }

  .logo-mark {
    width: 52px;
    height: 46px
  }

  .nav-inner {
    height: 76px
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 22px
  }

  .service-grid {
    grid-template-columns: 1fr
  }

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


/* v4 refinements: contact icon boxes, about sections, gallery lightbox */
.contact-icon-boxes {
  gap: 18px
}

.contact-icon-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px !important;
  position: relative;
  overflow: hidden;
  transition: .35s var(--ease)
}

.contact-icon-box:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 132, 216, .08), rgba(19, 182, 165, .04));
  opacity: 0;
  transition: .35s
}

.contact-icon-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow)
}

.contact-icon-box:hover:before {
  opacity: 1
}

.contact-icon {
  width: 62px;
  min-width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(11, 132, 216, .25);
  position: relative;
  z-index: 1;
  transition: .35s var(--ease)
}

.contact-icon-box:hover .contact-icon {
  transform: rotate(-6deg) scale(1.06)
}

.contact-copy {
  position: relative;
  z-index: 1
}

.contact-copy h3 {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -.02em
}

.contact-copy p {
  margin: 0;
  color: var(--muted)
}

.contact-icon-box.highlight {
  background: linear-gradient(135deg, #f0fbff, #f5fffb)
}

.offer-section {
  background: radial-gradient(circle at 8% 10%, #e9f9ff 0, #fff 34%, #fff 100%)
}

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

.offer-card {
  background: #fff;
  border: 1px solid #e5f1f8;
  border-radius: 28px;
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: .38s var(--ease)
}

.offer-card:after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11, 132, 216, .14), rgba(19, 182, 165, .14));
  transition: .45s var(--ease)
}

.offer-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #eaf8ff;
  color: var(--primary);
  font-size: 25px;
  margin-bottom: 18px;
  transition: .35s var(--ease)
}

.offer-card h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 10px
}

.offer-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

.offer-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
  border-color: #bcecff
}

.offer-card:hover:after {
  transform: scale(1.35)
}

.offer-card:hover i {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  transform: rotate(-6deg)
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch
}

.mvv-card {
  background: #fff;
  border: 1px solid #e5f1f8;
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: .38s var(--ease)
}

.mvv-card span {
  position: absolute;
  right: 24px;
  top: 18px;
  font-weight: 900;
  font-size: 58px;
  color: #edf7ff;
  line-height: 1
}

.mvv-card i {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 18px;
  position: relative;
  z-index: 1
}

.mvv-card h3 {
  font-size: 28px;
  margin: 0 0 10px;
  position: relative;
  z-index: 1
}

.mvv-card p {
  color: var(--muted);
  margin: 0;
  position: relative;
  z-index: 1
}

.mvv-card.featured {
  background: linear-gradient(135deg, var(--primary2), var(--primary));
  color: #fff;
  transform: translateY(-10px)
}

.mvv-card.featured p,
.mvv-card.featured i {
  color: #eaffff
}

.mvv-card.featured span {
  color: rgba(255, 255, 255, .12)
}

.mvv-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow)
}

.mvv-card.featured:hover {
  transform: translateY(-18px)
}

.gallery-grid {
  align-items: stretch
}

.gallery-card {
  cursor: pointer;
  border-radius: 26px;
  overflow: hidden;
  background: #fff
}

.gallery-card .project-img {
  height: 285px
}

.gallery-card .project-info {
  padding: 18px 20px;
  text-align: center;
  background: #fff
}

.gallery-card .project-info h3 {
  font-size: 19px;
  margin: 0;
  line-height: 1.25;
  transition: .25s;
  color: #142033
}

.gallery-card:hover .project-info h3 {
  color: var(--primary)
}

.gallery-card:focus-within,
.gallery-card:active {
  outline: 3px solid #bdeeff
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 10, 18, .88);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  backdrop-filter: blur(12px)
}

.gallery-lightbox.open {
  display: flex;
  animation: fadeIn .22s ease both
}

.lightbox-stage {
  width: min(980px, 82vw);
  text-align: center;
  color: #fff;
  animation: zoomIn .28s var(--ease) both
}

.lightbox-stage img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
  background: #fff
}

.lightbox-stage h3 {
  font-size: clamp(22px, 3vw, 34px);
  margin: 18px 0 2px;
  color: #fff
}

.lightbox-count {
  color: #bfe8ff;
  font-weight: 800
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  transition: .28s var(--ease)
}

.lightbox-close {
  position: absolute;
  right: 26px;
  top: 22px;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  font-size: 25px
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 22px
}

.lightbox-prev {
  left: 26px
}

.lightbox-next {
  right: 26px
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.08)
}

.lightbox-close:hover {
  transform: scale(1.08)
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(.94)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@media(max-width:1100px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:820px) {
  .contact-icon-box {
    gap: 14px
  }

  .contact-icon {
    width: 54px;
    min-width: 54px;
    height: 54px
  }

  .offer-grid,
  .mvv-grid {
    grid-template-columns: 1fr
  }

  .mvv-card.featured {
    transform: none
  }

  .lightbox-stage {
    width: 88vw
  }

  .lightbox-nav {
    top: auto;
    bottom: 28px;
    transform: none
  }

  .lightbox-prev {
    left: calc(50% - 70px)
  }

  .lightbox-next {
    right: calc(50% - 70px)
  }

  .lightbox-nav:hover {
    transform: scale(1.08)
  }

  .lightbox-stage img {
    max-height: 62vh
  }

  .gallery-card .project-img {
    height: 235px
  }
}

/* =========================================================
   V5 THEME ALIGNMENT - matched with uploaded home page theme
   Palette and layout inspired by index(2).php/header(2).php/style(2).css
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;500;700&family=Jost:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #3687BC;
  --primary2: #1a6fa8;
  --accent: #24b6ec;
  --secondary: #0dbb57;
  --dark: #0a0f1b;
  --muted: #687789;
  --light: #f4f8fb;
  --shadow: 0 22px 55px rgba(10, 15, 27, .13);
  --shadow-sm: 0 12px 32px rgba(10, 15, 27, .09);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

body {
  font-family: 'Jost', sans-serif;
  color: #687789;
  background: #fff;
  line-height: 1.8
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand b {
  font-family: 'Hind Madurai', sans-serif;
  color: var(--dark)
}

.container {
  max-width: 1300px
}

.section {
  padding: 90px 0
}

.eyebrow {
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
  font-size: 13px
}

.topbar {
  background: var(--dark);
  font-size: 14px
}

.topbar-inner {
  min-height: 38px
}

.navbar {
  box-shadow: 0 10px 35px rgba(10, 15, 27, .07);
  border-bottom: 1px solid #edf4f8
}

.nav-inner {
  height: 92px
}

.logo-mark {
  background: linear-gradient(135deg, #f8fcff, #e7f6ff);
  border: 2px solid #d2ebfb;
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(54, 135, 188, .12)
}

.brand small {
  color: #111;
  font-weight: 500;
  letter-spacing: .02em
}

.nav-links a {
  font-weight: 600;
  color: #29394c
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary)
}

.nav-quote,
.btn,
.btn-soft,
.btn-ghost {
  border-radius: 4px !important;
  text-transform: capitalize
}

.nav-quote,
.btn {
  background: var(--primary);
  box-shadow: none
}

.nav-quote:hover,
.btn:hover {
  background: var(--dark);
  transform: translateY(-3px)
}

.btn-soft {
  background: #fff;
  color: var(--primary) !important;
  border: 1px solid rgba(54, 135, 188, .25)
}

.hero,
.page-hero {
  background-color: var(--dark)
}

.hero-slide:after {
  background: linear-gradient(90deg, rgba(10, 15, 27, .92), rgba(10, 15, 27, .65), rgba(54, 135, 188, .18))
}

.hero h1 {
  font-family: 'Hind Madurai', sans-serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98
}

.hero p {
  max-width: 680px;
  color: #e8f6ff
}

.hero-card,
.floating-card,
.stat-card,
.service-card,
.project-card,
.detail-main,
.side-box,
.form-card,
.contact-icon-box,
.mv-card,
.offer-card,
.client-tile,
.supplier,
.gallery-card {
  border-radius: 18px !important
}

.hero-card {
  box-shadow: 0 25px 70px rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .16)
}

.hero-controls button {
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px)
}

.hero-controls button:hover {
  background: var(--primary)
}

.stats {
  margin-top: 40px
}

.stat-card {
  border-left: 4px solid var(--primary);
  transition: .35s var(--ease)
}

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

.section-title h2 {
  font-family: 'Hind Madurai', sans-serif;
  line-height: 1.15
}

.section-title p {
  color: var(--muted)
}

.about-us-style,
.offer-section,
.section.alt {
  background: linear-gradient(180deg, #f8fcff, #eef7fc)
}

.image-combo img {
  border-radius: 18px;
  box-shadow: var(--shadow)
}

.quality-grid div,
.offer-card,
.mv-card {
  border: 1px solid #e0edf5;
  background: #fff
}

.quality-grid i,
.offer-card i,
.mv-card i {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e9f6fe;
  color: var(--primary)
}

.quality-grid div:hover,
.offer-card:hover,
.mv-card:hover {
  border-color: #a7d8f2;
  transform: translateY(-8px)
}

.service-card {
  border: 1px solid #e1eef6;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 15, 27, .08)
}

.service-card:before,
.project-card:before,
.gallery-card:before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: .45s var(--ease);
  z-index: 3
}

.service-card:hover:before,
.project-card:hover:before,
.gallery-card:hover:before {
  width: 100%
}

.service-card:hover,
.project-card:hover,
.gallery-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 26px 60px rgba(54, 135, 188, .18)
}

.card-img span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px
}

.card-body h3 {
  font-family: 'Hind Madurai', sans-serif
}

.text-link {
  color: var(--primary)
}

.outstanding-residential,
.process-dark,
.cta {
  background: var(--dark) !important
}

.process-list div {
  border-radius: 14px
}

.process-list b {
  color: #7bd8ff
}

.cta {
  border-radius: 18px;
  background-image: linear-gradient(135deg, rgba(10, 15, 27, .94), rgba(54, 135, 188, .78)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop') !important
}

.client-marquee {
  border-radius: 18px;
  border: 1px solid #e0edf5
}

.client-logo {
  border-radius: 10px
}

.footer {
  background: #07111e
}

.footer .logo-mark {
  background: #fff
}

.footer a:hover {
  color: #7bd8ff
}

.whatsapp {
  border-radius: 50px;
  background: #0dbb57
}

.to-top {
  border-radius: 8px;
  background: var(--primary)
}

/* project category pages */
.project-grid {
  gap: 30px
}

.project-card {
  border-radius: 18px;
  overflow: hidden
}

.project-img {
  height: 280px
}

.project-info {
  padding: 22px 24px 26px
}

.project-info span {
  background: #edf8ff;
  color: var(--primary);
  letter-spacing: .04em;
  text-transform: uppercase
}

.project-info h3 {
  font-family: 'Hind Madurai', sans-serif;
  font-size: 24px
}

.table-shell {
  border-radius: 18px
}

.table-shell th {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase
}

.table-shell tr:hover td {
  background: #f0f9ff
}

/* contact page icon boxes: left icon + right content */
.contact-cards {
  display: grid;
  gap: 18px
}

.contact-cards>div,
.contact-icon-box {
  display: flex !important;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
  padding: 24px 26px !important;
  border-radius: 18px !important;
  background: #fff;
  position: relative;
  overflow: hidden
}

.contact-cards>div:after,
.contact-icon-box:after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #e7f6ff;
  transition: .45s
}

.contact-cards>div:hover:after,
.contact-icon-box:hover:after {
  transform: scale(1.25);
  background: #d7f0ff
}

.contact-icon,
.contact-cards>div>i {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important;
  box-shadow: 0 14px 25px rgba(54, 135, 188, .24)
}

.contact-icon i,
.contact-cards>div>i {
  font-size: 25px !important;
  color: #fff !important
}

.contact-copy {
  position: relative;
  z-index: 1
}

.contact-copy h3,
.contact-cards h3 {
  margin: 0 0 4px;
  font-size: 22px
}

.contact-copy p,
.contact-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55
}

.contact-icon-box.highlight {
  background: linear-gradient(135deg, #f7fcff, #eef8ff)
}

/* gallery: only title on card + popup slider */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch
}

.gallery-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e0edf5
}

.gallery-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  display: block;
  transition: .65s var(--ease)
}

.gallery-card:hover img {
  transform: scale(1.1)
}

.gallery-card .gallery-info,
.gallery-card .project-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 22px !important;
  background: linear-gradient(180deg, transparent, rgba(10, 15, 27, .86));
  color: #fff
}

.gallery-card h3 {
  color: #fff !important;
  margin: 0;
  font-size: 20px;
  line-height: 1.25
}

.gallery-card p,
.gallery-card span:not(.shine) {
  display: none !important
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 16, .88);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px
}

.lightbox.open {
  display: flex
}

.lightbox-stage {
  position: relative;
  max-width: 1050px;
  width: 100%;
  /* background: #fff; */
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .4)
}

.lightbox-stage img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  background: #f3f7fb
}

.lightbox-stage h3 {
  margin: 12px 0 0;
  text-align: center
}

.lightbox-count {
  text-align: center;
  color: var(--primary);
  font-weight: 800
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: var(--primary);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2
}

.lightbox-close {
  right: 20px;
  top: 20px
}

.lightbox-prev {
  left: 52px;
  top: 50%;
  transform: translateY(-50%)
}

.lightbox-next {
  right: 52px;
  top: 50%;
  transform: translateY(-50%)
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--dark)
}

@media(max-width:1100px) {

  .project-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .project-img,
  .gallery-card img {
    height: 250px
  }

  .contact-layout,
  .quote-layout {
    grid-template-columns: 1fr
  }

  .nav-inner {
    height: 84px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:820px) {
  .section {
    padding: 64px 0
  }

  .nav-links {
    border-top: 1px solid #edf4f8
  }

  .hero h1 {
    font-size: 40px
  }

  .project-grid,
  .gallery-grid {
    grid-template-columns: 1fr
  }

  .project-img,
  .gallery-card img {
    height: 260px
  }

  .contact-cards>div,
  .contact-icon-box {
    padding: 20px !important
  }

  .contact-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .lightbox-prev {
    left: 8px
  }

  .lightbox-next {
    right: 8px
  }

  .lightbox-close {
    right: 10px;
    top: 10px
  }
}

@media(max-width:480px) {
  .brand b {
    font-size: 15px
  }

  .brand small {
    font-size: 11px
  }

  .logo-mark {
    width: 50px;
    height: 45px
  }

  .contact-cards>div,
  .contact-icon-box {
    flex-direction: column;
    gap: 12px
  }

  .project-img,
  .gallery-card img {
    height: 220px
  }

  .page-hero {
    padding: 86px 0
  }

  .hero {
    min-height: 620px
  }

  .hero p {
    font-size: 15px
  }
}


/* ================= V6 FINAL ALIGNMENT + THEME POLISH ================= */
@import url('https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@500;600;700&family=Jost:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #3687BC;
  --primary2: #1f6fa4;
  --accent: #18b9d4;
  --secondary: #11b36d;
  --dark: #0a0f1b;
  --muted: #64748b;
  --light: #f4f8fb;
  --soft: #eef8ff;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 24px 65px rgba(10, 15, 27, .13);
  --shadow-sm: 0 12px 34px rgba(10, 15, 27, .08);
  --font-body: 'Jost', sans-serif;
  --font-title: 'Hind Madurai', sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: #233245;
  background: #fff;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .01em
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.12;
  text-transform: none
}

p {
  color: var(--muted);
  line-height: 1.75
}

.container {
  width: min(1320px, calc(100% - 32px));
  margin-inline: auto
}

.section {
  padding: 92px 0
}

.section.alt {
  background: linear-gradient(180deg, #f8fcff, #eef8ff)
}

.topbar {
  background: #071525;
  color: #dff6ff;
  font-size: 14px
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}

.topbar i {
  color: #6bd6ff
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(10, 15, 27, .07)
}

.nav-inner {
  height: 88px
}

.brand {
  gap: 12px
}

.brand b {
  font-size: clamp(16px, 1.5vw, 22px);
  color: var(--primary)
}

.brand small {
  font-size: 13px;
  color: #111827;
  letter-spacing: .06em
}

.logo-mark {
  background: linear-gradient(135deg, #fff, #e7f7ff);
  color: var(--primary);
  border: 2px solid #cfecff;
  box-shadow: 0 10px 24px rgba(54, 135, 188, .18);
  border-radius: 16px
}

.nav-links a {
  font-weight: 700;
  letter-spacing: .01em
}

.nav-quote,
.btn {
  border-radius: 12px !important;
  box-shadow: 0 12px 24px rgba(54, 135, 188, .22);
  font-weight: 800
}

.btn:hover,
.nav-quote:hover {
  transform: translateY(-3px)
}

.hero {
  min-height: 760px
}

.hero-content {
  max-width: 820px
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  margin: 14px 0 22px;
  color: #fff
}

.hero p {
  font-size: clamp(17px, 2vw, 22px);
  max-width: 700px;
  color: #edf8ff
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(3, 12, 25, .88) 0%, rgba(7, 30, 50, .68) 48%, rgba(7, 30, 50, .24) 100%)
}

.hero-controls button {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .3)
}

.eyebrow {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  font-size: 13px
}

.section-title {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 46px
}

.section-title h2,
.split h2,
.cta h2 {
  font-size: clamp(31px, 4.2vw, 40px);
  margin: 8px 0 14px
}

.section-title p {
  font-size: 18px;
  margin-inline: auto;
  max-width: 760px
}

.split {
  gap: 54px;
  align-items: center
}

.image-combo img,
.rounded-img,
.detail-hero {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover
}

.floating-card {
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid #d9effd
}

.stats {
  margin-top: -56px;
  position: relative;
  z-index: 5
}

.stat {
  border-radius: 24px;
  border: 1px solid #e3f1fb;
  box-shadow: var(--shadow-sm);
  min-height: 150px
}

.stat b {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--primary)
}

.stat span {
  font-weight: 800;
  color: #344156
}

.ticks span {
  align-items: center;
  border-radius: 14px;
  background: #f1fbff;
  border: 1px solid #dff1fb;
  padding: 12px 14px;
  font-weight: 700
}

.ticks i {
  color: var(--secondary)
}

.service-grid,
.project-grid,
.offer-grid,
.mvv-grid,
.quality-grid,
.client-grid {
  align-items: stretch
}

.service-card,
.project-card,
.offer-card,
.mvv-card,
.quality-grid div,
.client-tile,
.form-card,
.side-box,
.contact-icon-box {
  border-radius: var(--radius);
  border: 1px solid #e3f1fb;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  background: #fff
}

.service-card:hover,
.project-card:hover,
.offer-card:hover,
.mvv-card:hover,
.quality-grid div:hover,
.client-tile:hover,
.contact-icon-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: #bde7ff
}

.service-card {
  height: 100%;
  overflow: hidden
}

.card-img {
  height: 245px
}

.card-img img,
.project-img img {
  object-fit: cover
}

.card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  min-height: 250px
}

.card-body h3 {
  font-size: 24px;
  margin-bottom: 10px
}

.card-body p {
  margin-bottom: 16px
}

.card-body ul {
  margin: auto 0 18px 0;
  padding: 0;
  list-style: none
}

.card-body li {
  position: relative;
  padding-left: 20px;
  margin: 6px 0;
  color: #48576a
}

.card-body li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 900
}

.text-link {
  font-weight: 900;
  margin-top: auto
}

.project-grid {
  gap: 28px
}

.project-card {
  overflow: hidden
}

.project-img {
  height: 270px;
  background: #dfeaf2
}

.project-info {
  padding: 24px
}

.project-info h3 {
  font-size: 24px;
  line-height: 1.2
}

.project-info span {
  background: #e9f8ff;
  color: var(--primary);
  font-weight: 900;
  border-radius: 999px
}

.category-grid {
  gap: 26px
}

.category-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.category-card span {
  font-family: var(--font-title);
  font-size: 20px
}

.dark {
  background: #071525
}

.dark h2,
.dark h3 {
  color: #fff
}

.dark p {
  color: #c9d8e6
}

.process-list div {
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 22px
}

.process-list b {
  color: #6bd6ff
}

.cta {
  border-radius: 34px;
  background: linear-gradient(135deg, var(--primary), #0a5a93);
  padding: 48px 54px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative
}

.cta:before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12)
}

.cta * {
  position: relative
}

.cta h2,
.cta p {
  color: #fff
}

.btn.light {
  background: #fff !important;
  color: var(--primary) !important
}

.page-hero {
  padding: 118px 0;
  background-position: center !important
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  color: #fff;
  margin-bottom: 16px
}

.page-hero p {
  font-size: 18px
}

.water-orb {
  pointer-events: none
}

.table-shell {
  border-radius: 24px;
  box-shadow: var(--shadow-sm)
}

th {
  font-size: 15px;
  white-space: nowrap
}

td {
  font-size: 15px;
  color: #334155
}

.detail-main h2 {
  font-size: clamp(32px, 4vw, 35px)
}

.detail-points div {
  border: 1px solid #e3f1fb
}

.sidebar {
  top: 120px
}

.side-box a {
  border-radius: 12px;
  padding: 12px 10px
}

.side-box a:hover,
.side-box a.current {
  background: #f0f9ff;
  padding-left: 16px
}

.supplier-grid .supplier {
  display: grid;
  place-items: center;
  min-height: 92px
}

.footer {
  background: #071525
}

.footer h3 {
  font-size: 23px
}

.footer p,
.footer a {
  font-size: 15px;
  line-height: 1.65
}

.footer a:hover {
  color: #6bd6ff
}

.whatsapp {
  box-shadow: 0 12px 28px rgba(17, 179, 109, .35)
}

/* Contact left icon / right content */
.contact-icon-boxes {
  display: grid;
  gap: 18px
}

.contact-icon-box {
  display: grid !important;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px !important
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e7f7ff, #f5fffd);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 26px;
  box-shadow: inset 0 0 0 1px #d5efff
}

.contact-copy h3 {
  font-size: 21px;
  margin-bottom: 4px
}

.contact-copy p {
  margin: 0;
  color: #526177
}

.contact-icon-box.highlight {
  background: linear-gradient(135deg, var(--primary), #0a5a93);
  color: #fff
}

.contact-icon-box.highlight .contact-icon {
  background: rgba(255, 255, 255, .16);
  color: #fff
}

.contact-icon-box.highlight h3,
.contact-icon-box.highlight p {
  color: #fff
}

.form-grid {
  gap: 16px
}

.form-card input,
.form-card textarea {
  border-radius: 14px;
  background: #fbfdff
}

.form-card button,
.form-card .btn {
  width: auto !important
}

/* Gallery title-only image boxes and lightbox alignment */
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}

.gallery-card .project-img {
  height: 285px
}

.gallery-card .project-info {
  padding: 18px 20px;
  text-align: center
}

.gallery-card .project-info h3 {
  font-size: 20px;
  margin: 0
}

.gallery-card .project-info p,
.gallery-card .project-info span {
  display: none !important
}

.gallery-card {
  cursor: pointer
}

.gallery-lightbox {
  backdrop-filter: blur(8px)
}

.lightbox-stage {
  max-width: min(1050px, 92vw)
}

.lightbox-stage img {
  border-radius: 22px;
  max-height: 78vh;
  object-fit: contain
}

.lightbox-nav,
.lightbox-close {
  box-shadow: 0 10px 24px rgba(0, 0, 0, .3)
}

/* New home sections */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.feature-card {
  background: #fff;
  border: 1px solid #e3f1fb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: .35s ease
}

.feature-card:before {
  content: '';
  position: absolute;
  inset: auto -60px -80px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #e8f8ff
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow)
}

.feature-card i {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px
}

.feature-card h3 {
  font-size: 23px
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: stretch
}

.coverage-card {
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow)
}

.coverage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.coverage-card:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 15, 28, .82))
}

.coverage-card div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px
}

.coverage-card h3,
.coverage-card p {
  color: #fff
}

.coverage-list {
  display: grid;
  gap: 16px
}

.coverage-list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e3f1fb;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  font-weight: 900;
  color: #213044
}

.coverage-list a i {
  color: var(--primary);
  font-size: 22px
}

.guarantee-strip {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  align-items: center
}

.guarantee-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 32px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow)
}

.guarantee-badge b {
  font-family: var(--font-title);
  font-size: 72px;
  line-height: 1
}

.guarantee-badge span {
  display: block;
  font-size: 22px;
  font-weight: 900
}

.supplier-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.supplier-pills span {
  background: #fff;
  border: 1px solid #dff1fb;
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  color: var(--primary)
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e3f1fb;
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow-sm)
}

.stars {
  color: #f5b301;
  letter-spacing: 4px
}

.testimonial-card p {
  font-size: 18px;
  color: #314154
}

.testimonial-card b {
  color: var(--dark)
}

@media(max-width:1100px) {

  .feature-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .coverage-grid,
  .guarantee-strip {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero {
    min-height: 680px
  }

  .card-body {
    min-height: 310px
  }

  .project-img {
    height: 240px
  }
}

@media(max-width:820px) {
  body {
    font-size: 15px
  }

  .topbar {
    display: none
  }

  .nav-inner {
    height: 76px
  }

  .brand small {
    display: none
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    border: 0;
    border-radius: 12px;
    width: 44px;
    height: 44px
  }

  .nav-links {
    gap: 0;
    border-top: 1px solid #edf3f8
  }

  .nav-links a {
    padding: 12px 14px
  }

  .hero {
    min-height: 640px
  }

  .hero h1 {
    font-size: 42px
  }

  .hero p {
    font-size: 17px
  }

  .hero-actions {
    gap: 12px
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
    padding-top: 24px
  }

  .section {
    padding: 64px 0
  }

  .section-title {
    margin-bottom: 30px
  }

  .service-grid,
  .project-grid,
  .gallery-grid,
  .feature-grid,
  .testimonial-grid,
  .quality-grid,
  .offer-grid,
  .mvv-grid,
  .client-grid {
    grid-template-columns: 1fr !important
  }

  .card-body {
    min-height: auto
  }

  .project-img,
  .gallery-card .project-img {
    height: 240px
  }

  .contact-layout,
  .quote-layout,
  .detail-layout,
  .split {
    grid-template-columns: 1fr
  }

  .contact-icon-box {
    grid-template-columns: 54px 1fr;
    padding: 18px !important
  }

  .contact-icon {
    width: 54px;
    height: 54px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .detail-points {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    justify-content: center;
    text-align: center
  }

  .cta {
    padding: 32px;
    border-radius: 26px
  }

  .coverage-card {
    min-height: 330px
  }

  .guarantee-badge b {
    font-size: 58px
  }

  .supplier-grid {
    grid-template-columns: repeat(2, 1fr) !important
  }

  .client-marquee {
    border-radius: 20px
  }

  .lightbox-nav {
    width: 42px;
    height: 42px
  }

  .lightbox-prev {
    left: 10px
  }

  .lightbox-next {
    right: 10px
  }
}

@media(max-width:520px) {
  .container {
    width: min(100% - 22px, 1320px)
  }

  .brand b {
    font-size: 14px
  }

  .logo-mark {
    width: 46px;
    height: 42px;
    font-size: 16px
  }

  .hero {
    min-height: 600px
  }

  .hero h1 {
    font-size: 36px
  }

  .hero-content {
    padding-top: 40px
  }

  .stats {
    grid-template-columns: 1fr
  }

  .stat {
    min-height: 120px
  }

  .btn {
    padding: 12px 18px
  }

  .section-title h2,
  .split h2,
  .cta h2 {
    font-size: 25px;
        line-height: 1.22;
  }

  .project-img,
  .gallery-card .project-img {
    height: 220px
  }

  .feature-card {
    padding: 22px
  }

  .coverage-list a {
    padding: 16px
  }

  .whatsapp {
    font-size: 13px;
    padding: 10px 12px
  }

  .to-top {
    width: 40px;
    height: 40px
  }
  .eyebrow {
  
    font-weight: 700;
  
}
.floating-card b {
    font-size: 21px;
    line-height: 1;
}
.image-combo>img, .rounded-img {
    height: 330px;
    width: 100%;

}
.floating-card {
  padding: 10px 25px;
}
.mvv-card {
   
    padding: 15px  11px;
}
.mvv-card h3 {
    font-size: 25px;
    text-align: center;
}
.quality-grid{
  display: none;
}

.split{
  display: flex;
  flex-direction: column-reverse;
}
}


/* ===== V7 premium theme, alignment and responsive polish ===== */
:root {
  --primary: #3687BC;
  --primary2: #0E5E91;
  --accent: #00B8D9;
  --secondary: #25B56A;
  --dark: #071525;
  --text: #101828;
  --muted: #5B6B83;
  --soft: #F2FAFF;
  --line: #DDEFF9;
  --radius: 24px;
  --radius-lg: 34px;
  --shadow: 0 28px 70px rgba(7, 21, 37, .14);
  --shadow-sm: 0 14px 38px rgba(7, 21, 37, .08);
  --font-title: 'Poppins', Arial, sans-serif;
  --font-body: 'Poppins', Arial, sans-serif
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  background: #fff
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.025em
}

.container {
  width: min(1250px, 95%)
}

.section {
  padding: 60px 0
}

.section-title {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 46px
}

.section-title.left {
  text-align: left;
  margin-left: 0;
  margin-right: 0
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.12
}

.section-title p {
  font-size: 17px;
  color: var(--muted)
}

.eyebrow {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: .16em
}

.navbar {
  box-shadow: 0 8px 30px rgba(7, 21, 37, .07);
  border-bottom: 1px solid rgba(54, 135, 188, .12)
}

.brand b {
  color: var(--primary);
  font-weight: 900
}

.logo-mark {
  overflow: hidden;
  background: #fff !important;
  border-color: #d8effb !important
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px
}

.logo-mark.logo-fallback {
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 900
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: #243247
}

.nav-links a:hover,
.nav-links .active {
  background: #EAF7FF;
  color: var(--primary)
}

.btn,
.nav-quote {
  background: linear-gradient(135deg, var(--primary), var(--primary2)) !important;
  border-radius: 14px !important
}

.page-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(7, 21, 37, .94), rgba(54, 135, 188, .78)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1700&q=80') center/cover !important
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 45px);
  line-height: 1.05
}

.page-hero p {
  font-size: 18px;
  color: #E7F7FF
}

.service-card,
.project-card,
.client-tile,
.feature-card,
.form-card,
.contact-icon-box,
.premium-check {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-sm) !important
}

.service-card:hover,
.project-card:hover,
.client-tile:hover,
.feature-card:hover,
.contact-icon-box:hover,
.premium-check:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow) !important;
  border-color: #BCE4FA !important
}

.project-img,
.card-img {
  background: #EAF4FA
}

.project-info h3,
.card-body h3 {
  font-size: clamp(20px, 2vw, 20px);
  line-height: 1.25
}

.project-info p,
.card-body p {
  color: var(--muted)
}

/* Client logos */
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.client-tile {
  min-height: 150px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #F8FCFF);
  gap: 14px
}

.client-tile i {
  display: none !important
}

.client-tile img {
 max-width: 179px;
    max-height: 96px;
  object-fit: contain;
  filter: saturate(1.04);
  transition: .35s ease
}

.client-tile span {
  font-weight: 800;
  color: #203047
}

.client-tile:hover img {
  transform: scale(1.06)
}

.client-logo {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(7, 21, 37, .06);
  width: 190px;
  height: 96px;
  display: grid;
  place-items: center;
  padding: 12px
}

.client-logo img {
  max-width: 160px;
  max-height: 66px;
  object-fit: contain
}

.client-logo span {
  display: none
}

.client-marquee {
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm)
}

/* Contact page fixed visibility and premium icon boxes */
.contact-premium-section {
  background: linear-gradient(180deg, #fff 0%, #F6FBFF 100%)
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  gap: 42px;
  align-items: start
}

.contact-form-wrap,
.contact-cards {
  min-width: 0
}

.premium-form {
  padding: 34px;
  background: #fff;
  border-radius: 28px
}

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

.form-card input,
.form-card textarea {
  width: 100%;
  min-width: 0;
  height: 56px;
  border: 1px solid var(--line);
  background: #F8FCFF;
  border-radius: 14px;
  padding: 0 18px;
  color: var(--text);
  font-size: 15px
}

.form-card textarea {
  height: 170px;
  padding-top: 16px;
  resize: vertical
}

.contact-icon-boxes {
  display: grid;
  gap: 20px;
  width: 100%
}

.contact-icon-box {
  position: relative;
  display: grid !important;
  grid-template-columns: 72px minmax(0, 1fr) !important;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 142px;
  padding: 28px !important;
  background: #fff !important;
  overflow: hidden
}

.contact-icon-box:before {
  content: '';
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(54, 135, 188, .10);
  pointer-events: none
}

.contact-icon-box:after {
  display: none !important
}

.contact-icon {
  position: relative;
  z-index: 1;
  width: 48px !important;
  height: 65px !important;
  flex: 0 0 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: #fff !important;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(54, 135, 188, .25)
}

.contact-icon i {
  font-size: 27px !important;
  color: #fff !important
}

.contact-copy {
  position: relative;
  z-index: 1;
  min-width: 0
}

.contact-copy h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 6px;
  color: #111827
}

.contact-copy p {
  font-size: 16px;
  line-height: 1.58;
  color: #53627A;
  margin: 0;
  word-break: normal;
  overflow-wrap: anywhere
}

.contact-icon-box.highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary2)) !important
}

.contact-icon-box.highlight:before {
  background: rgba(255, 255, 255, .13)
}

.contact-icon-box.highlight .contact-icon {
  background: rgba(255, 255, 255, .16) !important;
  border: 1px solid rgba(255, 255, 255, .22)
}

.contact-icon-box.highlight h3,
.contact-icon-box.highlight p {
  color: #fff !important
}

/* Gallery: local images + clean title-only cards + lightbox */
.gallery-premium-section {
  background: #fff
}

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important
}

.gallery-card {
  border-radius: 24px !important;
  overflow: hidden;
  background: #fff;
  cursor: pointer
}

.gallery-card .project-img,
.gallery-card img {
  height: 245px !important;
  width: 100%;
  object-fit: cover
}

.gallery-card .project-info {
  position: relative !important;
  padding: 18px 16px !important;
  text-align: center;
  background: #fff !important
}

.gallery-card .project-info h3 {
  font-size: 18px !important;
  line-height: 1.25;
  color: #111827 !important;
  margin: 0
}

.gallery-card .project-info p,
.gallery-card .project-info span {
  display: none !important
}

.gallery-card:hover .project-info h3 {
  color: var(--primary) !important
}

.lightbox,
.gallery-lightbox {
  backdrop-filter: blur(9px)
}

.lightbox-stage {
  border-radius: 24px !important;
  padding: 18px !important
}

.lightbox-stage img {
  border-radius: 18px !important;
  max-height: 76vh !important
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  background: linear-gradient(135deg, var(--primary), var(--primary2)) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3)
}

/* Home additional premium sections */
.premium-check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.premium-check {
  padding: 30px;
  background: #fff;
  transition: .35s ease
}

.premium-check i {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 26px;
  margin-bottom: 18px
}

.premium-check h3 {
  font-size: 22px;
  margin-bottom: 8px
}

.premium-check p {
  color: var(--muted);
  margin: 0
}

.project-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.project-mini-grid img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-sm)
}

.dark-ghost {
  color: var(--primary) !important;
  border: 1px solid var(--line) !important;
  background: #fff !important
}

.project-showcase-home .split {
  align-items: center
}

/* Consistency on project/service pages */
.table-shell {
  overflow: auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: 22px
}

table {
  border-collapse: collapse
}

th {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff !important;
  font-size: 15px;
  text-align: left
}

td {
  font-size: 15px;
  color: #334155;
  text-align: left
}

.footer {
  background: #071525
}

.footer-grid {
  gap: 36px
}

.footer h3 {
  color: #fff
}

.footer p,
.footer a {
  color: #D8E7F2
}

.footer a:hover {
  color: #6BD6FF
}

@media(max-width:1180px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important
  }

  .premium-check-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

  .contact-icon-box {
    grid-template-columns: 62px minmax(0, 1fr) !important;
    padding: 22px !important
  }

  .contact-icon {
    width: 62px !important;
    height: 62px !important;
    flex-basis: 62px
  }
}

@media(max-width:900px) {
  .section {
    padding: 68px 0
  }

  .contact-layout {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important
  }

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

  .premium-check-grid {
    grid-template-columns: 1fr 1fr
  }

  .project-mini-grid img {
    height: 180px
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .contact-icon-box {
    min-height: auto
  }

  .section-title.left {
    text-align: center;
    margin-left: auto;
    margin-right: auto
  }

  .nav-links {
    max-height: calc(100vh - 76px);
    overflow: auto
  }
}
.inner-improve-strip{
  margin-top: -100px;
}



.detail-main h3{
  margin-top: 20px;
}
@media(max-width:560px) {
  body {
    font-size: 15px
  }

  .container {
    width: min(100% - 24px, 1240px)
  }

  .section {
    padding: 30px 0
  }

  .page-hero {
    padding: 30px 0
  }

  .page-hero h1 {
    font-size: 26px
  }
.about-us {
        padding: 30px 0;
    }
  .gallery-grid,
  .client-grid,
  .premium-check-grid {
    grid-template-columns: 1fr !important
  }

  .gallery-card .project-img,
  .gallery-card img {
    height: 230px !important
  }

  .contact-icon-box {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 14px;
    padding: 18px !important;
    border-radius: 20px !important
  }

  .contact-icon {
    width: 54px !important;
    height: 54px !important;
    flex-basis: 54px;
    border-radius: 16px
  }

  .contact-copy h3 {
    font-size: 20px
  }

  .contact-copy p {
    font-size: 14.5px;
    line-height: 1.55
  }

  .premium-form {
    padding: 22px
  }

  .form-card textarea {
    height: 140px
  }

  .project-mini-grid {
    grid-template-columns: 1fr
  }

  .project-mini-grid img {
    height: 210px
  }

  .brand b {
    font-size: 14px
  }

  .logo-mark {
    width: 50px;
    height: 44px
  }

  .footer-grid {
    grid-template-columns: 1fr !important
  }
}



.timeline{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.timeline div{
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  transition: 0.3s ease;
}

.timeline div:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.timeline b{
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
 background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.side-box p{
  color: white;
  margin: 20px 0px;
}
.side-box.accent .btn {
    background: #fff !important;
    color: #3687bc !important;
}
.timeline span{
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.mvv-card   img{
  border-radius: 15px;
  margin-bottom: 20px;
}



/* Mobile */
@media(max-width:768px){
  .timeline{
    grid-template-columns: 1fr;
  }
  .detail-hero {
    height: 200px;
    width: 100%;

}

.detail-main h2 {
    font-size: clamp(25px, 4vw, 21px) !important;
    line-height: 1.1;
    margin: 0 0 14px;
}
.detail-main h3 {
    margin-top: 20px;
    font-size: 21px;
}
.detail-points div {
    display: flex;
    gap: 12px;
    background: #f5fbff;
    border-radius: 16px;
    padding: 5px;
    font-weight: 700;
}
.detail-points div {
 
    font-weight: 600;
}
.detail-main {
  
    padding: 0px;
   
}

.inner-improve-strip{
  margin-top: -40px;
}
.section-title h2 {
    font-size: clamp(25px, 4vw, 40px);
    line-height: 1.12;
}
.feature-grid{
    text-align: center;
  }

  .feature-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .feature-card i{
    margin-bottom: 15px;
  }
    .offer-grid{
    text-align: center;
  }

  .offer-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .offer-card i{
    margin-bottom: 15px;
  }
   .contact-cards{
    text-align: center;
  }

  .contact-icon-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-icon{
    margin-bottom: 15px;
  }
.drop {
    position: relative;
    padding: 10px 0px;
}
    .nav-inner {
        height: 51px;
    }
    .hero-btn-primary {
 font-weight: 400;
    padding: 10px 19px !important;

   
}
.hero-btn-outline {
     font-weight: 400;
    padding: 10px 23px !important;
}
    .hero-content {
        padding-top: 7px;
    }
    
    .feature-card:before {
    content: '';
    position: absolute;
    inset: auto -60px -80px auto;
    width: 111px;
    height: 105px;
    border-radius: 50%;
    background: #e8f8ff;
}

}