body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #111;
  --sb-track-color: #ffffff;
  --sb-thumb-color: #9c2121;
  --sb-size: 6px;
}
body::-webkit-scrollbar {
  width: var(--sb-size)
}
body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}
body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  
}
@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color)
    var(--sb-track-color);
  }
}
.header-down{
  background: url('../../assets/img/dynamic/menu.webp');
  background-color: rgba(249, 236, 236, 0.8);        
  background-blend-mode: lighten;
  /*background-size: cover;
  background-position: center;*/
  opacity: 0.8;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  position: sticky;
  top: 0;
  left: 0;
  width: 84%;
  background: transparent;
  z-index: 10;
}
header .logo {
  height: 3.4em;
  width: auto;
}
nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}
/* Hero as background */
.hero {
  position: relative;
  height: 100vh; /* Full screen */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #111;
  margin-top: -100px;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1; /* Behind content */
  filter: opacity(0.25);
}
/* Keep aspect ratio automatically */
.hero::before {
  content: "";
  display: block;
  padding-top: 40%; /* Adjust this percentage to match your image's aspect ratio */
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: 8%;
}
.hero-content h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 15px;
}
.hero-content p {
  color: #111;
  margin-bottom: 20px;
  max-width: 400px;
}
.btn-primary {
  background-color: #eb3535;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}
/* Categories */
.categories {
  display: flex;
  justify-content: center;
  gap: 57px;
  padding: 40px 8%;
  flex-wrap: wrap;
}
.category-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: 140px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.category-card i {
  font-size: 4rem;
  color: #eb3535;
  margin-bottom: 10px;
}
.category-card:hover{
  background: #e6e7e8;
  cursor: pointer;
  transform: scale(1.05);
}
/* Why Choose Us */
.why {
  padding: 0px 8% 40px 8%;
}
.why h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  margin-top: 0;
}
.why-items {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  font-size: 1.7rem;
  column-gap: 200px;
  row-gap: 50px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 35px;
}
.why-item i {
  font-size: 4rem;
  color: #555;
}
.why-item h4 {
  margin: 0;
  font-weight: 600;
}
.why-item p {
  color: #777;
  margin: 5px 0 0 0;
  font-size: 0.9rem;
}
/* Contact */
.how-to {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  padding: 40px 22%;
  overflow: hidden;
  position: relative;
}

.howto-carousel {
  position: relative;
  width: 100%;
  height: auto;
}

.howto-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.howto-slide.active {
  opacity: 1;
  position: relative;
}

.howto-slide .img img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 100%;
  display: block;
}

.howto-slide .how-to-text {
  flex: 1;
  min-width: 300px;
}

.banner {
  position: relative;
  width: 100%;
  height: 200px; /* adjust as needed */
  overflow: hidden;
  padding: 60px 0px;
}

.banner .carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner .carousel img {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;    
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner .carousel img.active {
  opacity: 1;
}

footer {
  background-color: #f4f4f4;
  padding: 40px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  border-top: 1px solid #ddd;
}
.footer-col {
  flex: 1 1 250px;
  margin: 15px;
}
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin: 8px 0;
}
.footer-col ul li a {
  text-decoration: none;
  color: #333;
}
.footer-col ul li a:hover {
  color: #007BFF;
}
.footer-col .logo{
  width: 10em;
}
.social-icons a {
  margin-right: 10px;
  color: #333;
  font-size: 18px;
}
.social-icons a:hover {
  color: #007BFF;
}
.footer-bottom {
  background-color: #e9e9e9;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #555;
}
.float-whatsapp{
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100;
}
.float-whatsapp img{
  width: 70px;
  height: auto;
}
.float-ribbon{
  position: fixed;
  bottom: -20px;
  left: 6px;
  z-index: 100;
}
.float-ribbon img{
  width: 10vw;
  height: auto;
}