:root {
  --navy: #071f3a;
  --navy-2: #0b2e50;
  --blue: #1160a3;
  --red: #f02f2f;
  --red-dark: #d91f25;
  --sky: #e9f4ff;
  --ice: #f5f9fd;
  --line: #dbe8f3;
  --text: #10233b;
  --muted: #65758a;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(18, 52, 86, .08);
  --shadow-md: 0 20px 55px rgba(18, 52, 86, .13);
  --shadow-lg: 0 32px 90px rgba(3, 24, 48, .22);
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 30px;
  --transition: .35s cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open,
body.offcanvas-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

::selection {
  background: rgba(240, 47, 47, .18);
  color: var(--navy);
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 99999;
  background: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container-xl {
  max-width: 1320px;
}

.section {
  position: relative;
  padding: 100px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 85% 0%, rgba(34, 130, 220, .08), transparent 30%),
    linear-gradient(180deg, #f8fbfe 0%, #f4f9fd 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow.light {
  color: rgba(255, 255, 255, .78);
}

.eyebrow .bi-dash-lg {
  color: var(--red);
  font-size: 20px;
  margin-right: -3px;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 45px;
}

.section-heading.left {
  max-width: 610px;
  margin-left: 0;
}

.section-heading h2,
.proof-panel h2 {
  margin: 10px 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 800;
  color: var(--navy);
}

.section-heading h2 span,
.proof-panel h2 span {
  color: var(--red);
}

.section-heading p,
.proof-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.heading-row {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.heading-row>div {
  max-width: 790px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 800;
  font-size: .92rem;
  transition: var(--transition);
}




#rental-duration .heading-row {
    max-width: none;
    /* margin-left: 0; */
    /* margin-right: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}






.text-link:hover {
  gap: 13px;
  color: var(--navy);
}

.btn-premium {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: .9rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.01em;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-premium::after {
  content: "";
  position: absolute;
  inset: -50% -35%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .35), transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.btn-premium:hover::after {
  transform: translateX(120%);
}

.btn-premium:hover {
  transform: translateY(-2px);
}

.btn-red {
  color: #fff;
  background: linear-gradient(135deg, #f23c38 0%, #e4232c 100%);
  box-shadow: 0 12px 30px rgba(240, 47, 47, .25);
}

.btn-red:hover {
  color: #fff;
  box-shadow: 0 16px 38px rgba(240, 47, 47, .35);
}

.btn-dark {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(7, 31, 58, .18);
}

.btn-dark:hover {
  color: #fff;
  background: #0d3156;
}

.btn-ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .24);
  backdrop-filter: blur(12px);
}

.btn-ghost-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, .15);
}

/* top strip */
.site-topbar {
  height: 40px;
  background: #071b33;
  color: rgba(255, 255, 255, .82);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.topbar-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
  white-space: nowrap;
}

.topbar-trust span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  position: relative;
}

.topbar-trust span+span::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.topbar-trust i {
  color: var(--red);
  margin-right: 4px;
}

.topbar-social {
  display: flex;
  gap: 7px;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 230, 240, .85);
  transition: box-shadow .3s ease, background .3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(12, 36, 62, .10);
  background: rgba(255, 255, 255, .985);
}

.site-header .navbar {
  min-height: 82px;
  padding: 4px 0;
}

.navbar-brand img {
  width: 184px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  gap: 3px;
  padding: 5px;
  border-radius: 999px;
}

.main-nav .nav-link {
  color: #203854;
  font-size: .99rem;
  font-weight: 800;
  padding: 10px 17px !important;
  border-radius: 999px;
  transition: var(--transition);
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(7, 31, 58, .13);
}

.header-actions {
  align-items: center;
  gap: 12px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f0f6fb;
  color: var(--navy);
  transition: var(--transition);
}

.icon-btn:hover {
  background: var(--navy);
  color: #fff;
  transform: rotate(6deg);
}

.call-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, #ff4a3f, #ee272b);
  min-height: 48px;
  padding: 6px 16px 6px 8px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(240, 47, 47, .24);
  transition: var(--transition);
}

.call-pill:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(240, 47, 47, .32);
}

.call-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .18);
  display: grid;
  place-items: center;
}

.call-pill small,
.call-pill strong {
  display: block;
  line-height: 1.1;
}

.call-pill small {
  font-size: 12px;
  opacity: .88;
  margin-bottom: 3px;
}

.call-pill strong {
  font-size: 17px;
}

.navbar-toggler {
  border: 0;
  color: var(--navy);
  font-size: 28px;
  padding: 4px 8px;
  box-shadow: none !important;
}

/* mobile nav */
.mobile-nav {
  width: min(88vw, 390px) !important;
  border-left: 0;
}

.mobile-nav .offcanvas-header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu {
  display: grid;
}

.mobile-menu a {
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: var(--navy);
}

.mobile-menu a i {
  color: var(--red);
}

.mobile-contact-card {
  margin-top: 28px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ice);
  display: grid;
  gap: 13px;
}

.mobile-contact-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

.mobile-contact-card a i {
  color: var(--red);
}

/* hero */
.hero-section {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: #071f3a;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: -3;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #071f3a 0%, rgba(7, 31, 58, .9) 10%, rgba(7, 31, 58, .42) 52%, rgba(7, 31, 58, .12) 100%);
  z-index: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(3, 16, 31, .25));
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .18;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .24;
  z-index: -1;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  background: #0d72cf;
  left: -170px;
  bottom: -220px;
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  background: #f02f2f;
  left: 45%;
  top: -160px;
  opacity: .12;
}

.min-vh-hero {
  min-height: 620px;
}

.hero-copy {
  max-width: 780px;
  padding: 72px 0 62px;
}

.hero-copy h1 {
  margin: 13px 0 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.85rem, 5.4vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-copy h1 span {
  color: var(--red);
}

.hero-copy>p {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 42px;
  max-width: 700px;
}

.hero-stat {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.hero-stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stat i {
  font-size: 23px;
  color: #fff;
}

.hero-stat strong,
.hero-stat small {
  display: block;
}

.hero-stat strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-stat small {
  color: rgba(255, 255, 255, .64);
  font-size: .7rem;
  margin-top: 2px;
}

.hero-floating-card {
  align-self: end;
  margin: 0 0 48px;
  max-width: 280px;
  padding: 15px 17px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(7, 31, 58, .62);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.hero-play {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 22px;
  box-shadow: 0 0 0 7px rgba(240, 47, 47, .14);
}

.hero-floating-card strong,
.hero-floating-card small {
  display: block;
}

.hero-floating-card strong {
  font-size: .88rem;
}

.hero-floating-card small {
  color: rgba(255, 255, 255, .65);
  font-size: .68rem;
  line-height: 1.45;
  margin-top: 3px;
}

/* trust */
.trust-strip {
  position: relative;
  z-index: 5;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #e8eff5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px 0;
}

.trust-item {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 13px 16px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid #e0ebf4;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(16, 60, 100, .06);
  transition: var(--transition);
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(17, 96, 163, .2);
}

.trust-item>span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #eaf4ff;
  color: var(--blue);
  font-size: 19px;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  color: var(--navy);
  font-size: .8rem;
  line-height: 1.2;
}

.trust-item small {
  color: var(--muted);
  font-size: .7rem;
  margin-top: 2px;
}

/* about */
.about-section {
  padding-bottom: 85px;
}

.about-feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 27px;
}

.about-feature-list div {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #31465f;
  font-size: .9rem;
  font-weight: 700;
}

.about-feature-list i {
  color: var(--red);
  font-size: 18px;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 430px;
  background: #e9f2f8;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 31, 58, .23));
  pointer-events: none;
}

.about-visual>img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.glass-card {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 18px 45px rgba(10, 38, 69, .15);
}

.about-badges {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 3;
  width: min(250px, 48%);
  padding: 10px;
  border-radius: 18px;
  display: grid;
  gap: 4px;
}

.about-badges>div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 9px;
  border-radius: 12px;
  transition: background .25s ease;
}

.about-badges>div:hover {
  background: #f4f9fd;
}

.about-badges i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff0f1;
  color: var(--red);
}

.about-badges span {
  font-size: .7rem;
  color: #506277;
}

.about-badges strong {
  display: block;
  color: var(--navy);
  font-size: .85rem;
}

/* surface cards */
.surface-card {
  background: #fff;
  border: 1px solid #e2ecf4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-heading {
  padding: 25px 26px 16px;
}

.card-heading h3 {
  margin: 7px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--navy);
}

.glance-table {
  display: grid;
  padding: 0 24px 24px;
}

.glance-table>div {
  display: grid;
  grid-template-columns: minmax(145px, .8fr) 1.8fr;
  gap: 15px;
  padding: 13px 0;
  border-top: 1px solid #e8eff5;
  align-items: start;
}

.glance-table span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
}

.glance-table span i {
  color: var(--blue);
}

.glance-table strong {
  color: #5c6f84;
  font-size: .76rem;
  line-height: 1.55;
  font-weight: 700;
}

.solution-card {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.solution-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 32, 57, .98) 0%, rgba(5, 36, 65, .86) 52%, rgba(5, 35, 60, .28) 100%), linear-gradient(180deg, transparent, rgba(4, 24, 43, .2));
}

.solution-content {
  position: relative;
  z-index: 2;
  width: 70%;
  min-width: 400px;
  padding: 34px;
}

.solution-content h3 {
  margin: 9px 0 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 800;
}

.solution-content p {
  color: rgba(255, 255, 255, .74);
  font-size: .85rem;
  line-height: 1.65;
}

.solution-content ul {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 7px;
}

.solution-content li {
  position: relative;
  padding-left: 18px;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .88);
}

.solution-content li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(240, 47, 47, .13);
  position: absolute;
  left: 0;
  top: .55em;
}

/* products */
.products-section {
  overflow: hidden;
}

.productSwiper {
  overflow: visible;
  padding: 5px 3px 55px;
}

.product-card {
  height: 100%;
  background: #fff;
  border: 1px solid #dfeaf3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(16, 52, 83, .08);
  transition: box-shadow var(--transition), transform var(--transition);
  transform-style: preserve-3d;
}

