/* =========================
   AQUA SPHERE FINAL STYLE.CSS
   Home + Reports + Certificates
   Main Website CSS Only
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: #0f172a;
  background:
    radial-gradient(circle at 10% 5%, rgba(14, 165, 233, 0.16), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.12), transparent 25%),
    linear-gradient(135deg, #f8fcff, #ffffff);
}

/* TOP BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 50px;
  z-index: 1001;
  background: linear-gradient(135deg, #082f49, #0369a1, #38bdf8);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 35px rgba(2, 132, 199, 0.28);
}

.top-bar div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  height: 80px;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 14px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.18);
  color: #bae6fd;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  color: #ffffff;
  font-size: 27px;
  cursor: pointer;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 155px 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.72), rgba(3, 105, 161, 0.48)),
    radial-gradient(circle at 50% 35%, rgba(56, 189, 248, 0.25), transparent 36%);
  z-index: 1;
}

.hero > div {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeSlideUp 0.9s ease;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -1.8px;
  text-shadow: 0 18px 45px rgba(0,0,0,0.38);
  margin-bottom: 18px;
}

.hero h1 span {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero p {
  max-width: 760px;
  margin: 12px auto 30px;
  font-size: 22px;
  line-height: 1.7;
  color: #e0f2fe;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.learn-more-btn,
.order-btn,
.location-btn,
.file-link,
.contact-card button {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0284c7, #06b6d4, #67e8f9);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.32);
}

.learn-more-btn:hover,
.order-btn:hover,
.location-btn:hover,
.file-link:hover,
.contact-card button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(2, 132, 199, 0.42);
}

/* ABOUT */
.about-section {
  width: min(92%, 1050px);
  margin: 85px auto;
  padding: 75px 30px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(14, 165, 233, 0.16);
  text-align: center;
  transition: 0.35s ease;
}

.about-section:hover {
  transform: translateY(-8px);
}

.about-container h1 {
  font-size: 38px;
  font-weight: 900;
  color: #075985;
  margin: 20px 0 25px;
}

.about-container h1::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0284c7, #06b6d4, #6366f1);
}

.about-container h2 {
  font-size: 30px;
  font-weight: 900;
  color: #0284c7;
  margin: 25px 0 15px;
}

.about-container p {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.85;
  color: #334155;
}

/* AQUA SPHERE PROJECT PHOTO FRAME - EXTREME PREMIUM */
.project-photo-section {
  width: min(92%, 1120px);
  margin: 95px auto;
  padding: 14px;
  border-radius: 42px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(224,247,255,0.82)),
    radial-gradient(circle at top left, rgba(56,189,248,0.35), transparent 34%);
  border: 1px solid rgba(186, 230, 253, 0.95);
  box-shadow:
    0 35px 95px rgba(14, 165, 233, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: 0.45s ease;
}

.project-photo-section::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: 44px;
  background: linear-gradient(
    135deg,
    rgba(6,182,212,0.85),
    rgba(99,102,241,0.55),
    rgba(103,232,249,0.9)
  );
  opacity: 0.55;
}

.project-photo-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -95px;
  top: -95px;
  border-radius: 50%;
  background: rgba(103,232,249,0.32);
  filter: blur(6px);
  z-index: 1;
}

.project-photo-section:hover {
  transform: translateY(-10px);
  box-shadow:
    0 45px 120px rgba(14, 165, 233, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.project-photo-card {
  width: 100%;
  min-height: 610px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background-image:
    linear-gradient(90deg, rgba(2,6,23,0.78) 0%, rgba(3,105,161,0.48) 42%, rgba(2,6,23,0.18) 100%),
    radial-gradient(circle at 18% 22%, rgba(56,189,248,0.35), transparent 32%),
    url("../images/aqua-project-machine.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.22),
    inset 0 -120px 140px rgba(2,6,23,0.38);
}

.project-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.12), transparent 32%, rgba(103,232,249,0.12)),
    radial-gradient(circle at bottom left, rgba(6,182,212,0.35), transparent 34%);
  z-index: 1;
  pointer-events: none;
}

.project-photo-card::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.22);
  z-index: 2;
  pointer-events: none;
}

