html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
  background: #000;
}

main {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100vh;
}

a {
  text-decoration: none !important;
}

/* Navigation Bar Styles */
.navbar {
  width: 100vw;
  height: 64px;
  background: rgba(0,0,0,0.68);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 0 96px;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 8px;
  margin-right: 16px;
}

.brand-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  user-select: none;
}

.nav-right {
  display: flex;
  align-items: center;
}

.contact-btn {
  background: #00e7ff;
  color: #1a2630;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-left: 24px;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(0,231,255,0.15);
}
.contact-btn:hover {
  background: #00bdd2;
}

/* Parallax effect for each section */
.parallax {
  min-height: 100vh;
  position: relative;
  color: #fff;
  text-align: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  scroll-snap-align: start;
  transition: background 1.2s cubic-bezier(.77,0,.18,1);
  display: block;
}

/* Hero section should account for navbar height */
.parallax.hero {
  min-height: 100vh !important;
  height: 100vh !important;
  padding-top: 64px;
  box-sizing: border-box;
}


/* Fading overlay for smoothness */
.parallax::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero {
  background-image: url('../img/crowd.jpg');
}

/* HERO TEXT: not vertically centered, add padding after navbar */
.hero-content {
  position: relative;
  z-index: 3;
  margin-top: 56px;
  padding-top: 32px;
  padding-bottom: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

span {
  background-color: #00bdd2;
  color: #fff;
  padding: 0 4px;
  border-radius: 5px;
}


.hero-tagline {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.6;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.hero-overlay-image {
  max-width: 60vw;
  max-height: 45vh;
  width: auto;
  height: auto;
  opacity: 0.93;
  pointer-events: none;
  display: block;
  margin: 0 auto;
}

/* Floating Down Arrow */
.scroll-down-arrow {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: transform 0.2s;
}
.scroll-down-arrow:hover {
  transform: translateX(-50%) scale(1.07);
  opacity: 0.96;
}

.db-analyzer-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 6vw;
  background: #14131a;
  color: #fff;
  min-height: 100vh;
  box-sizing: border-box;
  position: relative;
  scroll-snap-align: start; /* Add this line */
  padding-top: 10vh;
}

.db-analyzer-left {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding:8vh;
  min-width: 300px;
  max-width: 540px;
}

.db-analyzer-logo {
  height: 42px;
  width: 42px;
  border-radius: 16px;
  background: #232136;
  object-fit: contain;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.db-analyzer-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1.2rem 0;
  color: #fff;
  letter-spacing: -.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.db-analyzer-desc {
  color: #c3c2d1;
  font-size: 1.16rem;
  line-height: 1.6;
  margin-bottom: 2.6rem;
  margin-top: 0;
}


.db-analyzer-right {
  flex: 1 1 55%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 340px;
  position: relative;
}

.db-analyzer-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.db-analyzer-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 48px 0 rgba(0,0,0,0.42);
  background: #232136;
  object-fit: contain;
}

/* Carousel Pagination */
.db-analyzer-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 18px;
  gap: 0.7rem;
  width: 100%;
}

.db-analyzer-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #232136;
  color: #00e7ff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}
.db-analyzer-arrow:hover,
.db-analyzer-dot.active {
  background: #00bdd2;
  color: #fff;
}

.db-analyzer-dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.db-analyzer-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #232136;
  border: 2px solid #00e7ff;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s, border 0.15s;
  outline: none;
  border-width: 2px;
}
.db-analyzer-dot.active {
  background: #00e7ff;
  border-color: #fff;
}

/* Responsive styles */
@media (max-width: 900px) {
  .db-analyzer-section {
    flex-direction: column;
    padding: 0 3vw;
    min-height: unset;
  }
  .db-analyzer-left,
  .db-analyzer-right {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 6vh;
    padding-bottom: 2vh;
  }
  .db-analyzer-right {
    margin-top: 2.2rem;
    justify-content: center;
  }
  .db-analyzer-image-wrapper {
    align-items: center;
    max-width: 96vw;
  }
  .db-analyzer-image {
    max-width: 94vw;
  }
}