.product-card:hover {
  box-shadow: 0 24px 55px rgba(16, 52, 83, .16);
}

.product-image {
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf3fb, #fff);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-body {
  min-height: 170px;
  padding: 18px 18px 20px;
  position: relative;
}

.product-body h3 {
  margin: 0 36px 7px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: -.025em;
  font-weight: 800;
  color: var(--navy);
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.65;
}

.product-body a {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf6ff;
  color: var(--blue);
  transition: var(--transition);
}

.product-body a:hover {
  background: var(--red);
  color: #fff;
  transform: rotate(8deg);
}

.slider-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 36px;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid #dbe7f0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 7px 20px rgba(20, 55, 86, .08);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 12px;
  font-weight: 900;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.swiper-pagination {
  position: static;
  width: auto !important;
}

.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #9bb2c7;
  opacity: .55;
}

.swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 99px;
  background: var(--red);
  opacity: 1;
}

/* benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.benefit-card {
  min-height: 150px;
  padding: 20px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(218, 232, 244, .9);
  box-shadow: 0 10px 25px rgba(25, 61, 94, .06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.benefit-card>span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff0f1;
  color: var(--red);
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card h3 {
  margin: 0;
  font-size: .74rem;
  line-height: 1.45;
  font-weight: 800;
  color: var(--navy);
}

/* industries */
.industries-section .section-heading {
  margin-left: 0;
}

.industry-card {
  position: relative;
  height: 355px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  background: var(--navy);
  isolation: isolate;
}

.industry-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .75, .25, 1);
  z-index: -2;
}

.industry-card:hover>img {
  transform: scale(1.07);
}

.industry-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 25, 45, .05) 15%, rgba(4, 29, 52, .88) 65%, rgba(4, 29, 52, .98) 100%);
}

.industry-content {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  color: #fff;
}

.industry-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  margin-bottom: 11px;
  box-shadow: 0 0 0 7px rgba(240, 47, 47, .13);
}

.industry-content h3 {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -.025em;
}

.industry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.industry-content li {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 255, 255, .75);
  font-size: .7rem;
}

.industry-content li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  left: 0;
  top: .6em;
}

/* projects */
.projectSwiper {
  overflow: visible;
  padding-bottom: 52px;
}

.project-card {
  display: block;
  position: relative;
  height: 245px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(13, 46, 75, .11);
  isolation: isolate;
  color: #fff;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
  position: relative;
  z-index: -2;
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 34%, rgba(5, 31, 54, .9) 100%);
}

.project-card>div {
      position: absolute;
    left: 1px;
    bottom: 0px;
    padding: 17px;
}

.project-card small {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.project-card h3 {
  margin: 4px 0 1px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.project-card p {
  margin: 0;
  font-size: .7rem;
  color: rgba(255, 255, 255, .72);
}

.project-zoom {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .18);
  transition: var(--transition);
}

.project-card:hover .project-zoom {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(7deg);
}

.compact-controls {
  margin-top: 15px;
}

/* process */
.process-section {
  overflow: hidden;
}

.process-section .section-heading {
  margin-left: 0;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}

.process-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, rgba(17, 96, 163, .22), rgba(17, 96, 163, .55), rgba(17, 96, 163, .22));
  z-index: -1;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step>span {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf6fe;
  color: var(--navy);
  border: 6px solid #fff;
  box-shadow: 0 0 0 1px #dce8f1, 0 10px 24px rgba(19, 60, 97, .08);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  transition: var(--transition);
}

.process-step:hover>span {
  background: var(--red);
  color: #fff;
  transform: translateY(-3px);
}

.process-step>i {
  display: block;
  color: var(--red);
  font-size: 20px;
  margin-bottom: 8px;
}

.process-step h3 {
  margin: 0;
  font-size: .78rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--navy);
}

.process-step p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .67rem;
  line-height: 1.55;
}

/* services */
.sticky-copy {
  position: sticky;
  top: 130px;
}

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

.service-card {
  min-height: 185px;
  padding: 21px;
  border-radius: 17px;
  background: #fff;
  border: 1px solid #deebf5;
  box-shadow: 0 10px 25px rgba(16, 54, 89, .06);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(17, 96, 163, .2);
}

.service-card>span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #edf6ff;
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover>span {
  background: var(--red);
  color: #fff;
}

.service-card h3 {
  margin: 0 0 7px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .94rem;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.6;
}

.service-card-wide {
  grid-column: span 3;
  min-height: 145px;
  display: grid;
  grid-template-columns: auto 150px 1fr;
  align-items: center;
  gap: 16px;
}

.service-card-wide>span {
  margin: 0;
}

.service-card-wide h3 {
  margin: 0;
}

.rental-duration {
  margin-top: 35px;
  display: grid;
  grid-template-columns: .9fr 1.25fr 1.25fr;
  gap: 16px;
  align-items: stretch;
}

.duration-heading {
  padding: 22px 0;
}

.duration-heading h3 {
  margin: 7px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.035em;
}

.duration-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 17px;
  background: #fff;
  border: 1px solid #deebf5;
  box-shadow: 0 10px 25px rgba(16, 54, 89, .06);
}

.duration-card>span {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff0f1;
  color: var(--red);
  font-size: 20px;
}

.duration-card h4 {
  margin: 2px 0 6px;
  font-size: .9rem;
  font-weight: 800;
}

.duration-card p {
  margin: 0;
  color: var(--muted);
  font-size: .71rem;
  line-height: 1.55;
}

/* achievements */
.achievements-section {
  padding: 108px 0;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(30deg, rgba(255, 255, 255, .025) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(135deg, #061a31 0%, #0a2f52 58%, #0b3d68 100%);
}

.achievements-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(240, 47, 47, .12), transparent 28%, transparent 72%, rgba(23, 125, 212, .12));
}

.achievements-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  opacity: .7;
}

.achievements-orb-one {
  width: 330px;
  height: 330px;
  left: -160px;
  top: -100px;
  background: rgba(240, 47, 47, .13);
}

.achievements-orb-two {
  width: 380px;
  height: 380px;
  right: -180px;
  bottom: -180px;
  background: rgba(32, 132, 220, .13);
}

.achievements-head {
  margin-bottom: 42px;
}

.achievements-head h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 800;
  color: #fff;
}

.achievements-head h2 span {
  color: #ff4a4a;
}

.achievements-intro {
  max-width: 520px;
  margin: 0 0 5px auto;
  color: rgba(255, 255, 255, .72);
  font-size: .96rem;
  line-height: 1.8;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.achievement-card {
  min-height: 295px;
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 22px 48px rgba(0, 0, 0, .13);
  backdrop-filter: blur(12px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.achievement-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -55px;
  bottom: -65px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 47, 47, .24), rgba(240, 47, 47, 0) 68%);
  transition: transform .4s ease;
}

.achievement-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, .26);
  background: linear-gradient(155deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .055));
}

.achievement-card:hover::after {
  transform: scale(1.22);
}

.achievement-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #f74646, #d91f25);
  box-shadow: 0 12px 24px rgba(240, 47, 47, .2);
  font-size: 20px;
}

.achievement-value {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.2rem, 3.3vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 800;
}

.achievement-value sup {
  color: #ff5353;
  font-size: .55em;
  line-height: 1.25;
}

.achievement-word {
  min-height: 55px;
  font-size: clamp(1.65rem, 2.3vw, 2.5rem);
  align-items: center;
}

.achievement-card h3 {
  margin: 14px 0 8px;
  color: #fff;
  font-size: .94rem;
  font-weight: 800;
}

.achievement-card p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .71rem;
  line-height: 1.65;
}

.achievement-index {
  position: absolute;
  right: 22px;
  top: 21px;
  color: rgba(255, 255, 255, .15);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .08em;
}

/* testimonials */
.testimonials-section {
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(17, 96, 163, .08), transparent 24%),
    radial-gradient(circle at 12% 88%, rgba(240, 47, 47, .055), transparent 24%),
    #fff;
}

.testimonial-intro-card {
  max-width: 515px;
}

.testimonial-intro-card h2,
.quality-lead h2 {
  margin: 10px 0 17px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -.05em;
  font-weight: 800;
  color: var(--navy);
}

.testimonial-intro-card h2 span,
.quality-lead h2 span {
  color: var(--red);
}

.testimonial-intro-card>p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.8;
}

.testimonial-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-highlights>div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon title" "icon text";
  column-gap: 13px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #e1ebf4;
  border-radius: 15px;
  background: rgba(248, 251, 254, .82);
}

.testimonial-highlights>div>span {
  grid-area: icon;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eaf5ff;
  color: var(--blue);
  font-size: 18px;
}

.testimonial-highlights strong {
  grid-area: title;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
}

.testimonial-highlights small {
  grid-area: text;
  color: var(--muted);
  font-size: .65rem;
}

.testimonial-quote-card {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 62px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .15), transparent 20%),
    linear-gradient(135deg, #0a2e50 0%, #061b32 70%, #071728 100%);
  box-shadow: 0 28px 70px rgba(7, 31, 58, .18);
}

.testimonial-quote-card::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -100px;
  bottom: -110px;
  background: rgba(240, 47, 47, .16);
  filter: blur(3px);
}

.quote-mark {
  position: absolute;
  right: 38px;
  top: 28px;
  color: rgba(255, 255, 255, .09);
  font-size: 105px;
  line-height: 1;
}

.quote-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: #ffc653;
  font-size: 14px;
}

.testimonial-quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.testimonial-quote-card blockquote>p {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.42rem, 2.3vw, 2.2rem);
  line-height: 1.48;
  letter-spacing: -.03em;
  font-weight: 650;
}

.testimonial-quote-card footer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--red);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 12px 25px rgba(240, 47, 47, .24);
}

.testimonial-quote-card footer strong,
.testimonial-quote-card footer small {
  display: block;
}

.testimonial-quote-card footer strong {
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
}

.testimonial-quote-card footer small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .62);
  font-size: .66rem;
}