.project-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 75px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  color: #ffffff;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #e0f2fe;
  border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(2,6,23,0.22);
}

.project-tag::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 18px rgba(103,232,249,0.95);
}

.project-photo-overlay h2 {
  max-width: 780px;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.4px;
  margin: 0 0 24px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow:
    0 8px 0 rgba(2,132,199,0.22),
    0 22px 55px rgba(0,0,0,0.72);
}

.project-photo-overlay h2::after {
  content: "";
  display: block;
  width: 160px;
  height: 6px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #67e8f9, #06b6d4, #ffffff);
  box-shadow: 0 0 24px rgba(103,232,249,0.85);
}

.project-photo-overlay p {
  max-width: 650px;
  font-size: 18.5px;
  line-height: 1.85;
  color: #e0f2fe;
  margin: 0 0 34px;
  font-weight: 500;
  text-shadow: 0 8px 26px rgba(0,0,0,0.55);
}

.project-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background:
    linear-gradient(135deg, #0284c7, #06b6d4 48%, #67e8f9);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow:
    0 20px 45px rgba(2,132,199,0.48),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

.project-details-btn::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
  transition: 0.35s ease;
}

.project-details-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow:
    0 30px 70px rgba(2,132,199,0.62),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

.project-details-btn:hover::after {
  transform: translateX(5px);
}


/* SHARED SECTION TAG */
.section-tag {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.12);
  color: #0369a1;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* PRODUCTS */
.products {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 90px;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 30px;
}

.product {
  min-height: 455px;
  padding: 22px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 30px;
  box-shadow: 0 25px 70px rgba(14,165,233,0.14);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: 0.35s ease;
}

.product:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 36px 90px rgba(14,165,233,0.24);
}

.product img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  padding: 10px;
  border-radius: 22px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #f8fdff, #e0f7ff);
  border: 1px solid #bae6fd;
}

.product h3 {
  font-size: 23px;
  font-weight: 900;
  color: #075985;
  margin: 10px 0 6px;
}

.product p {
  font-size: 16px;
  color: #475569;
  margin: 5px 0;
}

.product .price {
  font-size: 20px;
  font-weight: 900;
  color: #0284c7;
  margin: 10px 0 18px;
}

.product .order-btn {
  display: block;
  margin-top: auto;
  text-align: center;
}

/* LOCATION */
.location-section {
  padding: 85px 20px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(14,165,233,0.18), transparent 30%),
    linear-gradient(135deg, #f8fcff, #ffffff);
}

.location-card {
  max-width: 980px;
  margin: auto;
  padding: 38px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 30px;
  box-shadow: 0 25px 70px rgba(14,165,233,0.15);
}

.location-card h2 {
  font-size: 36px;
  font-weight: 900;
  color: #0284c7;
  margin-bottom: 10px;
}

.location-card p {
  color: #475569;
  font-size: 17px;
  margin-bottom: 25px;
}

.map-box {
  width: 100%;
  height: 390px;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 5px solid rgba(186, 230, 253, 0.9);
  box-shadow: 0 22px 55px rgba(14,165,233,0.15);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTACT */
#contact {
  padding: 85px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(14,165,233,0.16), transparent 30%),
    linear-gradient(135deg, #f8fcff, #ffffff);
}

.contact-card {
  width: 100%;
  max-width: 720px;
  padding: 42px 32px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 30px;
  box-shadow: 0 25px 70px rgba(14,165,233,0.15);
  text-align: center;
}

.contact-card h2 {
  font-size: 34px;
  color: #0284c7;
  font-weight: 900;
  margin-bottom: 30px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  display: block;
  padding: 16px 20px;
  margin-bottom: 20px;
  border-radius: 18px;
  border: 2px solid #bae6fd;
  background: #fbfeff;
  font-size: 16px;
  outline: none;
  transition: 0.3s ease;
}

.contact-card textarea {
  min-height: 125px;
  resize: none;
  line-height: 1.6;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 6px rgba(6,182,212,0.12);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 18px 0;
  margin-top: 28px;
  background: linear-gradient(135deg, #020617, #075985, #0284c7);
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.16);
}