@media (max-width: 600px) {
  .db-analyzer-section {
    padding: 0 1vw;
  }
  .db-analyzer-left,
  .db-analyzer-right {
    padding-top: 5vw;
    padding-bottom: 2vw;
  }
  .db-analyzer-title {
    font-size: 2rem;
  }
  .db-analyzer-image-wrapper {
    max-width: 97vw;
  }
  .db-analyzer-image {
    max-width: 97vw;
  }
}

.contact-section {
  background: #161616;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  scroll-snap-align: start;
}

.contact-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  padding: 60px 0;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.contact-left {
  flex: 1 1 40%;
  min-width: 270px;
  padding-left: 4vw;
  text-align: left;
}

.contact-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2.2rem;
  letter-spacing: -.5px;
  line-height: 1.1;
}

.contact-title span {
  color: #00e7ff;
  background: none;
  border-radius: 0;
}
address span {
  background: none !important;
  font-style: normal !important;
}

.contact-info {
  margin-top: 24px;
}

.contact-block {
  margin-bottom: 2.2rem;
}

.contact-label {
  color: #8b8b8b;
  font-size: 1.07rem;
  font-weight: 700;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
}

.contact-block div {
  color: #fff;
  font-size: 1.13rem;
  line-height: 1.6;
  font-weight: 500;
}

.contact-right {
  flex: 1 1 50%;
  min-width: 320px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 4vw;
}

.contact-card {
  position: relative;
  background: #222;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  width: 370px;
  padding: 38px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 1;
  overflow: visible;
}

.contact-form-corners .corner {
  position: absolute;
  width: 34px; height: 34px;
  border: 3px solid #22ff71;
  z-index: 2;
}


.contact-form-title {
  color: #fff;
  font-size: 1.37rem;
  font-weight: 900;
  margin-bottom: 2.3rem;
  text-align: left;
  letter-spacing: 0.03em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.contact-form label {
  color: #a2a2a2;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  color: #fff;
  font-size: 1.07rem;
  border: none;
  border-bottom: 2px solid #444;
  padding: 7px 2px;
  outline: none;
  resize: none;
  margin-top: 0.2em;
  transition: border-color 0.18s;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 2px solid #00ff6a;
}

.contact-submit-btn {
  background: #00e7ff;
  color: #0b0b0b;
  border: none;
  border-radius: 4px;
  padding: 16px 0;
  font-size: 1.09rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  box-shadow: 0 2px 10px rgba(34,255,113,0.12);
}

.contact-submit-btn:hover {
  background: #00bdd2;
  color: #fff;
}

@media (max-width: 1000px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    padding: 28px 0;
    gap: 26px;
  }
  .contact-left, .contact-right {
    padding: 0;
    min-width: 0;
  }
  .contact-card {
    width: 80vw;
    max-width: 420px;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .contact-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
  }
  .contact-card {
    padding: 22px 8px 20px 8px;
    width: 80vw;
    min-width: 0;
  }
}
.content {
  position: relative;
  z-index: 3;
  padding: 3rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s cubic-bezier(.77,0,.18,1),
    transform 1.2s cubic-bezier(.77,0,.18,1);
}

.fade-in .content {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
a {
  color: #00e7ff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .navbar {
    padding: 0 10px;
    height: 56px;
  }
  .hero {
    min-height: 100vh !important;
    height: 100vh !important;
    padding-top: 56px;
    box-sizing: border-box;
  }
  .logo {
    height: 32px;
    width: 32px;
    margin-right: 8px;
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .contact-btn {
    font-size: 0.95rem;
    padding: 8px 14px;
    margin-left: 10px;
  }
  .content,
  .hero-content {
    padding: 1rem 0.5rem;
    max-width: 95vw;
  }
  .hero-content h1{
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-overlay-image {
    max-width: 180vw;
    max-height: 25vh;
    overflow:hidden;
  }
}

.centered-feature-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100vh;
  width: 100%;
  background: none;
  color: #fff;
  position: relative;
  scroll-snap-align: start;
  padding-top: 100px; /* for navbar space */
  box-sizing: border-box;
}

.centered-feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  margin-bottom: 40px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 25em;
}