.quote-edge-note {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .75);
  font-size: .64rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.quote-edge-note i {
  color: #64d39b;
}

/* quality focus */
.quality-focus-section {
  padding: 108px 0;
  background:
    linear-gradient(180deg, rgba(245, 249, 253, .94), rgba(237, 246, 253, .94)),
    radial-gradient(circle at 25% 20%, rgba(17, 96, 163, .08), transparent 28%);
}

.quality-shell {
  overflow: hidden;
  border: 1px solid #dce9f3;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(15, 55, 89, .11);
}

.quality-lead {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 470px;
  padding: clamp(32px, 5vw, 62px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(135deg, #081f39, #0b355c);
}

.quality-lead::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  left: -150px;
  bottom: -150px;
  background: rgba(240, 47, 47, .18);
}

.quality-lead h2 {
  color: #fff;
}

.quality-lead>p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
  line-height: 1.8;
}

.quality-seal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 17px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
}

.quality-seal>span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .11);
  color: #fff;
  font-size: 22px;
}

.quality-seal strong,
.quality-seal small {
  display: block;
}

.quality-seal strong {
  color: #fff;
  font-size: .78rem;
}

.quality-seal small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .58);
  font-size: .64rem;
}

.quality-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #dce8f2;
}

.quality-feature-card {
  min-height: 234px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-content: center;
  padding: clamp(25px, 3.4vw, 42px);
  background: #fff;
  transition: background .35s ease, transform .35s ease;
}

.quality-feature-card:hover {
  z-index: 2;
  background: #f7fbff;
}

.quality-feature-wide {
  grid-column: 1 / -1;
  min-height: 235px;
}

.quality-feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eaf5ff;
  color: var(--blue);
  font-size: 22px;
}

.quality-number {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.quality-feature-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.quality-feature-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.68;
}

/* who we serve */
.serve-section .section-heading {
  text-align: center;
}

.serve-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.serve-pills span {
  min-height: 52px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ddeaf4;
  color: var(--navy);
  box-shadow: 0 7px 18px rgba(14, 50, 83, .05);
  font-size: .8rem;
  font-weight: 800;
  transition: var(--transition);
}

.serve-pills span i {
  color: var(--red);
  font-size: 17px;
}

.serve-pills span:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* faq */
.faq-section {
  background: #fff;
}

.faq-callout {
  margin-top: 26px;
  max-width: 370px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f5f9fd;
  border: 1px solid #e0eaf2;
  border-radius: 15px;
}

.faq-callout>span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
}

.faq-callout small,
.faq-callout a {
  display: block;
}

.faq-callout small {
  color: var(--muted);
  font-size: .68rem;
}

.faq-callout a {
  color: var(--navy);
  font-weight: 800;
  font-size: .82rem;
  margin-top: 2px;
}

.premium-accordion {
  display: grid;
  gap: 10px;
}

.premium-accordion .accordion-item {
  border: 1px solid #dfeaf3;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 7px 20px rgba(14, 50, 83, .04);
}

.premium-accordion .accordion-button {
  padding: 17px 19px;
  font-weight: 800;
  color: var(--navy);
  font-size: .84rem;
  background: #fff;
  box-shadow: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
  background: #f4f9fd;
  color: var(--red);
}

.premium-accordion .accordion-button::after {
  width: 28px;
  height: 28px;
  background-image: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  content: "+";
  font-size: 18px;
  color: var(--navy);
  background: #edf5fb;
  transform: none;
  text-align: center;
  line-height: 28px;
}

.premium-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  background: var(--red);
  color: #fff;
}

.premium-accordion .accordion-body {
  padding: 0 20px 18px;
  background: #f4f9fd;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.7;
}

/* contact CTA */
.contact-cta-section {
  padding-top: 40px;
  padding-bottom: 0;
}

.contact-cta {
  min-height: 330px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 42px;
  color: #fff;
  box-shadow: 0 24px 65px rgba(5, 29, 51, .22);
  isolation: isolate;
}

.contact-cta>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.contact-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 30, 53, .98) 0%, rgba(5, 32, 57, .92) 55%, rgba(5, 32, 57, .56) 100%);
}

.contact-cta h2 {
  margin: 8px 0 9px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -.045em;
}

.contact-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 8px;
  margin-top: 24px;
}

.form-field {
  min-width: 0;
  position: relative;
}

.form-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6f8294;
  font-size: 14px;
}

.form-field input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 11px;
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
  padding: 0 12px 0 38px;
  outline: none;
  font-size: .75rem;
  transition: .2s ease;
}

.form-field input:focus {
  border-color: #7bb8ef;
  box-shadow: 0 0 0 4px rgba(75, 151, 219, .14);
}

.form-field input.is-invalid {
  border-color: #ef5c64;
  box-shadow: 0 0 0 4px rgba(240, 47, 47, .12);
}

.form-status {
  margin-top: 9px !important;
  min-height: 18px;
  font-size: .7rem !important;
}

.cta-contact-box {
  display: grid;
  gap: 10px;
  max-width: 360px;
  margin-left: auto;
}

.cta-contact-box a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(6, 30, 54, .56);
  backdrop-filter: blur(14px);
  transition: var(--transition);
}

.cta-contact-box a:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateX(-4px);
}

.cta-contact-box a>span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.cta-contact-box a>span.whatsapp {
  background: #24b767;
}

.cta-contact-box small,
.cta-contact-box strong {
  display: block;
}

.cta-contact-box small {
  color: rgba(255, 255, 255, .62);
  font-size: .63rem;
}

.cta-contact-box strong {
  font-size: .85rem;
  margin-top: 2px;
}

/* footer */
.site-footer {
  margin-top: 75px;
  background: #fff;
  border-top: 1px solid #e5edf4;
}

.footer-main {
  padding: 58px 0 48px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 185px;
  height: auto;
}

.site-footer p {
  max-width: 390px;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf5fb;
  color: var(--navy);
  font-size: 12px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer h3 {
  font-size: .83rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 15px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer li a {
  color: #65798e;
  font-size: .72rem;
  transition: .2s ease;
}

.site-footer li a:hover {
  color: var(--red);
  padding-left: 3px;
}

.footer-contact {
  display: grid;
  gap: 11px;
}

.footer-contact>a,
.footer-contact>span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #5f7489;
  font-size: .72rem;
  line-height: 1.55;
}

.footer-contact i {
  color: var(--red);
  margin-top: 1px;
}

.footer-contact strong {
  color: var(--navy);
  font-weight: 800;
}

.footer-bottom {
  min-height: 58px;
  border-top: 1px solid #e4edf4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
  font-size: .62rem;
}

.footer-bottom div {
  display: flex;
  gap: 8px;
  color: #718498;
  font-size: .62rem;
}

.footer-bottom a:hover {
  color: var(--red);
}

/* floating buttons */
.floating-actions {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 1030;
  display: grid;
  gap: 9px;
}

.floating-actions a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(5, 30, 53, .18);
  transition: var(--transition);
}

.float-call {
  background: var(--navy);
}

.float-wa {
  background: #1ebd63;
}

.floating-actions a:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.04);
}

.float-wa::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(30, 189, 99, .45);
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(.9);
    opacity: .8;
  }

  80%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1030;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 25px rgba(240, 47, 47, .25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* search modal */
.search-modal .modal-content {
  border: 0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.search-modal .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.search-modal h2 {
  margin: 8px 0 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.search-box {
  position: relative;
}

.search-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #708397;
}

.search-box input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 45px;
  border: 1px solid #dce7f0;
  background: #f7fafc;
  border-radius: 14px;
  outline: none;
}

.search-results {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.search-results a {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  background: #f4f8fb;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
  transition: var(--transition);
}

.search-results a:hover {
  color: #fff;
  background: var(--navy);
  padding-left: 18px;
}

.search-results a.is-hidden {
  display: none;
}

/* accessibility / motion */
:focus-visible {
  outline: 3px solid rgba(17, 96, 163, .28);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* =========================================================
   CONTENT-COMPLETE RENTAL PAGE REDESIGN - 04 SEP 2026
   ========================================================= */
.section {
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(2rem, 2.4vw, 2.4rem);
}

.section-heading p {
  line-height: 1.7;
}

.contact-cta-section {
  padding-top: 52px;
  padding-bottom: 60px;
}

.products-section {
  overflow: clip;
  background: #fff;
}

.product-heading {
  max-width: 820px;
  margin-left: 0;
}

.product-detail-list {
  display: grid;
  gap: 22px;
}

.product-detail-row {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(0, 1.45fr);
  min-height: 350px;
  background: #fff;
  border: 1px solid #dce8f2;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(11, 49, 81, .075);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-detail-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 65px rgba(11, 49, 81, .13);
  border-color: #c9dceb;
}

.product-detail-media {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: #eaf2f8;
}

.product-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 29, 54, .34));
  pointer-events: none;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .75, .25, 1);
}

.product-detail-row:hover .product-detail-media img {
  transform: scale(1.045);
}

.product-index {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 15px;
  color: #fff;
  background: rgba(5, 30, 55, .7);
  backdrop-filter: blur(10px);
  font: 800 .78rem "Plus Jakarta Sans", sans-serif;
}

.product-detail-content {
  min-width: 0;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-top {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.product-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-detail-content h3 {
  margin: 0;
  color: var(--navy);
  font: 800 1.55rem/1.15 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.035em;
}

.product-detail-content>p {
  margin: 8px 0 20px;
  max-width: 750px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.7;
}

.product-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
  padding: 9px 12px;
  border: 1px solid #d8e7f2;
  border-radius: 11px;
  transition: var(--transition);
}

.product-link:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.spec-grid>div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #e0eaf2;
  border-radius: 13px;
  background: #f8fbfe;
}

.spec-grid span,
.spec-grid strong {
  display: block;
}

.spec-grid span {
  margin-bottom: 4px;
  color: #7b8da0;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.spec-grid strong {
  color: var(--navy);
  font-size: .77rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.product-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 13px;
  color: #6d8094;
  font-size: .68rem;
  line-height: 1.55;
}

