/* RESET AND BASE SETUP */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f7f9fc;
  color: #222;
}

/* ===== HEADER / TOP NAVIGATION ===== */
header {
  background-color: #083d77;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* LOGO TEXT */
.logo {
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 1px;
}

/* NAVIGATION LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 4px; /* Reduced gap between navigation links */
}

.nav-links li {
  display: inline-block;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #ffc107;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #ffc107;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* ===== PRODUCT SECTION ===== */
.products-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.title {
  font-size: 2.8rem;
  color: #083d77;
  margin-bottom: 50px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: stretch;
}

/* ANIMATION */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PRODUCT CARD */
.product-box {
  background-color: #fff;
  border: 2px solid #083d77;
  border-radius: 12px;
  width: 340px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.product-box:nth-child(1) {
  animation-delay: 0.2s;
}
.product-box:nth-child(2) {
  animation-delay: 0.4s;
}

/* HOVER EFFECT */
.product-box:hover {
  transform: translateY(-8px);
}

/* PRODUCT TEXTS */
.product-box h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #083d77;
}

.product-box p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* EXPLORE BUTTON */
.explore-btn {
  display: inline-block;
  background-color: #083d77;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s;
  margin-top: auto;
}

.explore-btn:hover {
  background-color: #005acc;
}