footer p {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.45);
  z-index: 999999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.08);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  z-index: -1;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float i {
  color: #ffffff;
  font-size: 36px;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .top-bar {
    padding: 10px 15px;
    font-size: 12px;
    gap: 10px;
  }

  .navbar {
    padding: 0 20px;
  }

  .products {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 992px) {
  .docs-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    min-height: auto;
    font-size: 12px;
  }

  .top-bar div {
    white-space: normal;
  }

  .navbar {
    top: 96px;
    height: auto;
    min-height: 70px;
    padding: 12px 15px;
    flex-wrap: wrap;
    background: rgba(15,23,42,0.94);
  }

  .logo img {
    height: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
    padding: 10px 0;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(18px);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .hero {
    min-height: auto;
    padding: 190px 15px 85px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 18px;
  }

  .about-section {
    width: calc(100% - 24px);
    margin: 50px auto;
    padding: 50px 16px;
  }

  .about-container h1 {
    font-size: 30px;
  }

  .about-container h2 {
    font-size: 24px;
  }

  .about-container p {
    font-size: 16px;
  }

  .project-photo-section {
    width: calc(100% - 24px);
    margin: 55px auto;
    padding: 10px;
    border-radius: 30px;
  }

  .project-photo-card {
    min-height: 520px;
    border-radius: 24px;
    background-position: center;
  }

  .project-photo-card::after {
    inset: 14px;
    border-radius: 20px;
  }

  .project-photo-overlay {
    padding: 55px 24px;
    align-items: center;
    text-align: center;
  }

  .project-photo-overlay h2 {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1.4px;
  }

  .project-photo-overlay h2::after {
    margin: 18px auto 0;
    width: 120px;
    height: 5px;
  }

  .project-photo-overlay p {
    font-size: 16px;
    line-height: 1.75;
  }
  .products {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 40px 15px 60px;
  }

  .product {
    min-height: auto;
  }

  .product img {
    height: 220px;
  }

  #contact {
    padding: 60px 15px;
  }

  .contact-card {
    padding: 30px 18px;
  }

  .contact-card h2 {
    font-size: 28px;
  }

  .contact-card button {
    width: 100%;
  }

  .map-box {
    height: 300px;
  }

  .location-card {
    padding: 28px 18px;
  }

  .location-card h2 {
    font-size: 28px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float i {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .navbar {
    top: 112px;
  }

  .hero {
    padding-top: 200px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero p {
    font-size: 16px;
  }

  .project-photo-card {
    min-height: 480px;
  }

  .project-photo-overlay {
    padding: 48px 18px;
  }

  .project-tag {
    font-size: 11px;
    padding: 8px 14px;
    letter-spacing: 0.9px;
  }

  .project-photo-overlay h2 {
    font-size: 31px;
  }

  .project-photo-overlay p {
    font-size: 15px;
  }

  .project-details-btn {
    width: 100%;
    padding: 15px 22px;
  }

  .product img {
    height: 190px;
  }
}


/* =========================================================
   WADAN INDUSTRIES — PREMIUM SaaS THEME SAFE UPGRADE
   Add-on layer: keeps old classes working, upgrades look only
   Paste after existing CSS or use this full file directly.
========================================================= */

:root {
  --wi-bg: #f6fbff;
  --wi-bg-2: #eef8ff;
  --wi-surface: rgba(255, 255, 255, 0.82);
  --wi-surface-solid: #ffffff;
  --wi-ink: #0b1220;
  --wi-muted: #526174;
  --wi-primary: #0284c7;
  --wi-primary-2: #06b6d4;
  --wi-primary-3: #67e8f9;
  --wi-deep: #061826;
  --wi-navy: #0f172a;
  --wi-border: rgba(14, 165, 233, 0.18);
  --wi-border-strong: rgba(14, 165, 233, 0.34);
  --wi-shadow: 0 28px 90px rgba(2, 132, 199, 0.16);
  --wi-shadow-strong: 0 38px 120px rgba(2, 132, 199, 0.25);
  --wi-radius: 28px;
  --wi-radius-lg: 38px;
  --wi-fast: 0.28s ease;
  --wi-slow: 0.45s cubic-bezier(.2,.8,.2,1);
}

html {
  scroll-padding-top: 145px;
}

body {
  color: var(--wi-ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(103, 232, 249, 0.24), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(2, 132, 199, 0.18), transparent 28%),
    radial-gradient(circle at 50% 85%, rgba(14, 165, 233, 0.12), transparent 38%),
    linear-gradient(135deg, #f8fcff 0%, #ffffff 42%, #eef8ff 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(2, 132, 199, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 132, 199, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 75%);
}

/* PREMIUM TOP BAR */
.top-bar {
  min-height: 48px;
  padding: 9px 38px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(7, 89, 133, 0.96), rgba(6, 182, 212, 0.92));
  box-shadow:
    0 14px 38px rgba(2, 6, 23, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.top-bar::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -190px;
  left: -70px;
  background: rgba(103, 232, 249, 0.35);
  filter: blur(14px);
  border-radius: 50%;
}

.top-bar div {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,0.26);
}

/* PREMIUM NAVBAR */
.navbar {
  height: 84px;
  top: 48px;
  padding: 0 42px;
  background: rgba(6, 24, 38, 0.78);
  border-bottom: 1px solid rgba(186, 230, 253, 0.22);
  box-shadow:
    0 22px 65px rgba(2, 6, 23, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.logo img {
  height: 56px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.22));
}

.nav-links {
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.nav-links a {
  font-size: 15px;
  letter-spacing: 0.15px;
  padding: 11px 16px;
}

.nav-links a:hover {
  background:
    linear-gradient(135deg, rgba(103,232,249,0.24), rgba(255,255,255,0.13));
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(6,182,212,0.22);
}

/* HERO — SaaS Landing Style */
.hero {
  padding: 165px 20px 92px;
  background-position: center;
}

.hero::before {
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.80), rgba(7, 89, 133, 0.58), rgba(6, 182, 212, 0.22)),
    radial-gradient(circle at 50% 35%, rgba(103, 232, 249, 0.36), transparent 34%),
    radial-gradient(circle at 72% 72%, rgba(14, 165, 233, 0.26), transparent 30%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, rgba(246,251,255,0.96));
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: -2.6px;
  text-wrap: balance;
}

.hero p {
  max-width: 820px;
  font-size: clamp(18px, 2vw, 23px);
  color: rgba(224, 242, 254, 0.94);
}

/* Universal premium buttons */
.learn-more-btn,
.order-btn,
.location-btn,
.file-link,
.contact-card button,
.project-details-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, #075985 0%, #0284c7 34%, #06b6d4 70%, #67e8f9 100%);
  box-shadow:
    0 18px 42px rgba(2, 132, 199, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.46);
}

.learn-more-btn::before,
.order-btn::before,
.location-btn::before,
.file-link::before,
.contact-card button::before,
.project-details-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: 0.7s ease;
}