.product-note i {
  color: var(--red);
  flex: 0 0 auto;
  margin-top: 1px;
}

.sticky-copy {
  position: sticky;
  top: 118px;
}

.sticky-copy h2 {
  margin: 10px 0 14px;
  color: var(--navy);
  font: 800 clamp(2rem, 3.2vw, 2.35rem)/1.05 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.045em;
}

.sticky-copy h2 span {
  color: var(--red);
}

.sticky-copy p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.rent-benefit-stack {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 13px;
}

.rent-benefit-card {
  display: grid;
  /* grid-template-columns: 58px 50px 1fr; */
  gap: 15px;
  align-items: center;
  padding: 19px 22px;
  border: 1px solid #d9e7f2;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 30px rgba(10, 52, 88, .055);
  transition: var(--transition);
}

.rent-benefit-card:hover {
  transform: translateX(5px);
  border-color: #c6dbe9;
  box-shadow: 0 16px 36px rgba(10, 52, 88, .09);
}

.rent-benefit-card>span {
  color: #a8b8c7;
  font: 800 .76rem "Plus Jakarta Sans", sans-serif;
}

.rent-benefit-card>div {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-areas: "icon title" "icon text";
  column-gap: 15px;
  align-items: center;
}

.rent-benefit-card i {
  grid-area: icon;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--red);
  background: #fff0f1;
  font-size: 19px;
}

.rent-benefit-card h3 {
  grid-area: title;
  margin: 0;
  color: var(--navy);
  font: 800 .92rem/1.3 "Plus Jakarta Sans", sans-serif;
}

.rent-benefit-card p {
  grid-area: text;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.55;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.industry-card {
  height: 390px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy);
  box-shadow: 0 18px 48px rgba(6, 39, 68, .12);
}

.industry-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.industry-card:hover>img {
  transform: scale(1.06);
}

.industry-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 25, 47, .08) 20%, rgba(4, 25, 47, .9) 68%, #061c35 100%);
}

.industry-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: #fff;
}

.industry-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  margin-bottom: 11px;
  background: var(--red);
  color: #fff;
}

.industry-content h3 {
  margin: 0 0 7px;
  font: 800 1rem "Plus Jakarta Sans", sans-serif;
}

.industry-content p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .72);
  font-size: .77rem;
  line-height: 1.55;
}

.industry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 3px;
}

.industry-content li {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 255, 255, .82);
  font-size: .72rem;
  line-height: 1.38;
}

.industry-content li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  left: 0;
  top: .42em;
}

.professional-rental-card {
  overflow: hidden;
  border: 1px solid #dce7f1;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(9, 47, 79, .09);
}

.professional-image {
  min-height: 445px;
}

.professional-image img {
  width: 100%;
  height: 100%;
  min-height: 445px;
  object-fit: cover;
}

.professional-copy {
  height: 100%;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.professional-copy h2 {
  margin: 9px 0 12px;
  color: var(--navy);
  font: 800 clamp(1.9rem, 3vw, 2.75rem)/1.06 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.045em;
}

.professional-copy h2 span {
  color: var(--red);
}

.professional-copy>p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.72;
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.audience-pills span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid #d8e6f0;
  background: #f7fbfe;
  color: #31506c;
  font-size: .68rem;
  font-weight: 800;
}

.professional-note {
  padding-left: 15px;
  border-left: 3px solid var(--red);
}

.professional-copy .btn-premium {
  align-self: flex-start;
  margin-top: 20px;
}

.duration-section {
  background: #fff;
}

.duration-card {
  height: 100%;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 19px;
  align-items: start;
  padding: 28px;
  border: 1px solid #dce8f1;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f8fbfe);
  box-shadow: 0 14px 38px rgba(8, 47, 81, .06);
}

.duration-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
  font-size: 25px;
  box-shadow: 0 12px 25px rgba(7, 31, 58, .16);
}

.duration-card span {
  color: var(--red);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.duration-card h3 {
  margin: 6px 0 8px;
  color: var(--navy);
  font: 800 1.18rem "Plus Jakarta Sans", sans-serif;
}

.duration-card p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
}

.duration-foot {
  margin-top: 17px;
  padding: 15px 18px;
  border-radius: 14px;
  background: #f4f8fb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.duration-foot p {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.partner-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid #dce8f1;
  border-radius: 20px;
  background: #fff;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(9, 47, 79, .1);
}

.partner-card>span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #fff0f1;
  color: var(--red);
  font-size: 20px;
}

.partner-card h3 {
  margin: 18px 0 9px;
  color: var(--navy);
  font: 800 .94rem/1.35 "Plus Jakarta Sans", sans-serif;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.65;
}

.process-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.process-intro>div {
  max-width: 720px;
}

.process-intro h2 {
  margin: 9px 0 0;
  color: var(--navy);
  font: 800 clamp(2rem, 3.2vw, 3rem)/1.05 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.045em;
}

.process-intro h2 span {
  color: var(--red);
}

.process-intro>p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-flow .process-line {
  position: absolute;
  z-index: 0;
  left: 8%;
  right: 8%;
  top: 53px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b9d2e5 10%, #b9d2e5 90%, transparent);
}

.process-flow .process-step {
  position: relative;
  z-index: 1;
  min-height: 165px;
  padding: 25px;
  text-align: left;
  border: 1px solid #dbe7f1;
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 32px rgba(9, 49, 82, .055);
  transition: var(--transition);
}

.process-flow .process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(9, 49, 82, .11);
}

.process-number {
  position: absolute;
  right: 18px;
  top: 17px;
  color: #cbd8e2;
  font: 800 .72rem "Plus Jakarta Sans", sans-serif;
  letter-spacing: .08em;
}

.process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--navy), #0f4f83);
  color: #fff;
  font-size: 21px;
  box-shadow: 0 12px 24px rgba(7, 31, 58, .15);
}

.process-flow .process-step:nth-of-type(3n+1) .process-icon {
  background: linear-gradient(135deg, #f44843, #d9232b);
}

.process-flow .process-step h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font: 800 .91rem/1.35 "Plus Jakarta Sans", sans-serif;
}

.process-flow .process-step p {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
  line-height: 1.62;
}

.section-side-copy {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.7;
}

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

.support-card {
  min-height: 155px;
  padding: 21px;
  border: 1px solid #dce8f1;
  border-radius: 18px;
  background: #fff;
  transition: var(--transition);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(7, 48, 83, .09);
}

.support-card>span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #edf6fd;
  color: var(--blue);
  font-size: 18px;
}

.support-card h3 {
  margin: 15px 0 7px;
  color: var(--navy);
  font: 800 .86rem "Plus Jakarta Sans", sans-serif;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.6;
}

.service-support-grid .support-card:last-child {
  grid-column: span 2;
}

.service-line {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  text-align: center;
  font-size: .69rem;
  font-weight: 700;
}

.service-line i {
  color: var(--red);
}

.achievements-section {
  overflow: hidden;
  background: #061a31;
  color: #fff;
}

.achievements-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(26, 105, 167, .32), transparent 34%), radial-gradient(circle at 88% 70%, rgba(240, 47, 47, .15), transparent 32%), linear-gradient(135deg, #05172b, #082540);
}

.achievements-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255, 255, 255, .25) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .25) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.section-heading.light h2 {
  color: #fff;
}

.section-heading.light h2 span {
  color: #ff4a49;
}

.section-heading.light p {
  color: rgba(255, 255, 255, .66);
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.achievement-card {
  min-height: 190px;
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .065);
  backdrop-filter: blur(14px);
  transition: var(--transition);
}

.achievement-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -45px;
  bottom: -50px;
  border-radius: 50%;
  background: rgba(240, 47, 47, .12);
}

.achievement-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .095);
}

.achievement-card>i {
     width: 43px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 6px;
    background: rgba(240, 47, 47, .14);
    color: #ff5d5d;
    font-size: 19px;
}

.achievement-card>strong {
  display: block;
  color: #fff;
  font: 800 clamp(1.8rem, 2.7vw, 1.85rem)/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.04em;
}

.achievement-card h3 {
  margin: 8px 0 8px;
  color: #fff;
  font: 800 .84rem "Plus Jakarta Sans", sans-serif;
}

.achievement-card p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .66rem;
  line-height: 1.55;
}

.testimonials-section {
  overflow: hidden;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.5fr);
  gap: 42px;
  align-items: center;
}

.testimonial-intro h2 {
  margin: 9px 0 13px;
  color: var(--navy);
  font: 800 clamp(2rem, 3.2vw, 3rem)/1.04 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.045em;
}

.testimonial-intro h2 span {
  color: var(--red);
}

.testimonial-intro p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.72;
}

.testimonial-nav {
  display: flex;
  gap: 9px;
  margin-top: 24px;
}

.testimonial-nav .slider-btn {
  position: static;
  transform: none;
}

.testimonial-carousel-wrap {
  min-width: 0;
}

.testimonialSwiper {
  padding: 4px 4px 40px;
}

.testimonial-card {
  height: 100%;
  min-height: 340px;
  position: relative;
  padding: 34px;
  border: 1px solid #d8e6f0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(8, 48, 82, .08);
}

.premium-quote {
  color: #fff;
  background: linear-gradient(135deg, #071e38, #0a3c64);
  border-color: transparent;
}

.premium-quote::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -65px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(240, 47, 47, .16);
}

.quote-mark {
  position: absolute;
  right: 26px;
  top: 17px;
  color: rgba(255, 255, 255, .1);
  font-size: 86px;
  line-height: 1;
}

.stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  color: #ffcc62;
  font-size: 12px;
}

.premium-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 780px;
  color: #fff;
  font: 700 clamp(1.18rem, 2vw, 1.55rem)/1.6 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.025em;
}

.testimonial-person {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
}

.testimonial-person>span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
}

.testimonial-person strong,
.testimonial-person small {
  display: block;
}

.testimonial-person strong {
  color: #fff;
  font-size: .77rem;
}

.testimonial-person small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .6);
  font-size: .63rem;
}

