* {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 100, 400, 700, 900;
  font-style: normal;
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 90%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/background.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

header {
  min-height: 100vh;
  padding-top: 80px;
  background-color: transparent;
}

.hero-content {
  padding: 120px 0 60px;
  max-width: 800px;
  margin: 0 auto;
}

.card-icon {
  font-size: 2.5rem;
}

/* Feature cards styling */
.row {
  margin-top: 4rem;
}

.card {
  border: none;
  border-radius: 0 !important;
  height: 100%;
  width: 100%;
}

/* Navbar adjustments */
.navbar-brand {
  font-size: 1.5rem;
}

.btn-info {
  background-color: #00d4ff;
  border-color: #00d4ff;
}

.btn-info:hover {
  background-color: #00b8e6;
  border-color: #00b8e6;
}

.product-section {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  height: 100vh;
}
#navbar{
  overflow: hidden;
  background-color: #f1f1f1 ;
  padding: 90px 10px;
  transition: 0.4s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}

.product-image {
  padding: 40px;
  border-radius: 20px;
}

.product-image img {
  width: 100%;
  height: auto;
}

.product-content h2 {
  color: #252b42;
}

.product-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.product-content a {
  font-weight: 700;
  font-size: 1.1rem;
}

.product-content a:hover {
  text-decoration: underline !important;
}

@media (max-width: 991px) {
  .product-content {
    margin-top: 40px;
    text-align: center;
  }
}

.icon-hover {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.icon-hover:hover {
  transform: scale(1.2);
  cursor: pointer;
}
.login {
  height: 100vh;
}