.learn-more-btn:hover::before,
.order-btn:hover::before,
.location-btn:hover::before,
.file-link:hover::before,
.contact-card button:hover::before,
.project-details-btn:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

/* PREMIUM SECTIONS */
.about-section,
.location-card,
.contact-card,
.product,
.docs-grid > *,
.certificate-card,
.report-card,
.document-card,
.file-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.93), rgba(240,249,255,0.74));
  border: 1px solid var(--wi-border);
  box-shadow:
    var(--wi-shadow),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.about-section,
.location-card,
.contact-card {
  border-radius: var(--wi-radius-lg);
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before,
.location-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: rgba(103, 232, 249, 0.22);
  filter: blur(4px);
  pointer-events: none;
}

.about-container h1,
.location-card h2,
.contact-card h2 {
  color: #075985;
  letter-spacing: -0.7px;
}

/* PRODUCTS — premium SaaS cards */
.products {
  max-width: 1440px;
  gap: 28px;
}

.product {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.product::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 0%, rgba(103,232,249,0.20), transparent 34%),
    linear-gradient(to bottom, rgba(255,255,255,0.34), transparent 36%);
  pointer-events: none;
}

.product:hover {
  transform: translateY(-14px);
  border-color: var(--wi-border-strong);
  box-shadow: var(--wi-shadow-strong);
}

.product img {
  position: relative;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.96), rgba(224,247,255,0.95));
  border: 1px solid rgba(14, 165, 233, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 16px 36px rgba(2,132,199,0.12);
}