.feedback-focus {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feedback-label {
  color: var(--blue);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feedback-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 21px 0 18px;
  border-radius: 17px;
  background: #fff0f1;
  color: var(--red);
  font-size: 23px;
}

.feedback-focus h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font: 800 1.25rem "Plus Jakarta Sans", sans-serif;
}

.feedback-focus p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.7;
}

.feedback-chip {
  align-self: flex-start;
  margin-top: 22px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #eef7fd;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 800;
}

.testimonial-pagination {
  bottom: 5px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: .3;
  background: var(--navy);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 20px;
  opacity: 1;
  background: var(--red);
}

.quality-focus-section {
  background: #fff;
}

.quality-shell {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.25fr);
  overflow: hidden;
  border: 1px solid #dce8f1;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 65px rgba(7, 47, 81, .1);
}

.quality-visual {
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.quality-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 28, 51, .12), rgba(4, 28, 51, .92));
}

.quality-visual-copy {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px;
}

.quality-shield {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  backdrop-filter: blur(10px);
  font-size: 25px;
}

.quality-visual-copy h2 {
  margin: 8px 0 11px;
  color: #fff;
      font: 800 clamp(2rem, 2vw, 2.85rem) / 1.04 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.045em;
}

.quality-visual-copy h2 span {
  color: #ff5252;
}

.quality-visual-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .67);
  font-size: .79rem;
  line-height: 1.7;
}

.quality-content {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #fff, #f7fbfe);
}

.quality-topline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid #dde8f1;
}

.quality-topline span {
  color: var(--red);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.quality-topline strong {
  color: var(--navy);
  font: 800 1rem "Plus Jakarta Sans", sans-serif;
}

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

.quality-grid-new article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  padding: 18px;
  border: 1px solid #dce7f0;
  border-radius: 16px;
  background: #fff;
}

.quality-grid-new article>span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #edf6fd;
  color: var(--blue);
  font-size: 18px;
}

.quality-grid-new h3 {
  margin: 2px 0 5px;
  color: var(--navy);
  font: 800 .78rem "Plus Jakarta Sans", sans-serif;
}

.quality-grid-new p {
  margin: 0;
  color: var(--muted);
  font-size: .64rem;
  line-height: 1.55;
}

.quality-note {
  display: flex;
  gap: 9px;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 13px;
  background: #fff0f1;
  color: #80585d;
  font-size: .66rem;
  line-height: 1.55;
}

.quality-note i {
  color: var(--red);
  flex: 0 0 auto;
}

.areas-card {
  padding: 28px;
  border: 1px solid #dce8f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(8, 48, 82, .07);
}

.areas-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.areas-card-head>span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--navy);
  color: #fff;
}

.areas-card-head small,
.areas-card-head strong {
  display: block;
}

.areas-card-head small {
  color: var(--red);
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.areas-card-head strong {
  margin-top: 3px;
  color: var(--navy);
  font-size: .86rem;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-pills span {
  padding: 8px 11px;
  border: 1px solid #dbe7f0;
  border-radius: 999px;
  color: #38536d;
  background: #f8fbfd;
  font-size: .65rem;
  font-weight: 700;
}

.pan-india-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #071f3a;
  color: #fff;
}

.pan-india-note i {
  color: #ff5252;
  font-size: 18px;
}

.pan-india-note p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  line-height: 1.55;
}

.pan-india-note strong {
  color: #fff;
}

.consider-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.consider-card {
  min-height: 150px;
  position: relative;
  padding: 24px;
  border: 1px solid #dce7f0;
  border-radius: 19px;
  background: #fff;
  transition: var(--transition);
}

.consider-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 42px rgba(8, 48, 82, .09);
}

.consider-card>span {
  position: absolute;
  right: 17px;
  top: 15px;
  color: #c7d5e0;
  font: 800 .67rem "Plus Jakarta Sans", sans-serif;
}

.consider-card>i {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff0f1;
  color: var(--red);
  font-size: 18px;
}

.consider-card h3 {
  margin: 17px 0 8px;
  color: var(--navy);
  font: 800 .87rem "Plus Jakarta Sans", sans-serif;
}

.consider-card p {
  margin: 0;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.6;
}

.consider-card.wide {
  grid-column: span 3;
  min-height: auto;
  display: grid;
  grid-template-columns: 47px 1fr auto;
  grid-template-areas: "icon title link" "icon text link";
  column-gap: 16px;
  align-items: center;
}

.consider-card.wide>i {
  grid-area: icon;
}

.consider-card.wide h3 {
  grid-area: title;
  margin: 0 0 5px;
}

.consider-card.wide p {
  grid-area: text;
}

.consider-card.wide .text-link {
  grid-area: link;
}

.comparison-table-wrap {
  overflow: hidden;
  border: 1px solid #d7e5ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(8, 48, 82, .08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e5edf3;
  vertical-align: middle;
}

.comparison-table thead th {
  color: #fff;
  background: var(--navy);
  font-size: .72rem;
  font-weight: 800;
}

.comparison-table thead th:first-child {
  width: 44%;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  color: var(--navy);
  font-size: .73rem;
  font-weight: 800;
}

.comparison-table td:not(:first-child) {
  color: var(--muted);
  font-size: .68rem;
}

.comparison-table .yes {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #11704a;
  font-weight: 800;
}

.comparison-table .yes i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f8f1;
}

.comparison-table .muted {
  color: #7f8d9c;
}
 .comparison-table .no {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8a5860;
  font-weight: 800;
}

.comparison-table .no i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0f1;
  color: #d9363e;
  font-size: .58rem;
}

.premium-accordion .accordion-item {
  border: 1px solid #dbe7f0;
  border-radius: 15px !important;
  overflow: hidden;
  margin-bottom: 9px;
  background: #fff;
}

.premium-accordion .accordion-button {
  padding: 16px 18px;
  color: var(--navy);
  background: #fff;
  box-shadow: none;
  font-size: .77rem;
  font-weight: 800;
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: var(--red);
  background: #fff7f7;
}

.premium-accordion .accordion-button:focus {
  box-shadow: none;
}

.premium-accordion .accordion-body {
  padding: 0 18px 17px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.65;
  background: #fff7f7;
}

.final-rental-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #061d36;
  box-shadow: 0 24px 70px rgba(5, 32, 58, .18);
}

.final-rental-media,
.final-rental-media img,
.final-rental-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-rental-media img {
  object-fit: cover;
}

.final-rental-overlay {
  background: linear-gradient(90deg, rgba(4, 26, 49, .97) 0%, rgba(4, 26, 49, .88) 50%, rgba(4, 26, 49, .35) 100%);
}

.final-rental-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  padding: 52px;
}

.final-rental-content h2 {
  margin: 10px 0 12px;
  color: #fff;
  font: 800 clamp(2rem, 3.5vw, 2.45rem)/1.03 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.05em;
}

.final-rental-content h2 span {
  color: #ff4a49;
}

.final-rental-content>p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, .72);
  font-size: .86rem;
  line-height: 1.7;
}

.final-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 21px 0 24px;
}

.final-product-list span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .07);
  font-size: .62rem;
  font-weight: 800;
}

.site-footer {
  margin-top: 0;
  color: #fff;
  background: #05172b;
  border-top: 0;
}

.footer-main {
  padding: 58px 0 46px;
}

.footer-logo {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 15px;
  background: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, .58);
  font-size: .76rem;
}

.site-footer h3 {
  color: #fff;
  font-size: .85rem;
}

.site-footer li a {
  color: rgba(255, 255, 255, .62);
  font-size: .73rem;
}

.site-footer li a:hover {
  color: #fff;
}

.footer-social a {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.footer-contact a,
.footer-contact>span {
  color: rgba(255, 255, 255, .65);
}

.footer-contact i {
  color: #ff5151;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
  color: rgba(255, 255, 255, .5);
}

.hero-media img,
.about-visual>img,
.solution-card>img,
.contact-cta>img {
  object-fit: cover;
}

body,
main,
.site-footer,
.section {
  max-width: 100%;
  overflow-x: clip;
}

.solution-card {
  min-height: 610px;
}

.solution-content {
  width: 76%;
}

.solution-content p+p {
  margin-top: 8px;
}

/* Compact vertical rhythm requested for the landing page */
.section {
  padding-top:30px;
  padding-bottom: 30px;
}

.contact-cta-section {
  padding-top: 32px;
  padding-bottom: 48px;
}


/* =========================================================
   HEADER + HERO + PRODUCT SPECIFICATION REFINEMENT
   Requested update - 04 SEP 2026
   ========================================================= */
html {
  scroll-padding-top: 86px;
}

section[id] {
  scroll-margin-top: 86px;
}

/* sticky header: top information strip scrolls away, main header remains */
.site-topbar {
  position: relative;
  z-index: 1041;
}

.site-header {
  top: 0;
}

.site-header .navbar {
  transition: min-height .3s ease, padding .3s ease;
}

.site-header.is-scrolled .navbar {
  min-height: 70px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.site-header.is-scrolled .navbar-brand img {
  width: 170px;
}

.navbar-brand img {
  transition: width .3s ease;
}

.header-actions {
  margin-left: 24px;
}

/* underline navigation - no background pill */
.main-nav {
  gap: 16px;
  padding: 0;
  border-radius: 0;
}

.main-nav .nav-link {
  position: relative;
  padding: 13px 3px !important;
  border-radius: 0;
  color: #213a57;
  background: transparent !important;
  box-shadow: none !important;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--red), #ff6660);
  transform: translateX(-50%);
  transition: width .28s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--navy);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  width: 100%;
}

/* hero: full-bleed image removes the hard middle seam/bright gap */
.hero-section,
.min-vh-hero {
  min-height: 560px;
}

.hero-media {
  inset: 0;
}

.hero-media::before {
  background: linear-gradient(90deg, rgba(5, 27, 51, .98) 0%, rgba(5, 28, 53, .96) 34%, rgba(5, 28, 53, .79) 51%, rgba(5, 28, 53, .34) 74%, rgba(5, 28, 53, .13) 100%);
}

.hero-media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .07), rgba(3, 16, 31, .32));
}

