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

:root {
  --tess-navy: #08233a;
  --tess-navy-2: #0d3152;
  --tess-primary: #08233a;
  --tess-secondary: #3792c6;
  --tess-secondary-dark: #257dae;
  --tess-slate: #526476;
  --tess-ink: #101820;
  --tess-light: #f6f9fc;
  --tess-card: #ffffff;
  --tess-border: rgba(8, 35, 58, 0.12);
  --tess-shadow: 0 24px 70px rgba(8, 35, 58, 0.12);
  --tess-soft-splash: rgba(55, 146, 198, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  color: var(--tess-ink);
  background:
    radial-gradient(circle at 8% 14%, rgba(55,146,198,0.13), transparent 28%),
    radial-gradient(circle at 96% 22%, rgba(8,35,58,0.08), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(55,146,198,0.10), transparent 36%),
    #ffffff;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { text-decoration: none; }
p { color: var(--tess-slate); line-height: 1.78; font-weight: 400; }
img { max-width: 100%; }
::selection { background: var(--tess-secondary); color: #fff; }

/* Navigation */
.tess-navbar {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8,35,58,0.09);
  padding: 10px 0;
  z-index: 1040;
  box-shadow: 0 10px 34px rgba(8,35,58,0.06);
}
.tess-navbar.is-scrolled { padding: 7px 0; box-shadow: 0 14px 40px rgba(8,35,58,0.12); }
.tess-navbar .container { position: relative; }
.tess-navbar .navbar-brand { display: inline-flex; align-items: center; margin-right: 20px; }
.tess-navbar .navbar-brand img { width: 172px; max-height: 66px; object-fit: contain; transition: 0.25s ease; }
.tess-navbar.is-scrolled .navbar-brand img { width: 150px; max-height: 56px; }
.tess-navbar .navbar-nav .nav-link {
  color: var(--tess-navy);
  font-weight: 800;
  padding: 12px 15px;
  letter-spacing: -0.01em;
  position: relative;
}
.tess-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: var(--tess-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.24s ease;
}
.tess-navbar .navbar-nav .nav-link:hover,
.tess-navbar .navbar-nav .nav-link.active,
.tess-navbar .navbar-nav .show>.nav-link { color: var(--tess-secondary); }
.tess-navbar .navbar-nav .nav-link:hover::after,
.tess-navbar .navbar-nav .nav-link.active::after,
.tess-navbar .navbar-nav .show>.nav-link::after { transform: scaleX(1); }
.tess-navbar .dropdown-menu {
  border: 0;
  box-shadow: var(--tess-shadow);
  border-radius: 18px;
  padding: 14px;
  min-width: 315px;
  margin-top: 10px;
}
.tess-navbar .dropdown-item {
  color: var(--tess-navy);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  white-space: normal;
}
.tess-navbar .dropdown-item:hover,
.tess-navbar .dropdown-item.active { background: rgba(55,146,198,0.12); color: var(--tess-secondary); }
.navbar-toggler {
  margin-left: auto;
  border: 1px solid rgba(8,35,58,0.18);
  border-radius: 14px;
  padding: 9px 11px;
  background: #fff;
}
.navbar-toggler:focus { box-shadow: 0 0 0 0.15rem rgba(55,146,198,0.22); }
.navbar-toggler-icon {
  width: 1.2em;
  height: 1.2em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%288, 35, 58, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.tess-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--tess-secondary);
  color: #fff !important;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(55,146,198,0.28);
  transition: 0.25s ease;
}
.tess-header-cta:hover { background: var(--tess-secondary-dark); transform: translateY(-1px); }

/* Buttons */
.tess-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 25px;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
  border: 1px solid transparent;
  line-height: 1.15;
}
.tess-btn-primary,
.tess-btn-dark { background: var(--tess-secondary); color: #fff; box-shadow: 0 16px 38px rgba(55,146,198,0.24); }
.tess-btn-primary:hover,
.tess-btn-dark:hover { color: #fff; background: var(--tess-secondary-dark); transform: translateY(-2px); box-shadow: 0 20px 48px rgba(55,146,198,0.32); }
.tess-btn-white { color: #fff; border-color: rgba(255,255,255,0.42); background: rgba(255,255,255,0.10); backdrop-filter: blur(10px); }
.tess-btn-white:hover { color: var(--tess-navy); background: #fff; }

/* Hero */
.hero-section {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  padding: 170px 0 95px;
  overflow: hidden;
  background: var(--tess-navy);
}
.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 7s ease;
  will-change: opacity, transform;
}
.hero-bg-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 17% 22%, rgba(55,146,198,0.34), transparent 26%),
    radial-gradient(circle at 90% 25%, rgba(55,146,198,0.18), transparent 24%),
    linear-gradient(115deg, rgba(8,35,58,0.97) 0%, rgba(8,35,58,0.86) 42%, rgba(8,35,58,0.44) 100%);
  pointer-events: none;
}
.hero-section .container { z-index: 2; }
.hero-eyebrow,
.section-eyebrow {
  color: var(--tess-secondary);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 14px;
}
.hero-title {
  color: #fff;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}
.hero-title span { color: var(--tess-secondary); }
.hero-lead {
  color: rgba(255,255,255,0.84);
  font-size: 20px;
  max-width: 720px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-proof-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 32px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,0.26);
  backdrop-filter: blur(18px);
}
.hero-proof-card::before {
  content:"";
  position:absolute;
  width: 240px;
  height: 240px;
  border-radius:50%;
  background: rgba(55,146,198,0.28);
  right:-90px;
  top:-90px;
}
.hero-proof-card > * { position: relative; z-index: 1; }
.hero-proof-card img { width: 220px; margin-bottom: 22px; }
.hero-proof-card h2 { color:#fff; font-weight: 900; font-size: 27px; line-height: 1.16; margin-bottom: 18px; }
.proof-list { list-style: none; padding: 0; margin: 0; }
.proof-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  color: rgba(255,255,255,0.88);
  border-top: 1px solid rgba(255,255,255,0.13);
}
.check-dot, .mini-icon {
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(55,146,198,0.14);
  color: var(--tess-secondary);
  font-weight: 900;
}
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-slider-dots span {
  width: 26px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
  transition: 0.25s ease;
}
.hero-slider-dots span.is-active { width: 42px; background: var(--tess-secondary); }

/* Sections */
.section-space { padding: 105px 0; position: relative; }
.section-space-sm { padding: 75px 0; position: relative; }
.bg-soft { background: var(--tess-light); }
.bg-navy { background: var(--tess-navy); color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.76); }
.section-splash::before,
.patterned-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(55,146,198,0.12), transparent 25%),
    radial-gradient(circle at 92% 80%, rgba(8,35,58,0.07), transparent 28%);
  pointer-events: none;
}
.patterned-section::after {
  content:"";
  position:absolute;
  inset:0;
  background-image: linear-gradient(135deg, rgba(8,35,58,0.035) 25%, transparent 25%, transparent 50%, rgba(8,35,58,0.035) 50%, rgba(8,35,58,0.035) 75%, transparent 75%, transparent);
  background-size: 38px 38px;
  opacity: .35;
  pointer-events:none;
}
.section-space .container { position: relative; z-index: 1; }
.section-title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.043em;
  color: var(--tess-navy);
  margin-bottom: 18px;
}
.bg-navy .section-title,
.siteverify-panel .section-title { color: #fff; }
.section-lead { font-size: 18px; max-width: 790px; }
.section-lead.center { margin-left: auto; margin-right: auto; }
.secondary-text { color: var(--tess-secondary) !important; }

.trust-strip { margin-top: -54px; position: relative; z-index: 4; }
.trust-box {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--tess-shadow);
  border: 1px solid var(--tess-border);
  overflow: hidden;
}
.trust-item { padding: 28px; border-right: 1px solid var(--tess-border); height: 100%; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--tess-navy); font-size: 18px; font-weight: 900; }
.trust-item span { color: var(--tess-slate); }

