@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Mono", monospace;
  line-height: 1.5;
}

/* HEADER / NAVBAR */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
}

.logo img {
  height: 70px;
}

/* Navbar */
.navbar {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar li {
  position: relative;
}

.navbar a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  padding: 10px 15px;
  display: inline-block;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #E30613;
}

/* Dropdown menu - hidden initially */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow: hidden;
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #222;
  font-weight: 400;
  transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
  background: #E30613;
  color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Arrow for dropdown */
.arrow {
  font-size: 0.7rem;
  margin-left: 5px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    display: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 10px 0;
  }

  .navbar li {
    width: 100%;
  }

  .navbar a {
    padding: 10px 20px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    background: #f9f9f9;
    border-radius: 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .menu-toggle {
    display: block;
  }
}
/* NAVBAR SECTION END */


/* SLIDER HOME SECTION START */
.slider {
  position: relative;
  width: 100%;
  height: 100vh; /* adjust as needed */
  overflow: hidden;
  /* background: #000; */
}

.slide-cards {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide-item {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.bg-img img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  opacity: 0.9;
}

.slide-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.2)); */
  z-index: 1;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  /* background: rgba(0,0,0,0.4); */
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  transition: background 0.3s;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}
/* SLIDER HOME SECTION END */

/* ABOUT SECTION START */
.about {
  padding: 80px 20px;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  flex-wrap: wrap;
}

/* Text content */
.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
  position: relative;
}

.about-text h4::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #E30613;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.about-text h4 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

.about-text .btn {
  display: inline-block;
  padding: 12px 30px;
  background: #007bff;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.3s;
  text-decoration: none;
}

.about-text .btn:hover {
  background: #015cbd;
  transform: translateY(-3px);
}

/* Image */
.about-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-img img {
  max-width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text .btn {
    margin: 0 auto;
  }
}

/* ABOUT SECTION END */

/* PRODUCT SECTION START */

/* PRODUCT SECTION */
.product {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  color: #222;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  /* background: #E30613; */
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Category Title */
.category-title {
  font-size: 2rem;
  margin: 50px 0 30px;
  color: #333;
  border-bottom: 2px solid #E30613;
  display: inline-block;
  padding-bottom: 5px;
}

/* Columns for products */
.product-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
}

/* Product Card */
.product-card {
  background: #f9f9f9;
  flex: 1 1 calc(33.333% - 30px); /* 3 columns per row */
  min-width: 250px;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 15px;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Hover Effects */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Buttons */
.btn-primary {
  padding: 12px 30px;
  background: #E30613;
  color: #fff;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 15px;
}

.btn-primary:hover {
  background: #c0050f;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .product-card {
    flex: 1 1 calc(50% - 30px); /* 2 columns per row */
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 1 1 100%; /* 1 column per row */
  }
}

/* -------------------------------
   HERBAL PRODUCTS SECTION
--------------------------------*/

.herbal-products {
  position: relative;
  background: url(assets/about/8.webp) no-repeat center center/cover;
  padding: 100px 0;
  /* font-family: "Poppins", sans-serif; */
  color: #fff;
  text-align: center;
  overflow: hidden;
  height: 90vh;
}

/* Black overlay with opacity */
.herbal-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* black overlay with 60% opacity */
  z-index: 1;
}

/* Content container */
.herbal-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.herbal-container h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
}

.herbal-subtitle {
  font-size: 16px;
  margin-bottom: 50px;
  color: #f2f2f2;
}

/* Product boxes grid */
.herbal-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.herbal-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 25px;
  backdrop-filter: blur(8px);
  border-top: 3px solid #ff0000;
  transition: all 0.3s ease;
}

.herbal-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.herbal-box i {
  font-size: 45px;
  color: #ff6565;
  margin-bottom: 15px;
}

.herbal-box h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.herbal-box p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.herbal-box .btn {
  display: inline-block;
  background-color: #0084ff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.herbal-box .btn:hover {
  background-color: #fff;
  color: #ff0000;
}

/* Responsive design */
@media (max-width: 900px) {
  .herbal-boxes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .herbal-boxes {
    grid-template-columns: 1fr;
  }

  .herbal-container h2 {
    font-size: 28px;
  }
}



/* -------------------------------
   FOOTER SECTION STYLES
--------------------------------*/

.footer {
  background-color: #002b3f; /* Deep navy blue */
  color: #fff;
  padding: 60px 0 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-column h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #ff0000;
  margin-top: 8px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff0000;
  padding-left: 5px;
}

.footer-column p {
  margin: 10px 0;
  color: #ccc;
  line-height: 1.6;
  font-size: 15px;
}

.footer-column i {
  color: #ff0000;
  margin-right: 10px;
}

/* QR Code Section */
.qr-code img {
  width: 130px;
  height: 130px;
  border-radius: 10px;
  border: 2px solid #ff0000;
  margin-top: 10px;
}

/* COPYRIGHT SECTION */
.footer-copyright {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

.footer-copyright span {
  font-weight: 600;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: start;
  }

  .footer-column h4::after {
    margin: 8px 0;
    /* display: block; */
  
  }

  .footer-column ul li a:hover {
    padding-left: 0;
  }

  .qr-code img {
    margin: 0 auto;
  }
}

/* -----------------------------------
   WHY CHOOSE SEABIOS I INC SECTION
----------------------------------- */

.whychoose {
  background-color: #f9f9f9; /* light background for readability */
  padding: 40px 20px; /* reduce padding */
  height: 85vh; /* total height */
  display: flex;
  align-items: center; /* vertically center content */
  justify-content: center; /* horizontally center content */
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.choose-container {
  width: 100%;
  max-width: 1100px;
}

.choose-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #003366;
  text-align: center;
  margin-bottom: 20px; /* reduced margin */
  text-transform: uppercase;
}

.choose-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6; /* reduced line-height */
  margin-bottom: 10px; /* smaller gap between paragraphs */
}

/* Bold headings inside paragraphs */
.choose-content p b {
  color: #616161;
  display: block;
  font-size: 18px;
  margin-bottom: 3px;
}

/* Optional bullet styling */
.choose-content p b::before {
  content: "•";
  color: #ff0000;
  margin-right: 5px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .choose-title h2 {
    font-size: 28px;
  }

  .choose-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .choose-title h2 {
    font-size: 24px;
  }

  .choose-content p {
    font-size: 14px;
  }
}