.hero-media img {
  object-position: center 46%;
  transform: scale(1.015);
}

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

.hero-copy {
  max-width: 700px;
  padding: 58px 0 80px;
}

.hero-copy h1 {
  max-width: 690px;
  font-size: clamp(2.55rem, 4.45vw, 3.25rem);
  line-height: 1.31;
  margin-bottom: 17px;
}

.hero-copy>p {
  max-width: 670px;
  font-size: .96rem;
  line-height: 1.72;
}

.hero-stats {
  margin-top: 32px;
}

.hero-floating-card {
  margin-bottom: 34px;
}

/* premium four-column trust grid */
.trust-strip {
  z-index: 8;
  border-bottom: 0;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.trust-grid {
  position: relative;
  z-index: 2;
  gap: 14px;
  padding: 0;
  transform: translateY(-28px);
  margin-bottom: -10px;
}

.trust-item {
  min-height: 108px;
  position: relative;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 20px;
  border: 1px solid #dce8f2;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 42px rgba(7, 42, 73, .11);
  overflow: hidden;
}

.trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6b62);
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .35s ease;
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-item>em {
  position: absolute;
  right: 14px;
  top: 12px;
  color: #d7e3ec;
  font: 800 .67rem "Plus Jakarta Sans", sans-serif;
  letter-spacing: .08em;
  font-style: normal;
}

.trust-item>span {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 16px;
  background: linear-gradient(145deg, #edf7ff, #e6f2ff);
  color: var(--blue);
  font-size: 21px;
  box-shadow: inset 0 0 0 1px rgba(17, 96, 163, .08);
}

.trust-item:nth-child(even)>span {
  background: #fff0f1;
  color: var(--red);
}

.trust-item strong {
  padding-right: 22px;
  font-size: .82rem;
}

.trust-item small {
  max-width: 205px;
  font-size: .66rem;
  line-height: 1.48;
  margin-top: 4px;
}

/* project-based support now lives in the About section */
.about-section {
  padding-top: 58px;
  padding-bottom: 60px;
}

.about-copy-heading {
  margin-bottom: 20px;
}

.about-copy-heading h2 {
  max-width: 650px;
  font-size: clamp(2rem, 3.15vw, 3rem);
}

.about-copy-heading p {
  margin-top: 12px;
  font-size: .88rem;
  line-height: 1.7;
}

.about-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 22px 0 25px;
}

.about-support-grid>div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 13px;
  border: 1px solid #e1eaf2;
  border-radius: 13px;
  background: #f9fbfd;
  color: #304861;
  font-size: .76rem;
  line-height: 1.42;
  font-weight: 750;
}

.about-support-grid i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--red);
  font-size: 16px;
}

.about-project-visual {
  min-height: 550px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #09213d;
  box-shadow: 0 26px 70px rgba(8, 35, 61, .17);
}

.about-project-visual>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.about-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 24, 45, .83) 100%);
}

.about-project-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 17px;
  background: rgba(5, 30, 55, .72);
  backdrop-filter: blur(14px);
  color: #fff;
}

.about-project-caption>span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--red);
}

.about-project-caption strong,
.about-project-caption small {
  display: block;
}

.about-project-caption strong {
  font-size: .86rem;
}

.about-project-caption small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .68);
  font-size: .66rem;
}

/* At a Glance is now a standalone visual section */
.glance-section {
  overflow: clip;
}

.glance-heading {
  max-width: 760px;
  margin-left: 0;
}

.glance-showcase {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.glance-spotlight {
  grid-row: span 2;
  min-height: 330px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #071f3a 0%, #0b365d 100%);
  box-shadow: 0 22px 58px rgba(7, 36, 65, .17);
}

.glance-spotlight::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -100px;
  top: -100px;
  background: rgba(240, 47, 47, .18);
}

.glance-spotlight-top {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.glance-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #edf6ff;
  color: var(--blue);
  font-size: 19px;
}

.glance-spotlight .glance-icon {
  color: #fff;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .12);
}

.glance-spotlight small,
.glance-info-card small {
  display: block;
  color: #7d91a5;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.glance-spotlight small {
  color: rgba(255, 255, 255, .62);
}

.glance-spotlight h3 {
  position: relative;
  z-index: 1;
  margin: 20px 0 10px;
  font: 800 2rem/1.05 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.04em;
}

.glance-spotlight p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 430px;
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  line-height: 1.7;
}

.glance-metrics {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.glance-metrics>div {
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
}

.glance-metrics strong,
.glance-metrics span {
  display: block;
}

.glance-metrics strong {
  color: #fff;
  font: 800 .9rem "Plus Jakarta Sans", sans-serif;
}

.glance-metrics span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .58);
  font-size: .59rem;
}

.glance-info-card {
  min-height: 158px;
  padding: 21px;
  border: 1px solid #dce8f2;
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 32px rgba(9, 48, 81, .065);
  transition: var(--transition);
}

.glance-info-card:hover {
  transform: translateY(-4px);
  border-color: #c6dce9;
  box-shadow: 0 18px 38px rgba(9, 48, 81, .1);
}

.glance-info-card .glance-icon {
  margin-bottom: 17px;
}

.glance-info-card:nth-child(odd) .glance-icon {
  color: var(--red);
  background: #fff0f1;
}

.glance-info-card h3 {
  margin: 5px 0 0;
  color: var(--navy);
  font: 800 .84rem/1.45 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.015em;
}

/* product details: explicit Specifications + Technical Details for every product */
.product-heading {
  max-width: 860px;
}

.product-detail-list {
  gap: 20px;
}

.product-detail-row {
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.75fr);
  min-height: 0;
  align-items: stretch;
}

.product-detail-media {
  min-height: 440px;
}

.product-detail-media::after {
  background: linear-gradient(180deg, transparent 52%, rgba(4, 29, 54, .52));
}

.product-media-label {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 10px;
  color: #fff;
  background: rgba(5, 30, 55, .7);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-detail-content {
  padding: 28px 30px;
  justify-content: flex-start;
}

.product-detail-content>p {
  margin-bottom: 17px;
  font-size: .91rem;
}

.product-data-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.product-data-panels-wide {
  grid-template-columns: .8fr 1.2fr;
}

.product-data-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid #dfe9f2;
  border-radius: 16px;
  background: #f9fbfd;
}

.technical-panel {
  background: linear-gradient(180deg, #f8fbfe, #f3f8fc);
}

.product-data-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.product-data-title i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #eaf4ff;
  color: var(--blue);
  font-size: 14px;
}

.technical-panel .product-data-title i {
  background: #fff0f1;
  color: var(--red);
}

.product-data-title h4 {
  margin: 0;
  color: var(--navy);
  font: 800 .8rem "Plus Jakarta Sans", sans-serif;
}

.product-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 11px;
  border: 1px solid #dfe7ee;
  background: #fff;
}

.product-spec-table {
  width: 100%;
  min-width: 380px;
  border-collapse: collapse;
  font-size: .85rem;
}

.product-spec-table th {
  padding: 9px 10px;
  text-align: left;
  color: #fff;
  background: #12365d;
  font-size: .7rem;
  letter-spacing: .02em;
}

.product-spec-table td {
  padding: 9px 10px;
  color: #536a80;
  border-top: 1px solid #e5edf3;
  line-height: 1.38;
}

.product-spec-table tbody tr:first-child td {
  border-top: 0;
}

.spec-note {
  display: flex;
  gap: 7px;
  margin-top: 9px;
  color: #6c8094;
  font-size: .62rem;
  line-height: 1.45;
}

.spec-note i {
  color: var(--red);
}

.technical-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.technical-list li {
  position: relative;
  padding-left: 16px;
  color: #52687e;
  font-size: .86rem;
  line-height: 1.52;
}

.technical-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(240, 47, 47, .09);
}

.tech-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tech-columns>div>strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: .67rem;
}

.dual-spec-list {
  display: grid;
  gap: 10px;
}

.dual-spec-list>div {
  padding: 11px 12px;
  border-radius: 11px;
  background: #fff;
  border: 1px solid #e1e9f0;
}

