body {
  font-family: 'Ubuntu', sans-serif;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
.navbar-brand {
        margin-top: 10px;
    margin-left: 5px;

}

.custom-navbar {
  background: rgba(255, 255, 255, 0); /* semi-transparent */
  backdrop-filter: blur(6px);
}

.navbar-nav .nav-link {
  color: #0e2c44 !important;
  font-weight: 500;
  margin: 0 10px;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('product2.png') no-repeat center center/cover;
}

.overlay-text {
  position: absolute;
  top: 50%;
  right: 8%;          /* move to the right side */
  left: auto;         /* disable the left positioning */
  transform: translateY(-50%);
  color: #fff;
  max-width: 500px;
  text-align: right;  /* optional: align text to the right */

}


.overlay-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
               /* start hidden */
  transition: opacity 1s ease-in-out; /* fade effect */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
.overlay-text a.btn {
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* optional shadow for button text */
}


/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh; /* compressed height */
    background-position: 30% center; /* shift focus slightly right */
    /* values: 0% = fully left, 50% = center, 100% = fully right */
  }

  .overlay-text {
    max-width: 90%;
    font-size: 1.2rem;
  }
}

.features-heading {
  color: #0e2c44;
  font-weight: 700;
  font-size: 2rem;
}


.features-section {
  background-color: #ffffff;
}

.feature-tile {
  background-color: #ffffff;
  color: #0e2c44;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 250px; /* increase tile height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* center content vertically */
}

.feature-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.feature-tile h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-icon {
  font-size: 3rem;
  color: #0e2c44;
  margin-bottom: 15px;
}

.video-heading {
  color: #0e2c44;
  font-weight: 700;
  font-size: 2rem;
}

.video-wrapper {
  margin: 0 auto;
  max-width: 900px; /* optional: limit width for balance */
}

.rounded-video {
  border-radius: 12px; /* rounded corners */
  box-shadow: 0 6px 18px rgba(0,0,0,0.15); /* subtle shadow for depth */
}
.product-heading {
  color: #0e2c44;
  font-weight: 700;
  font-size: 2rem;
}

.product-copy {
  color: #0e2c44;
  font-size: 1.1rem;
  line-height: 1.6;
}

.product-section img {
  max-height: 400px; /* keeps image balanced */
  object-fit: contain;
}
.about-heading {
  color: #0e2c44;
  font-weight: 700;
  font-size: 2rem;
}

.about-description {
  color: #0e2c44;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px; /* keeps text comfortably readable */
}

.footer {
  background-color: #ffffff;
  border-top: 1px solid #eaeaea;
}

.footer-heading {
  color: #0e2c44;
  font-weight: 700;
}

.footer-text {
  color: #0e2c44;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  color: #0e2c44;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #198754; /* optional hover accent */
}

.footer-nav .footer-link {
  color: #0e2c44;
  font-weight: 500;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-nav .footer-link:hover {
  color: #198754;
}