.centered-feature-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -.5px;
}

.centered-feature-title span {
  background-color: #00bdd2;
  color: #fff;
  padding: 0 6px;
  border-radius: 5px;
}

.centered-feature-desc {
  color: #c3c2d1;
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 4em;
  margin-top: 0;
  max-width: 95vw;
}

.centered-feature-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
  padding-bottom: 5em;
}

.reqd_img {
  bottom:3em;
}

.reqd_desc {
  margin-bottom:0 !important;
}

.centered-feature-image {
  width: 100vw;
  max-width: 720px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 0 auto;
  pointer-events: none;
  user-select: none;
  /* Add subtle shadow for separation if needed */
  box-shadow: 0 8px 32px rgba(0,0,0,0.21);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .centered-feature-title {
    font-size: 2rem;
  }
  .centered-feature-content {
    max-width: 96vw;
    padding-bottom: 12em;
  }
  .centered-feature-image {
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .centered-feature-section {
    padding-top: 70px;
    min-height: 100vh;
  }
  .centered-feature-title {
    font-size: 1.3rem;
  }
  .centered-feature-content {
    max-width: 99vw;
    padding-bottom: 10em;
  }
  .centered-feature-image {
    max-width: 100vw;
  }
  .centered-feature-image-container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    padding-bottom: 5em;
  }
}

.feature-tabs-section {
  width: 100%;
  background: #161720;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  scroll-snap-align: start;
  min-height: 100vh;
}

.feature-tabs-section::before {
  /* Geometric SVG background overlay for subtle effect */
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg width="400" height="200" viewBox="0 0 400 200" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.08"><rect x="0" y="0" width="400" height="200" rx="40" fill="%23232434"/><path d="M0 50H400M0 100H400M0 150H400M50 0V200M100 0V200M150 0V200M200 0V200M250 0V200M300 0V200M350 0V200" stroke="%2300e7ff" stroke-width="1"/></g></svg>');
  background-size: 600px 300px;
  background-position: center;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

.feature-tabs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  position: relative;
}

.feature-tab-card {
  background: rgba(24, 24, 40, 0.98);
  border-radius: 28px;
  box-shadow: 0 4px 36px rgba(0,0,0,0.14);
  padding: 30px 24px 22px 24px;
  min-width: 230px;
  max-width: 270px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border:2px solid rgba(0,231,255,0.3);
  position: relative;
}

.feature-tab-card:hover, .feature-tab-card:focus-within {
  transform: translateY(-6px) scale(1.035);
  box-shadow: 0 8px 48px rgba(0,231,255,0.11);
  border: 1.4px solid #00e7ff;
}

.feature-tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 18px;
  background:linear-gradient(to top, #20294a 60%, #00bdd2 110%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,231,255,0.08);
}

.feature-tab-title {
  font-size: 1.09rem;
  font-weight: 700;
  color: #e9f6fc;
  margin-bottom: 9px;
  text-align: center;
  letter-spacing: 0.01em;
}

.feature-tab-desc {
  color: #c3cbd9;
  font-size: 0.98rem;
  line-height: 1.55;
  text-align: center;
  font-weight: 400;
}

/* Responsive styles */
@media (max-width: 1000px) {
  .feature-tabs-container {
    gap: 18px;
    max-width: 98vw;
  }
  .feature-tab-card {
    min-width: 180px;
    max-width: 62vw;
    padding: 22px 12px 16px 12px;
  }
}

@media (max-width: 700px) {
  .feature-tabs-container {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .feature-tab-card {
    max-width: 62vw;
    min-width: 0;
    width: 100%;
  }
}