.dual-spec-list small {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: .59rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.dual-spec-list p {
  margin: 0;
  color: #52687e;
  font-size: .86rem;
  line-height: 1.55;
}

.simple-spec-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.simple-spec-cards>div {
  padding: 11px 12px;
  border: 1px solid #e1e9f0;
  border-radius: 11px;
  background: #fff;
}

.simple-spec-cards span,
.simple-spec-cards strong {
  display: block;
}

.simple-spec-cards span {
  color: #f02f2f;
  font-size: .77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.simple-spec-cards strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: .68rem;
  line-height: 1.4;
}

/* =========================================================
   SEPT 04 - PRODUCT ALTERNATION / TESTIMONIAL V2 / FAQ V2
   ========================================================= */
.section-anchor{position:absolute;inset:0 auto auto 0;width:1px;height:1px;pointer-events:none}

/* Product specifications: one strong section per product, alternating on desktop */
.product-detail-list{gap:34px}
.product-detail-row{
  grid-template-columns:minmax(340px,.82fr) minmax(0,1.48fr);
  min-height:470px;
  border-radius:28px;
  box-shadow:0 18px 55px rgba(8,44,77,.075);
  background:linear-gradient(135deg,#fff 0%,#fbfdff 100%);
}
.product-detail-row.product-reverse{
  grid-template-columns:minmax(0,1.48fr) minmax(340px,.82fr);
}
.product-detail-row.product-reverse .product-detail-content{order:1}
.product-detail-row.product-reverse .product-detail-media{order:2}
.product-detail-media{
  min-height:470px;
  background:linear-gradient(145deg,#f8fbfe,#eef4f8);
  display:grid;
  place-items:center;
  padding:28px;
}
.product-detail-media::before{
  content:"";
  position:absolute;
  inset:22px;
  border:1px solid rgba(12,63,105,.08);
  border-radius:22px;
  background:rgba(255,255,255,.55);
}
.product-detail-media::after{
  background:linear-gradient(180deg,transparent 68%,rgba(4,29,54,.09));
}
.product-detail-media img{
  position:relative;
  inset:auto;
  width:100%;
  height:100%;
  max-height:390px;
  object-fit:contain;
  z-index:1;
  filter:drop-shadow(0 16px 22px rgba(8,46,79,.10));
}
.product-detail-row:hover .product-detail-media img{transform:scale(1.025)}
.product-index{left:30px;bottom:28px;background:#082b4d;border-color:rgba(255,255,255,.38)}
.product-media-label{left:30px;top:28px;background:#0b3558;border-color:transparent;box-shadow:0 8px 22px rgba(5,31,54,.12)}
.product-detail-content{padding:38px 38px;justify-content:center}
.product-data-panels{gap:14px}
.product-data-panel{border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(10,50,82,.045)}
.technical-panel{background:linear-gradient(145deg,#f8fbff,#f2f7fb)}

/* Client testimonial: dark stage with consistent white carousel cards */
.testimonial-v2-section{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#f7fbff 0%,#fff 100%);
}
.testimonial-v2-section::before{
  content:"";
  position:absolute;
  width:420px;height:420px;
  right:-190px;top:-210px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(239,48,48,.11),transparent 68%);
  pointer-events:none;
}
.testimonial-v2-head{
  position:relative;
  z-index:2;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:28px;
}
.testimonial-v2-head>div:first-child{max-width:780px}
.testimonial-v2-head h2{
  margin:9px 0 11px;
  color:var(--navy);
  font:800 clamp(2rem,3.25vw,3.05rem)/1.05 "Plus Jakarta Sans",sans-serif;
  letter-spacing:-.045em;
}
.testimonial-v2-head h2 span{color:var(--red)}
.testimonial-v2-head p{margin:0;color:var(--muted);font-size:.88rem;line-height:1.72;max-width:720px}
.testimonial-v2-controls{display:flex;gap:10px;flex:0 0 auto}
.testimonial-v2-controls .slider-btn{
  position:static;transform:none;width:46px;height:46px;border-radius:14px;
  background:#fff;border:1px solid #d9e6f0;box-shadow:0 10px 28px rgba(7,44,76,.08)
}
.testimonial-v2-controls .slider-btn:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.testimonial-v2-stage{
  position:relative;
  border-radius:30px;
  padding:28px 28px 12px;
  background:linear-gradient(135deg,#071c35 0%,#0a3157 58%,#0c4b75 100%);
  box-shadow:0 24px 70px rgba(6,33,59,.18);
  overflow:hidden;
}
.testimonial-v2-stage::before{
  content:"";
  position:absolute;
  width:300px;height:300px;
  left:-140px;bottom:-170px;
  border-radius:50%;
  background:rgba(239,48,48,.18);
}
.testimonial-v2-stage::after{
  content:"";
  position:absolute;
  width:260px;height:260px;
  right:-110px;top:-120px;
  border-radius:50%;
  background:rgba(73,166,226,.12);
}
.testimonial-v2-watermark{position:absolute;right:32px;top:-4px;color:rgba(255,255,255,.045);font-size:170px;line-height:1}
.testimonial-v2-swiper{position:relative;z-index:2;padding:4px 4px 46px;overflow:hidden}
.testimonial-v2-swiper .swiper-slide{height:auto}
.testimonial-v2-card,
.testimonial-v2-card--primary{
  height:100%;
  min-height:315px;
  display:flex;
  flex-direction:column;
  padding:30px;
  border:1px solid rgba(221,232,242,.95);
  border-radius:24px;
  color:var(--navy);
  background:#fff;
  box-shadow:0 16px 42px rgba(2,26,51,.14);
}
.testimonial-v2-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:24px}
.testimonial-v2-icon,
.testimonial-v2-card--primary .testimonial-v2-icon{
  width:52px;height:52px;display:grid;place-items:center;border-radius:16px;
  background:#fff0f1;font-size:21px;color:var(--red)
}
.testimonial-v2-card .stars{margin:0;color:#ffc04d;letter-spacing:2px}
.testimonial-v2-badge{
  padding:7px 10px;border-radius:999px;background:#eef5fb;color:#55728e;
  font-size:.61rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase
}
.testimonial-v2-card blockquote{margin:0;color:var(--navy);font:700 clamp(1rem,1.45vw,1.28rem)/1.62 "Plus Jakarta Sans",sans-serif;letter-spacing:-.025em}
.testimonial-v2-card h3{margin:2px 0 11px;color:var(--navy);font:800 1.2rem/1.25 "Plus Jakarta Sans",sans-serif}
.testimonial-v2-card p{margin:0;color:var(--muted);font-size:.8rem;line-height:1.75}
.testimonial-v2-person{display:flex;align-items:center;gap:12px;margin-top:auto;padding-top:25px}
.testimonial-v2-person>span{width:44px;height:44px;display:grid;place-items:center;border-radius:50%;background:var(--navy);color:#fff;font-size:.7rem;font-weight:800}
.testimonial-v2-person strong,.testimonial-v2-person small{display:block}
.testimonial-v2-person strong{font-size:.77rem;color:var(--navy)}
.testimonial-v2-person small{margin-top:3px;color:var(--muted);font-size:.64rem}
.testimonial-v2-foot{display:flex;align-items:center;gap:8px;margin-top:auto;padding-top:24px;color:#2e638f;font-size:.72rem;font-weight:800}
.testimonial-v2-foot i{color:var(--red)}
.testimonial-v2-pagination{bottom:12px!important}
.testimonial-v2-pagination .swiper-pagination-bullet{background:#fff;opacity:.42}
.testimonial-v2-pagination .swiper-pagination-bullet-active{width:24px;border-radius:20px;opacity:1;background:#ef3030}

/* Animated fixed enquiry button + popup form */
.floating-enquire-btn{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1040;
  border:0;
  min-height:54px;
  padding:0 21px 0 14px;
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,#ef3030,#d9182a);
  box-shadow:0 16px 38px rgba(239,48,48,.34);
  font:800 .78rem/1 "Plus Jakarta Sans",sans-serif;
  letter-spacing:.01em;
  transition:transform .3s ease,box-shadow .3s ease;
  isolation:isolate;
}
.floating-enquire-btn>span:first-child{
  width:36px;height:36px;border-radius:50%;display:grid;place-items:center;
  background:rgba(255,255,255,.17);font-size:1rem
}
.floating-enquire-btn::before{
  content:"";
  position:absolute;
  inset:-7px;
  border-radius:999px;
  border:1px solid rgba(239,48,48,.38);
  z-index:-1;
  animation:enquiryPulse 2s ease-out infinite;
}
.floating-enquire-btn:hover{color:#fff;transform:translateY(-4px);box-shadow:0 20px 46px rgba(239,48,48,.42)}
@keyframes enquiryPulse{
  0%{transform:scale(.92);opacity:.8}
  75%,100%{transform:scale(1.16);opacity:0}
}
.back-to-top{bottom:92px}
.enquiry-modal .modal-dialog{max-width:590px}
.enquiry-modal .modal-content{
  border:0;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 30px 85px rgba(3,26,50,.25);
}
.enquiry-modal-head{
  position:relative;
  padding:28px 30px 24px;
  color:#fff;
  background:linear-gradient(135deg,#071e39,#0b426b);
}
.enquiry-modal-head .modal-title{font:800 clamp(1.45rem,3vw,2rem)/1.15 "Plus Jakarta Sans",sans-serif;letter-spacing:-.03em}
.enquiry-modal-head p{margin:8px 42px 0 0;color:rgba(255,255,255,.72);font-size:.8rem;line-height:1.65}
.enquiry-modal-head .btn-close{position:absolute;right:20px;top:20px;filter:invert(1);opacity:.85}
.enquiry-modal-body{padding:28px 30px 30px;background:#fff}
.enquiry-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.enquiry-form-grid .full{grid-column:1/-1}
.enquiry-modal .form-label{margin-bottom:7px;color:var(--navy);font-size:.7rem;font-weight:800}
.enquiry-modal .form-control,.enquiry-modal .form-select{
  min-height:48px;border:1px solid #dce7f0;border-radius:13px;background:#f8fbfd;
  color:var(--navy);font-size:.78rem;box-shadow:none
}
.enquiry-modal textarea.form-control{min-height:92px;resize:vertical;padding-top:13px}
.enquiry-modal .form-control:focus,.enquiry-modal .form-select:focus{border-color:#9ec8e8;background:#fff;box-shadow:0 0 0 3px rgba(36,124,190,.1)}
.enquiry-modal-actions{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:20px}
.enquiry-modal-actions small{color:var(--muted);font-size:.64rem;line-height:1.5}
.enquiry-submit{border:0;border-radius:13px;padding:14px 20px;background:var(--red);color:#fff;font-weight:800;font-size:.75rem;box-shadow:0 12px 28px rgba(239,48,48,.22)}
.enquiry-submit:hover{background:#db2020;color:#fff}
#popupFormStatus{margin:12px 0 0;color:#49667f;font-size:.68rem;font-weight:700}

/* FAQ: title on top, FAQs below in two columns */
.faq-v2-section{background:#fff}
.faq-v2-head{max-width:820px;margin:0 auto 30px;text-align:center}
.faq-v2-head .eyebrow{justify-content:center}
.faq-v2-head h2{margin:9px 0 12px;color:var(--navy);font:800 clamp(2rem,3.2vw,3rem)/1.06 "Plus Jakarta Sans",sans-serif;letter-spacing:-.045em}
.faq-v2-head h2 span{color:var(--red)}
.faq-v2-head p{max-width:690px;margin:0 auto;color:var(--muted);font-size:.88rem;line-height:1.72}
.faq-v2-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;align-items:start}
.faq-v2-column{display:grid;gap:12px}
.faq-v2-column .accordion-item{margin:0;border-radius:18px!important;box-shadow:0 8px 28px rgba(9,49,80,.045)}
.faq-v2-column .accordion-button{min-height:66px;padding:18px 20px;font-size:.78rem;line-height:1.45}
.faq-v2-column .accordion-body{padding:0 20px 20px;font-size:.74rem;line-height:1.72}
.faq-v2-cta{display:flex;align-items:center;justify-content:center;gap:16px;margin-top:26px;color:var(--muted);font-size:.8rem}

/* Keep actual left-icon/right-content boxes left aligned. */
.trust-item,.about-support-grid>div,.quality-grid-new article,.areas-card-head,.pan-india-note{ text-align:left; }


/* 2026-09-04 v3: testimonial 3-column infinite carousel + compact enquiry + powered-by */
.testimonial-v2-swiper{overflow:hidden}
.testimonial-v2-swiper .swiper-wrapper{align-items:stretch}
.testimonial-v2-swiper .swiper-slide{height:auto;display:flex}
.testimonial-v2-card,.testimonial-v2-card--primary{
  width:100%;min-height:210px;padding:26px 24px;border-radius:22px;background:#fff;
}
.testimonial-v2-card blockquote{font-size:1rem;line-height:1.62}
.testimonial-v2-card h3{font-size:1.08rem;line-height:1.3}
.testimonial-v2-card p{font-size:.86rem;line-height:1.7}
.testimonial-v2-stage{padding:24px 24px 10px}
.testimonial-v2-pagination{bottom:10px!important}

.footer-bottom .powered-by a{color:#fff;font-weight:700;text-decoration:none;position:relative}
.footer-bottom .powered-by a::after{content:"";position:absolute;left:0;right:0;bottom:-3px;height:1px;background:currentColor;transform:scaleX(0);transform-origin:left;transition:transform .25s ease}
.footer-bottom .powered-by a:hover::after{transform:scaleX(1)}

.enquiry-modal .modal-dialog{max-width:500px}
.enquiry-modal .modal-content{border-radius:22px;max-height:calc(100vh - 28px);overflow:auto}
.enquiry-modal-head{padding:18px 22px 16px}
.enquiry-modal-head .modal-title{font-size:1.55rem;line-height:1.12}
.enquiry-modal-head p{margin:6px 38px 0 0;font-size:.7rem;line-height:1.5}
.enquiry-modal-head .btn-close{right:16px;top:16px}
.enquiry-modal-body{padding:18px 22px 20px}
.enquiry-form-grid{gap:10px 12px}
.enquiry-modal .form-label{margin-bottom:5px;font-size:.66rem}
.enquiry-modal .form-control,.enquiry-modal .form-select{min-height:42px;border-radius:11px;font-size:.73rem;padding-top:8px;padding-bottom:8px}
.enquiry-modal textarea.form-control{min-height:68px;max-height:110px;padding-top:10px}
.enquiry-modal-actions{gap:12px;margin-top:14px}
.enquiry-modal-actions small{font-size:.59rem}
.enquiry-submit{border-radius:11px;padding:11px 16px;font-size:.7rem}
#popupFormStatus{margin:8px 0 0;font-size:.62rem}

.site-footer .footer-contact strong { color: #fff; }

/* =========================================================
   Featured quality + completed projects section
   ========================================================= */
.featured-quality-projects {
  padding-top: 72px;
  padding-bottom: 72px;
}

.featured-quality-row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.quality-panel,
.project-panel {
  height: 100%;
  border-radius: 26px;
}

.quality-panel {
  min-height: 450px;
  padding: 30px 24px 28px;
  color: #fff;
  background: linear-gradient(165deg, #092746 0%, #0b2f52 100%);
  box-shadow: 0 22px 52px rgba(5, 37, 65, .16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.quality-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -120px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(78, 162, 235, .12);
  pointer-events: none;
}

.quality-panel h3 {
  margin: 0 0 12px;
  max-width: 280px;
  font: 800 1.45rem / 1.03 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.045em;
  color: #9ed8ff;
}

.quality-panel > p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.86);
  font-size: .69rem;
  line-height: 1.62;
}

.quality-panel h6 {
  margin: 2px 0 7px;
  font: 800 .74rem / 1.35 "Plus Jakarta Sans", sans-serif;
  color: #f22e32;
}

.quality-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin: 10px 0 16px;
}

.quality-metrics > div {
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(164, 208, 241, .25);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.quality-metrics strong {
  display: block;
  color: #fff;
  font: 800 1.08rem / 1 "Plus Jakarta Sans", sans-serif;
  margin-bottom: 5px;
}

.quality-metrics span {
  display: block;
  color: rgba(255,255,255,.77);
  font-size: .58rem;
  line-height: 1.25;
}

.quality-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: auto;
}

.quality-actions .btn-premium {
  min-height: 39px;
  padding: 10px 20px;
  font-size: .68rem;
  border-radius: 3px;
}

.quality-actions .btn-outline-white {
  border-color: rgba(255,255,255,.78);
  color: #fff;
  background: transparent;
}

.quality-actions .btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
}

.project-panel {
  padding: 28px 26px 26px;
  border: 1px solid #d6e3ed;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 48px rgba(8, 48, 82, .08);
}

.project-panel-head .small-title {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--navy);
  font: 800 .58rem / 1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-panel-head h3 {
  max-width: 700px;
  margin: 0 0 8px;
  color: var(--navy);
  font: 800 1.52rem / 1.08 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.04em;
}

.project-panel-head p {
  max-width: 760px;
  margin: 0;
  color: #687991;
  font-size: .72rem;
  line-height: 1.45;
}

.enhanced-project-carousel {
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  padding: 0 0 34px;
}

.enhanced-project-carousel .swiper-wrapper {
  align-items: stretch;
}

.enhanced-project-carousel .swiper-slide {
  height: auto;
}

.enhanced-project-carousel .project-card {
  height: 207px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
  background: #dce8f1;
}

.enhanced-project-carousel .project-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enhanced-project-carousel .swiper-button-prev,
.enhanced-project-carousel .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid #dbe7f0;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(4,31,54,.12);
}

.enhanced-project-carousel .swiper-button-prev { left: 8px; }
.enhanced-project-carousel .swiper-button-next { right: 8px; }

.enhanced-project-carousel .swiper-button-prev::after,
.enhanced-project-carousel .swiper-button-next::after {
  font-size: .85rem;
  font-weight: 900;
}

.enhanced-project-carousel .swiper-pagination {
  bottom: 4px;
}

.enhanced-project-carousel .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 4px !important;
  background: #a6a6a6;
  opacity: 1;
}

.enhanced-project-carousel .swiper-pagination-bullet-active {
  width: 23px;
  border-radius: 20px;
  background: var(--red);
}

.project-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 2px;
}

.project-trust-strip > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  padding: 10px 10px;
  border: 1px solid #dce8f1;
  border-radius: 13px;
  background: #fff;
}

.project-trust-strip i {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
}

.project-trust-strip strong {
  display: block;
  color: var(--navy);
  font: 800 .65rem / 1.15 "Plus Jakarta Sans", sans-serif;
}

.project-trust-strip span {
  display: block;
  color: #72839a;
  font-size: .55rem;
  line-height: 1.2;
}

@media (max-width: 1199.98px) {
  .quality-panel { min-height: 475px; }
  .project-panel { padding: 25px 22px 23px; }
  .enhanced-project-carousel .project-card { height: 190px; }
}

@media (max-width: 991.98px) {
  .featured-quality-projects { padding-top: 58px; padding-bottom: 58px; }
  .quality-panel { min-height: auto; }
  .project-panel-head h3 { font-size: 1.4rem; }
  .enhanced-project-carousel .project-card { height: 230px; }
}

@media (max-width: 575.98px) {
  .featured-quality-projects { padding-top: 42px; padding-bottom: 42px; }
  .quality-panel,
  .project-panel { border-radius: 22px; }
  .quality-panel { padding: 25px 20px 23px; }
  .quality-panel h3 { font-size: 1.35rem; }
  .quality-panel > p { font-size: .66rem; }
  .quality-metrics { gap: 8px; }
  .quality-metrics > div { padding: 11px; }
  .quality-actions .btn-premium { width: auto; }
  .project-panel { padding: 23px 18px 20px; }
  .project-panel-head h3 { font-size: 1.32rem; }
  .project-panel-head p { font-size: .67rem; }
  .enhanced-project-carousel { margin-top: 15px; }
  .enhanced-project-carousel .project-card { height: 218px; }
  .project-trust-strip { grid-template-columns: 1fr; }
  .project-trust-strip > div { grid-template-columns: 36px 1fr; }
}










/* ================================
   MAIN NAVIGATION
================================ */

.main-nav,
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight:600;
    color: #26364a;
    padding: 10px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #000;
}

/* ================================
   DROPDOWN ARROW
================================ */

.navbar-nav .dropdown-toggle::after {
    margin-left: 7px;
    vertical-align: 2px;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* ================================
   DROPDOWN MENU
================================ */

.navbar-nav .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    
    min-width: 230px;
    margin-top: 10px;
    padding: 8px 0;

    background: #fff;
    border: 0;
    border-radius: 10px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);

    transition: all 0.25s ease;
}

/* Hover dropdown */
.navbar-nav .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown items */
.navbar-nav .dropdown-item {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #26364a;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.navbar-nav .dropdown-item:hover {
    background: #f5f5f5;
    color: #000;
    padding-left: 22px;
}

/* ================================
   EXPERIENCE BADGE
================================ */

.experience-item {
    display: flex;
    align-items: center;
    margin-left: 12px;
}

.experience-badge {
    width: 125px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ================================
   NAVBAR ALIGNMENT
================================ */

.navbar-collapse {
    align-items: center;
}

.navbar-nav.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ================================
   DESKTOP
================================ */

@media (min-width: 992px) {

    .navbar-nav {
        gap: 15px;
    }

    .navbar-nav .nav-link {
        padding-left: 11px;
        padding-right: 11px;
    }

    .experience-badge {
        width: 120px;
    }
}


/* ================================
   MOBILE / TABLET
================================ */

@media (max-width: 991px) {

    .navbar-nav {
        display: block;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px;
    }

    .navbar-nav .dropdown-menu {
        display: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        position: static;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
    }

    .navbar-nav .dropdown.show > .dropdown-menu {
        display: block;
    }

    .experience-item {
        display: none;
    }
}