.service-card,
.value-card,
.feature-card,
.process-card,
.contact-card,
.objective-card,
.mission-card,
.service-detail-card {
  background: var(--tess-card);
  border: 1px solid var(--tess-border);
  border-radius: 26px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 35px rgba(8,35,58,0.06);
  transition: 0.25s ease;
}
.service-card:hover,
.value-card:hover,
.feature-card:hover,
.contact-card:hover,
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--tess-shadow);
  border-color: rgba(55,146,198,0.32);
}
.service-card-rich { padding: 0; overflow: hidden; }
.service-image { height: 210px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.55s ease; }
.service-card:hover .service-image img { transform: scale(1.07); }
.service-card-body { padding: 28px; }
.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(55,146,198,0.12);
  color: var(--tess-secondary);
  font-size: 28px;
  font-weight: 900;
}
.service-card h3,
.feature-card h3,
.value-card h3,
.process-card h3,
.contact-card h3,
.objective-card h3 {
  color: var(--tess-navy);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}
.service-link { color: var(--tess-secondary); font-weight: 900; }
.service-link:hover { color: var(--tess-secondary-dark); }

.image-collage { position: relative; min-height: 560px; }
.collage-main {
  position: absolute;
  left: 0;
  top: 40px;
  width: 76%;
  height: 440px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--tess-shadow);
}
.collage-small { position: absolute; object-fit: cover; border: 8px solid #fff; box-shadow: var(--tess-shadow); }
.collage-one { right: 0; top: 0; width: 45%; height: 220px; border-radius: 28px; }
.collage-two { right: 20px; bottom: 34px; width: 42%; height: 190px; border-radius: 28px; }
.image-badge {
  position: absolute;
  left: 35px;
  bottom: 20px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  width: min(320px, 82%);
  box-shadow: var(--tess-shadow);
  border: 1px solid var(--tess-border);
}
.image-badge strong { color: var(--tess-navy); font-size: 18px; display: block; }
.image-badge span { color: var(--tess-slate); }
.mini-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.mini-stat-grid div { border: 1px solid var(--tess-border); border-radius: 18px; padding: 18px; background: #fff; }
.mini-stat-grid strong { color: var(--tess-secondary); font-size: 24px; display:block; font-weight:900; }
.mini-stat-grid span { color: var(--tess-navy); font-weight: 800; font-size: 14px; }

.siteverify-panel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 58px;
  background: linear-gradient(135deg, rgba(8,35,58,0.98), #0e416b 68%, #19344b);
  color: #fff;
  box-shadow: var(--tess-shadow);
}
.siteverify-panel::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  right: -150px;
  top: -160px;
  background: radial-gradient(circle, rgba(55,146,198,0.38), transparent 68%);
}
.siteverify-panel > * { position: relative; z-index: 1; }
.siteverify-panel p { color: rgba(255,255,255,0.78); }
.verify-step {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  padding: 24px;
  height: 100%;
}
.verify-step h4 { color: #fff; font-weight: 900; font-size: 20px; margin-bottom: 10px; }
.verify-step p { color: rgba(255,255,255,0.78); margin-bottom: 0; }
.siteverify-image img { width:100%; height: 230px; object-fit:cover; border-radius: 24px; border:1px solid rgba(255,255,255,0.14); }

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 310px;
  box-shadow: var(--tess-shadow);
  background: var(--tess-navy);
}
.gallery-card img { width:100%; height:310px; object-fit:cover; transition: .6s ease; opacity:.88; }
.gallery-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(8,35,58,.9)); }
.gallery-card span { position:absolute; left:22px; right:22px; bottom:20px; color:#fff; font-weight:900; font-size:20px; z-index:1; }
.gallery-card:hover img { transform: scale(1.08); opacity:1; }

.gallery-testimonials-section { overflow: hidden; }
.gallery-filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}
.gallery-filter {
  border: 1px solid rgba(8,35,58,0.12);
  border-radius: 999px;
  padding: 10px 15px;
  background: #fff;
  color: var(--tess-navy);
  font-weight: 900;
  line-height: 1.1;
  transition: 0.22s ease;
}
.gallery-filter:hover,
.gallery-filter.is-active {
  color: #fff;
  background: var(--tess-secondary);
  border-color: var(--tess-secondary);
  box-shadow: 0 12px 28px rgba(55,146,198,0.22);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.project-testimonial-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid var(--tess-border);
  box-shadow: 0 10px 35px rgba(8,35,58,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.project-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--tess-shadow);
  border-color: rgba(55,146,198,0.32);
}
.project-image-button {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8,35,58,0.96), rgba(55,146,198,0.72)),
    var(--tess-light);
  cursor: pointer;
}
.project-image-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease, opacity 0.25s ease;
}
.project-testimonial-card:hover .project-image-button img { transform: scale(1.06); }
.project-image-button::after {
  content: "View";
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.92);
  color: var(--tess-navy);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.22s ease;
}
.project-testimonial-card:hover .project-image-button::after,
.project-image-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.project-image-button:focus-visible {
  outline: 3px solid var(--tess-secondary);
  outline-offset: -3px;
}
.image-missing-note {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #fff;
  font-weight: 900;
  text-align: center;
}
.project-image-button.is-missing-image img {
  opacity: 0;
}
.project-image-button.is-missing-image .image-missing-note {
  display: flex;
}
.project-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 26px;
}
.project-category-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 6px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(55,146,198,0.12);
  color: var(--tess-secondary);
  font-size: 12px;
  font-weight: 900;
}
.project-card-body h3 {
  color: var(--tess-navy);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 14px;
}
.client-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 16px;
}
.client-line strong {
  color: var(--tess-navy);
  font-weight: 900;
}
.client-line span {
  color: var(--tess-slate);
  font-weight: 700;
}
.project-location {
  display: flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 9px 12px;
  border-radius: 14px;
  background: var(--tess-light);
  color: var(--tess-navy);
  font-size: 13px;
  font-weight: 900;
}
.project-card-body blockquote {
  position: relative;
  margin: 0;
  color: var(--tess-slate);
  line-height: 1.72;
  font-size: 15px;
}
.testimonial-copy.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-toggle {
  align-self: flex-start;
  min-height: 44px;
  margin-top: 16px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--tess-secondary);
  font-weight: 900;
  text-align: left;
}
.testimonial-toggle:hover,
.testimonial-toggle:focus-visible {
  color: var(--tess-secondary-dark);
  text-decoration: underline;
}
.siteverify-word {
  color: var(--tess-secondary);
  font-weight: 800;
}
.tess-lightbox-modal .modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--tess-shadow);
}
.tess-lightbox-modal .btn-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.92);
  opacity: 1;
}
.lightbox-nav {
  position: absolute;
  top: 43%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--tess-navy);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(8,35,58,0.18);
  transition: 0.2s ease;
}
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: var(--tess-secondary);
  color: #fff;
}
.lightbox-nav-prev { left: 18px; }
.lightbox-nav-next { right: 18px; }
.tess-lightbox-modal img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: var(--tess-navy);
}
.lightbox-caption {
  padding: 24px 28px 28px;
}
.lightbox-caption span {
  color: var(--tess-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 900;
}
.lightbox-caption h3 {
  color: var(--tess-navy);
  font-size: 26px;
  font-weight: 900;
  margin: 8px 0 6px;
}
.lightbox-caption p { margin-bottom: 0; }
.no-js-gallery {
  margin-top: 24px;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  padding: 165px 0 82px;
  background: linear-gradient(120deg, rgba(8,35,58,0.96), rgba(8,35,58,0.72)), var(--page-hero-image) var(--page-hero-position, center)/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.about-page-hero {
  min-height: 430px;
  padding: 150px 0 72px;
  background:
    radial-gradient(circle at 18% 28%, rgba(55,146,198,0.36), transparent 30%),
    linear-gradient(120deg, rgba(8,35,58,0.86), rgba(55,146,198,0.58)),
    var(--page-hero-image) var(--page-hero-position, center)/cover no-repeat;
}
.gallery-page-hero {
  min-height: 430px;
  padding: 150px 0 72px;
  background:
    radial-gradient(circle at 18% 28%, rgba(55,146,198,0.34), transparent 30%),
    linear-gradient(120deg, rgba(8,35,58,0.88), rgba(55,146,198,0.56)),
    var(--page-hero-image) var(--page-hero-position, center)/cover no-repeat;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
.breadcrumb-lite { color: rgba(255,255,255,0.72); font-weight: 800; margin-bottom: 12px; }
.breadcrumb-lite a { color: #fff; }
.hero-shape { position: absolute; border-radius: 50%; background: rgba(55,146,198,0.22); filter: blur(2px); }
.hero-shape-one { width: 360px; height: 360px; right: -120px; top: 80px; }
.hero-shape-two { width: 220px; height: 220px; left: -90px; bottom: -70px; }

.sidebar-card {
  position: sticky;
  top: 112px;
  background: #fff;
  border-radius: 28px;
  border: 1px solid var(--tess-border);
  box-shadow: 0 14px 42px rgba(8,35,58,0.08);
  padding: 24px;
}
.sidebar-card h4 { color: var(--tess-navy); font-weight: 900; }
.service-nav-link {
  display: block;
  padding: 13px 14px;
  margin-bottom: 8px;
  border-radius: 14px;
  color: var(--tess-navy);
  background: var(--tess-light);
  font-weight: 800;
}
.service-nav-link:hover,
.service-nav-link.active { background: var(--tess-secondary); color: #fff; }
.sidebar-cta { padding: 22px; border-radius: 22px; background: rgba(55,146,198,0.10); }
.content-list { padding-left: 0; list-style: none; }
.content-list li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  color: var(--tess-slate);
}
.content-list li::before {
  content: "✓";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(55,146,198,0.12);
  color: var(--tess-secondary);
  font-weight: 900;
}
.detail-image {
  border-radius: 30px;
  width: 100%;
  min-height: 380px;
  object-fit: cover;
  box-shadow: var(--tess-shadow);
}
.service-detail-card { height: auto; }
.accent-feature { background: linear-gradient(135deg, rgba(55,146,198,0.12), #fff); }
.process-card span { color: var(--tess-secondary); font-weight:900; letter-spacing:.1em; }

/* About */
.founder-section { overflow: hidden; }
.founder-image-card {
  position: relative;
  margin: 0;
  padding: 18px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--tess-border);
  box-shadow: var(--tess-shadow);
}
.founder-image-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  background: rgba(55,146,198,0.10);
  transform: rotate(-2deg);
}
.founder-image-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 14px 42px rgba(8,35,58,0.10);
}
.founder-image-card figcaption {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--tess-navy);
  font-weight: 800;
  line-height: 1.5;
}
.founder-profile {
  background: #fff;
  border: 1px solid var(--tess-border);
  border-radius: 30px;
  box-shadow: 0 10px 35px rgba(8,35,58,0.06);
  padding: 42px;
}
.founder-profile p:last-child { margin-bottom: 0; }
.founder-highlights-section { overflow: hidden; }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.highlight-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--tess-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 35px rgba(8,35,58,0.055);
  transition: 0.25s ease;
}
.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(55,146,198,0.30);
  box-shadow: 0 18px 48px rgba(8,35,58,0.10);
}
.highlight-card .mini-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  font-size: 13px;
}
.highlight-card h3 {
  color: var(--tess-navy);
  font-size: 19px;
  line-height: 1.24;
  font-weight: 900;
  margin-bottom: 10px;
}
.highlight-card p {
  margin-bottom: 0;
  color: var(--tess-slate);
  font-size: 14px;
  line-height: 1.65;
}
.founder-bio-section { overflow: hidden; }
.bio-card {
  position: relative;
  height: 100%;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--tess-border);
  box-shadow: 0 10px 35px rgba(8,35,58,0.06);
  overflow: hidden;
  transition: 0.25s ease;
}
.bio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--tess-shadow);
  border-color: rgba(55,146,198,0.32);
}
.bio-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(55,146,198,0.11);
}
.bio-card > * { position: relative; z-index: 1; }
.bio-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(55,146,198,0.12);
  color: var(--tess-secondary);
  font-weight: 900;
}
.bio-card h3 {
  color: var(--tess-navy);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}
