/* Custom scrollbar (optional, for aesthetics) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html {
  scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

body {
  font-family: "Inter", sans-serif; /* Apply Inter font to the whole body */
  background-color: #f8f9fa; /* Light gray background for a modern feel */
  color: #343a40; /* Darker text for better readability */
}

/* Navbar animation */
.nav-links-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.nav-links-mobile.open {
  max-height: 500px; /* Adjust as needed */
}

/* Simple fade-in animation for sections (optional) */
.section-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card hover effect */
.product-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.product-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Button hover effect */
.btn-primary {
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
}

/* Navbar scroll effect */
.navbar-scrolled {
  background-color: #ed2f68; /* Slightly transparent white */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#hero {
  background-image: url("/pages/assets/image/bg.jpg");
  background-size: 100% 100%;
  width: 100%;
  height: 100vh;
}

/* (PART A) TABS WRAPPER */
.tabs {
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
}

/* (PART B) LABELS */
.tNav {
  flex-grow: 1;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  background: #f7f7f7;
}
.tNav.current {
  font-weight: 700;

  /* background: #4358c1;*/

  text-decoration-color: aqua;
}

/* (PART C) SECTIONS */
.tSec {
  width: 100%;
  padding: 30px 20px;
  background: #fff;
  display: none;
}
.tSec.current {
  display: block;
}
.pro_hover {
  background-color: #ed2f68;
}
.items {
  padding-top: 80px;
}

/* Style the tab */
.tab {
  overflow: hidden;
  /* border: 1px solid #ccc;*/
  /*background-color: #f1f1f1;*/
  margin-top: 80px;
  align-items: center;
  justify-content: center;
}

/* Style the buttons inside the tab */
.tab button {
  /* background-color: inherit;*/
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}
/*
.tab button::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.tab button:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}*/
/* Change background color of buttons on hover */
.tab button:hover {
  text-decoration-line: underline;
  text-decoration-color: #ed2f68;
  text-decoration-thickness: 4px;
}

/* Create an active/current tablink class */
.tab button.active {
  /*  background-color: #ccc;*/
  text-decoration-color: #ed2f68;
  text-decoration-line: underline;
  text-decoration-thickness: 4px;
}
/*
.tablinks {
  position: relative;
  color: #000;
  
}
.tablinks:hover {
  color: #ed2f68;
}
.tablinks::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.tablinks::before {
  transform: scaleX(1);
}
*/

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  margin-top: 30px;
}
.footername {
  color: #ed2f68;
  font-weight: bolder;
  transition: ease-in;
}
.footername:hover {
  color: #ccc;
  transform: scaleX(1.2);
}