.product h3 {
  position: relative;
  font-size: 22px;
  color: #064e7a;
}

.product p,
.location-card p,
.contact-card p {
  color: var(--wi-muted);
}

.product .price {
  color: #0369a1;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-block;
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(14, 165, 233, 0.14);
}

/* PROJECT PHOTO — glass enterprise style */
.project-photo-section {
  box-shadow:
    0 45px 130px rgba(2,132,199,0.24),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.project-photo-card {
  min-height: 640px;
  border-radius: 36px;
}

.project-photo-overlay {
  max-width: 880px;
}

.project-tag {
  background: rgba(255,255,255,0.16);
  box-shadow:
    0 16px 34px rgba(2,6,23,0.26),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

.project-photo-overlay h2 {
  text-wrap: balance;
}

.project-photo-overlay p {
  max-width: 720px;
}

/* LOCATION / MAP */
.location-section,
#contact {
  position: relative;
  overflow: hidden;
}

.map-box {
  border: 1px solid rgba(14, 165, 233, 0.22);
  box-shadow: 0 28px 70px rgba(2, 132, 199, 0.17);
}

/* FORM */
.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card input,
.contact-card textarea {
  border: 1px solid rgba(14,165,233,0.24);
  background: rgba(255,255,255,0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.84);
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #94a3b8;
}

.contact-card input:focus,
.contact-card textarea:focus {
  background: #ffffff;
  border-color: rgba(6,182,212,0.75);
}

/* CERTIFICATES / REPORTS SAFE SUPPORT
   These selectors won't hurt if your HTML uses different names.
*/
.certificates-section,
.reports-section,
.documents-section,
.docs-section {
  width: min(92%, 1180px);
  margin: 85px auto;
  padding: 70px 28px;
  border-radius: var(--wi-radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.90), rgba(240,249,255,0.70));
  border: 1px solid var(--wi-border);
  box-shadow: var(--wi-shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.certificates-section h1,
.certificates-section h2,
.reports-section h1,
.reports-section h2,
.documents-section h1,
.documents-section h2,
.docs-section h1,
.docs-section h2 {
  color: #075985;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -1.1px;
  font-weight: 900;
  margin-bottom: 16px;
}

.certificates-section p,
.reports-section p,
.documents-section p,
.docs-section p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--wi-muted);
  font-size: 17px;
  line-height: 1.8;
}

.docs-grid,
.certificates-grid,
.reports-grid,
.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 26px;
  width: min(100%, 1120px);
  margin: 35px auto 0;
}

.docs-grid > *,
.certificate-card,
.report-card,
.document-card,
.file-card {
  min-height: 230px;
  padding: 28px 22px;
  border-radius: 28px;
  text-align: center;
  transition: var(--wi-slow);
  position: relative;
  overflow: hidden;
}

.docs-grid > *::before,
.certificate-card::before,
.report-card::before,
.document-card::before,
.file-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -88px;
  top: -90px;
  border-radius: 50%;
  background: rgba(103,232,249,0.22);
}

.docs-grid > *:hover,
.certificate-card:hover,
.report-card:hover,
.document-card:hover,
.file-card:hover {
  transform: translateY(-10px);
  border-color: var(--wi-border-strong);
  box-shadow: var(--wi-shadow-strong);
}

.docs-grid img,
.certificate-card img,
.report-card img,
.document-card img,
.file-card img {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.docs-grid h3,
.certificate-card h3,
.report-card h3,
.document-card h3,
.file-card h3 {
  position: relative;
  z-index: 1;
  color: #075985;
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 10px;
}

.docs-grid p,
.certificate-card p,
.report-card p,
.document-card p,
.file-card p {
  position: relative;
  z-index: 1;
  color: var(--wi-muted);
  font-size: 15.5px;
  line-height: 1.65;
}

/* BULK ORDER TEXT AREA SAFE STYLE */
.bulk-order-box,
.bulk-order-section,
.whatsapp-order-intro,
.order-intro {
  width: min(92%, 920px);
  margin: 55px auto 18px;
  padding: 38px 26px;
  border-radius: 34px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(224,247,255,0.78));
  border: 1px solid var(--wi-border);
  box-shadow: var(--wi-shadow);
}

