body {
  font-family: "Roboto", sans-serif;
  margin: 0;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.top-header,
.main-header,
.hero-text,
.nav-links {
  font-family: "Roboto", sans-serif;
}

/* --- Top Gray Header --- */
.top-header {
  background-color: #4c4a4afe;
  color: white;
  padding: 8px 30px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  background-color: #454242;
  font-size: 13px;
  border-bottom: 1px solid #454242;
}

.top-header ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.top-header li a {
  text-decoration: none;
  color: #ececf1;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.top-header .fa-caret-down {
  font-size: 10px;
  margin-left: 5px;
}

.top-left,
.top-right {
  display: flex;
  gap: 20px;
}

.top-left span,
.top-right span {
  cursor: pointer;
}

/* --- Main Navigation Header --- */
.main-header {
  background-color: white;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 90px;
  /* font-size: 14px; */
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 60px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #101010;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Dropdown menu (optional) */
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: none;
  min-width: 150px;
  border-radius: 4px;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-links .dropdown-menu li a {
  padding: 8px 20px;
  display: block;
  color: #003d91;
  font-weight: 400;
  font-size: 14px;
}

.nav-links .dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

.search-cart {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-bar input {
  padding: 5px;
  font-size: 14px;
}

.search-bar button {
  padding: 5px 8px;
  font-size: 14px;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px; /* ⬇ reduced padding */
  background-color: #f9f9f9;
  gap: 30px;
  max-height: 450px; /* ⬇ cap max height */
  overflow: hidden;
}

.hero > img {
  flex: 0 0 50%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 400px; /* ⬇ reduce image height */
}

.hero-text {
  flex: 0 0 50%;
}

.hero-text h2 {
  font-size: 22px; /* ⬇ smaller heading */
  margin-bottom: 8px;
}

.hero-text h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-text button {
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  padding: 7px 18px;
  margin-right: 12px;
  border-radius: 19px;
  border: 2px solid #003d91;
  background-color: #003d91;
  color: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* footer section */

.footer {
  background-color: #0f172a;
  color: #fff;
  padding: 40px 20px;
  font-family: "Roboto", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 220px;
  margin: 10px 20px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-column p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00bcd4;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    margin: 20px 0;
    text-align: center;
  }
}
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background-color: #0b1321;
  color: #aaa;
  font-size: 14px;
  border-top: 1px solid #1e293b;
  
}

.footer-bottom a {
  color: #00bcd4;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


/* our product */
/* --- Product Section --- */
.product-section {
    padding: 40px 20px;
    background-color: #f8f9fc;
    text-align: center;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 30px;
    color: #333;
}

.product-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #d3d3d3;
    margin-bottom: 10px;
}

.product-card p {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    text-align: center;
}

/* --- Responsive Tweaks --- */
@media (max-width: 768px) {
    .product-categories {
        justify-content: center;
        gap: 20px;
    }

    .product-card {
        width: 120px;
    }

    .product-image {
        width: 100px;
        height: 100px;
    }

    .section-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .product-card {
        width: 100px;
    }

    .product-image {
        width: 80px;
        height: 80px;
    }

    .product-card p {
        font-size: 12px;
    }
}