.bio-card p { margin-bottom: 0; }
.bio-card-wide { min-height: 100%; }
.bio-card-accent {
  background: linear-gradient(135deg, rgba(8,35,58,0.98), #0e416b);
  color: #fff;
}
.bio-card-accent h3 { color: #fff; }
.bio-card-accent p { color: rgba(255,255,255,0.78); }
.about-shape-card { position: relative; padding: 22px; }
.about-shape-card::before { content:""; position:absolute; inset:0; border-radius:34px; background: rgba(55,146,198,0.13); transform: rotate(-3deg); }
.about-shape-card img { position:relative; border-radius:32px; box-shadow: var(--tess-shadow); min-height: 440px; object-fit: cover; width:100%; }
.shape-note { position:absolute; left:0; bottom:45px; max-width: 360px; background:#fff; border:1px solid var(--tess-border); border-radius:22px; padding:20px; box-shadow: var(--tess-shadow); }
.shape-note strong { color: var(--tess-secondary); }
.mission-card { min-height: 330px; padding: 42px; position: relative; overflow: hidden; }
.mission-card h2 { color: var(--tess-navy); font-size: 34px; line-height: 1.1; font-weight: 900; letter-spacing: -0.035em; }
.mission-card-dark { background: var(--tess-navy); color:#fff; }
.mission-card-dark h2 { color:#fff; }
.mission-card-dark p { color: rgba(255,255,255,.78); }
.mission-card::after { content:""; position:absolute; width:220px; height:220px; border-radius:50%; right:-80px; bottom:-80px; background: rgba(55,146,198,.16); }
.objective-card-large { padding: 40px; }
.objective-section { overflow: hidden; }

/* Contact */
.form-control,
.form-select {
  border: 1px solid rgba(8,35,58,0.14);
  min-height: 58px;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  background: #fbfdff;
}
textarea.form-control { min-height: 170px; }
.form-control:focus,
.form-select:focus {
  border-color: var(--tess-secondary);
  box-shadow: 0 0 0 0.2rem rgba(55,146,198,0.15);
  background: #fff;
}
.modern-form-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 34px;
  border: 1px solid var(--tess-border);
  box-shadow: var(--tess-shadow);
  padding: 38px;
}
.modern-form-card::before { content:""; position:absolute; width:260px; height:260px; border-radius:50%; background:rgba(55,146,198,.12); right:-90px; top:-100px; }
.modern-form-card > * { position:relative; z-index:1; }
.form-heading h3 { color: var(--tess-navy); font-size: 34px; font-weight: 900; letter-spacing:-.035em; }
.form-heading code { color: var(--tess-secondary); }
.modern-form-card label { color: var(--tess-navy); font-weight:800; font-size: 13px; margin-bottom: 7px; }
.hp-field { position:absolute !important; left:-9999px !important; opacity:0 !important; }
.contact-card { display:flex; flex-direction:column; gap:4px; }
.contact-card .mini-icon { margin-bottom:8px; }
.map-frame { border-radius: 34px; overflow: hidden; box-shadow: var(--tess-shadow); border: 10px solid #fff; min-height: 430px; }
.map-frame iframe { width: 100%; height: 430px; border: 0; display:block; }
.alert-success { color:#0f5132; background:#d1e7dd; border-color:#badbcc; }
.alert-danger { color:#842029; background:#f8d7da; border-color:#f5c2c7; }
.alert-info { color:#055160; background:#cff4fc; border-color:#b6effb; }

/* Footer */
.footer-tess {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #061a2b, #08233a 62%, #0c3559);
  color: #fff;
  padding-top: 76px;
}
.footer-glow { position:absolute; border-radius:50%; filter: blur(2px); background: rgba(55,146,198,.18); }
.footer-glow-one { width:420px; height:420px; left:-180px; top:40px; }
.footer-glow-two { width:340px; height:340px; right:-120px; bottom:-120px; }
.footer-tess p { color: rgba(255,255,255,0.70); }
.footer-cta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  margin-bottom: 56px;
}
.footer-cta h2 { color:#fff; font-weight:900; font-size: clamp(28px,3vw,42px); letter-spacing:-.035em; margin-bottom:8px; }
.footer-cta p { margin-bottom:0; }
.footer-main { padding-bottom: 20px; }
.footer-logo { width: 220px; margin-bottom: 22px; }
.footer-tagline { display:inline-flex; padding:10px 14px; border-radius:999px; background:rgba(55,146,198,.16); color:#fff; font-weight:900; }
.footer-title { color: #fff; font-size: 18px; font-weight: 900; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; color: rgba(255,255,255,.72); font-weight:600; }
.footer-links a { color: rgba(255,255,255,0.72); font-weight: 700; }
.footer-links a:hover { color: var(--tess-secondary); }
.footer-contact li span { display:block; color: var(--tess-secondary); font-weight:900; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.11);
  margin-top: 48px;
  padding: 22px 0;
  color: rgba(255,255,255,0.66);
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-bottom a { color: #fff; font-weight:900; border-bottom: 2px solid var(--tess-secondary); }
.footer-bottom a:hover { color: var(--tess-secondary); }

.progress-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(8,35,58,0.16);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  background: #fff;
}
.progress-wrap.active-progress { opacity: 1; visibility: visible; transform: translateY(0); }
.progress-wrap::after {
  content: "↑";
  position: absolute;
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--tess-navy);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
}
.progress-wrap svg path { fill: none; }
.progress-wrap svg.progress-circle path { stroke: var(--tess-secondary); stroke-width: 4; box-sizing: border-box; }

/* Scroll animation */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-animate] { opacity: 1 !important; transform: none !important; }
}

/* Responsive */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu { display: block; }
}
@media (max-width: 1199px) {
  .tess-navbar .navbar-brand img { width: 154px; }
  .tess-header-cta { margin-top: 12px; width: 100%; }
  .hero-section { min-height: auto; padding-top: 145px; }
  .image-collage { min-height: 520px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  .tess-navbar { padding: 8px 0; }
  .tess-navbar .container { display:flex; align-items:center; }
  .tess-navbar .navbar-brand img { width: 145px; max-height: 56px; }
  .navbar-toggler { position: relative; z-index: 2; }
  .tess-navbar .navbar-collapse {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid rgba(8,35,58,0.10);
    border-radius: 22px;
    padding: 16px;
    box-shadow: var(--tess-shadow);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }
  .tess-navbar .navbar-nav .nav-link { padding: 12px 10px; }
  .tess-navbar .navbar-nav .nav-link::after { display:none; }
  .tess-navbar .dropdown-menu { background: var(--tess-light); margin: 8px 0; box-shadow:none; min-width: 100%; }
  .hero-proof-card { margin-top: 26px; }
  .hero-section { padding: 135px 0 76px; }
  .trust-strip { margin-top: 0; padding-top: 28px; background: var(--tess-light); }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--tess-border); }
  .trust-item:last-child { border-bottom: 0; }
  .section-space { padding: 78px 0; }
  .siteverify-panel, .footer-cta { padding: 36px; border-radius: 28px; }
  .sidebar-card { position: static; margin-bottom: 30px; }
  .footer-cta { display:block; }
  .footer-cta .tess-btn { margin-top:20px; }
  .mini-stat-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-filter-group { justify-content: flex-start; }
  .project-card-body blockquote { font-size: 15px; }
  .image-collage { min-height: auto; }
  .collage-main, .collage-small { position: static; width:100%; height:auto; min-height:260px; margin-bottom:18px; }
  .image-badge, .shape-note { position: static; width:100%; max-width:100%; margin-top: 0; }
  .about-shape-card img { min-height: 320px; }
}
@media (max-width: 575px) {
  .tess-navbar .navbar-brand img { width: 128px; max-height: 50px; }
  .navbar-toggler { padding: 8px 10px; border-radius: 12px; }
  .hero-section { padding: 122px 0 68px; }
  .hero-title { font-size: clamp(38px, 12vw, 52px); }
  .hero-lead { font-size: 17px; }
  .hero-actions .tess-btn { width: 100%; }
  .hero-proof-card { padding: 24px; border-radius: 26px; }
  .hero-proof-card img { width: 185px; }
  .hero-proof-card h2 { font-size: 22px; }
  .section-space { padding: 62px 0; }
  .section-space-sm { padding: 52px 0; }
  .service-card, .value-card, .feature-card, .process-card, .contact-card, .objective-card, .mission-card, .service-detail-card { padding: 24px; border-radius: 22px; }
  .service-card-rich { padding: 0; }
  .service-card-body { padding: 24px; }
  .modern-form-card { padding: 24px; border-radius: 24px; }
  .siteverify-panel, .footer-cta { padding: 28px 22px; }
  .detail-image { min-height: 260px; }
  .page-hero { min-height: 390px; padding: 130px 0 58px; }
  .about-page-hero,
  .gallery-page-hero { min-height: 360px; background-position: center top, center, center top; }
  .founder-profile, .bio-card, .highlight-card { padding: 24px; border-radius: 22px; }
  .highlight-grid { grid-template-columns: 1fr; }
  .founder-image-card { padding: 12px; border-radius: 26px; }
  .founder-image-card::before { inset: 12px; border-radius: 22px; }
  .founder-image-card img { border-radius: 22px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 18px; }
  .gallery-testimonials-section .section-title { font-size: clamp(30px, 9vw, 42px); }
  .gallery-testimonials-section .section-lead { font-size: 16px; }
  .gallery-filter-group { gap: 8px; }
  .gallery-filter { min-height: 44px; padding: 9px 12px; font-size: 13px; }
  .project-testimonial-card { border-radius: 22px; }
  .project-image-button { aspect-ratio: 16 / 11; }
  .project-card-body { padding: 22px; }
  .project-card-body h3 { font-size: 20px; }
  .testimonial-copy.is-collapsed { -webkit-line-clamp: 6; }
  .testimonial-toggle { width: 100%; }
  .tess-lightbox-modal .modal-dialog {
    margin: 12px;
    max-width: calc(100% - 24px);
  }
  .tess-lightbox-modal .modal-content { max-height: calc(100vh - 24px); border-radius: 22px; }
  .tess-lightbox-modal img { max-height: 58vh; }
  .tess-lightbox-modal .btn-close {
    right: 12px;
    top: 12px;
    width: 40px;
    height: 40px;
  }
  .lightbox-nav {
    top: auto;
    bottom: 104px;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }
  .lightbox-nav-prev { left: 12px; }
  .lightbox-nav-next { right: 12px; }
  .lightbox-caption { padding: 20px; }
  .lightbox-caption h3 { font-size: 22px; }
  .map-frame, .map-frame iframe { min-height: 330px; height: 330px; }
  .footer-bottom { flex-direction: column; }
}

/* Final client updates: clean mobile burger, contact details, WhatsApp float */
.tess-navbar .navbar-toggler {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  flex: 0 0 44px !important;
  border: 0 !important;
  border-radius: 12px !important;
  padding: 0 !important;
  margin-left: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.tess-navbar .navbar-toggler:hover,
.tess-navbar .navbar-toggler:focus {
  background: rgba(55,146,198,0.09) !important;
  box-shadow: none !important;
}
.tess-navbar .navbar-toggler-icon {
  width: 27px;
  height: 27px;
  background-size: 27px 27px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%288, 35, 58, 0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.6' d='M5 7h20M5 15h20M5 23h20'/%3e%3c/svg%3e") !important;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10050;
  min-width: 58px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff !important;
  background: #25D366;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.34);
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  color: #fff !important;
  background: #1ebe5d;
  box-shadow: 0 22px 55px rgba(37, 211, 102, 0.42);
}
.progress-wrap {
  right: 24px;
  bottom: 96px;
}
.contact-card a,
.footer-contact a[href^="tel:"],
.footer-contact a[href^="mailto:"],
.form-heading a {
  color: var(--tess-secondary);
  font-weight: 900;
}
.contact-card a:hover,
.footer-contact a[href^="tel:"]:hover,
.footer-contact a[href^="mailto:"]:hover,
.form-heading a:hover {
  color: var(--tess-secondary-dark);
}
@media (max-width: 991px) {
  .tess-navbar .container {
    min-height: 62px;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    padding-right: 68px;
  }
  .tess-navbar .navbar-brand {
    margin-right: 0;
    padding-right: 8px;
  }
  .tess-navbar .navbar-toggler {
    position: absolute !important;
    top: 50% !important;
    right: 14px !important;
    transform: translateY(-50%) !important;
  }
  .tess-navbar .navbar-collapse {
    flex-basis: 100% !important;
    width: auto !important;
    max-width: none !important;
  }
}
@media (max-width: 575px) {
  .tess-navbar .container {
    min-height: 58px;
    padding-right: 64px;
  }
  .tess-navbar .navbar-brand img {
    width: 124px;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    min-width: 58px;
    padding: 0;
  }
  .whatsapp-float span {
    display: none;
  }
  .progress-wrap {
    right: 16px;
    bottom: 84px;
  }
}

/* Final desktop fix: burger must only appear on tablet/mobile */
@media (min-width: 992px) {
  .tess-navbar .navbar-toggler {
    display: none !important;
  }
}