.bulk-order-box h2,
.bulk-order-section h2,
.whatsapp-order-intro h2,
.order-intro h2 {
  color: #075985;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.bulk-order-box p,
.bulk-order-section p,
.whatsapp-order-intro p,
.order-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--wi-muted);
  font-size: 17px;
  line-height: 1.75;
}

/* FOOTER */
footer {
  margin-top: 0;
  padding: 28px 16px;
  background:
    radial-gradient(circle at 20% 0%, rgba(103,232,249,0.24), transparent 30%),
    linear-gradient(135deg, #020617, #06283d 45%, #075985);
}

footer p {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  width: 68px;
  height: 68px;
  right: 26px;
  bottom: 26px;
  box-shadow:
    0 20px 52px rgba(37, 211, 102, 0.46),
    inset 0 1px 0 rgba(255,255,255,0.30);
}

/* MOBILE SAFE FIXES */
@media (max-width: 1100px) {
  .navbar {
    padding: 0 22px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 10px 12px;
  }

  .docs-grid,
  .certificates-grid,
  .reports-grid,
  .documents-grid {
    grid-template-columns: repeat(2, minmax(230px, 1fr));
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 190px;
  }

  .top-bar {
    padding: 10px 14px;
  }

  .navbar {
    top: 96px;
    padding: 12px 16px;
  }

  .nav-links {
    border-radius: 22px;
    padding: 8px;
    background: rgba(2, 6, 23, 0.95);
  }

  .nav-links a {
    width: 100%;
    display: block;
    border-radius: 14px;
  }

  .hero {
    padding-top: 205px;
  }

  .hero h1 {
    letter-spacing: -1.2px;
  }

  .about-section,
  .location-card,
  .contact-card,
  .certificates-section,
  .reports-section,
  .documents-section,
  .docs-section,
  .bulk-order-box,
  .bulk-order-section,
  .whatsapp-order-intro,
  .order-intro {
    border-radius: 26px;
  }

  .docs-grid,
  .certificates-grid,
  .reports-grid,
  .documents-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-photo-card {
    min-height: 540px;
  }

  .project-photo-overlay {
    padding: 52px 22px;
  }
}

@media (max-width: 480px) {
  .navbar {
    top: 112px;
  }

  .hero {
    padding-top: 215px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero p {
    font-size: 15.8px;
    line-height: 1.65;
  }

  .learn-more-btn,
  .order-btn,
  .location-btn,
  .file-link,
  .contact-card button,
  .project-details-btn {
    width: 100%;
    max-width: 340px;
    text-align: center;
  }

  .product {
    border-radius: 24px;
    padding: 18px;
  }

  .product img {
    height: 190px;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }
}

/* ==============================
   MOBILE FIX — WADAN INDUSTRIES CARD
   Text small + button always visible
============================== */

@media (max-width: 768px) {
  .project-photo-section {
    margin: 35px auto;
  }

  .project-photo-card {
    min-height: auto !important;
    height: auto !important;
  }

  .project-photo-overlay {
    position: relative !important;
    padding: 38px 18px !important;
    min-height: 430px;
    justify-content: center;
  }

  .project-photo-overlay h2 {
    font-size: 26px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.6px !important;
    margin-bottom: 16px !important;
  }

  .project-photo-overlay p {
    font-size: 14px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }

  .project-details-btn {
    display: flex !important;
    width: 100% !important;
    max-width: 280px !important;
    padding: 13px 18px !important;
    font-size: 14px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .project-photo-overlay {
    padding: 32px 14px !important;
    min-height: 390px;
  }

  .project-photo-overlay h2 {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  .project-photo-overlay p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
  }

  .project-tag {
    font-size: 10px !important;
    padding: 7px 12px !important;
    margin-bottom: 14px !important;
  }

  .project-details-btn {
    max-width: 250px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 360px) {
  .project-photo-overlay {
    min-height: 360px;
    padding: 26px 12px !important;
  }

  .project-photo-overlay h2 {
    font-size: 20px !important;
  }

  .project-photo-overlay p {
    font-size: 12.5px !important;
  }

  .project-details-btn {
    max-width: 230px !important;
    font-size: 12.5px !important;
  }
}