/* ===== RESET ===== */
html,
body {
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
}

/* ===== VARIABLES ===== */
:root {
  --primary: #ab052d;
  --accent: #ffa100;
  --light: #f5f5f5;
  --text: #333;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.topbar {
  background: #333;
  color: #fff;
  padding: 10px 0;
}

.topbar .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
}

.nav {
  background: var(--primary);
}

.nav ul {
  display: flex;
  list-style: none;
  justify-content: left;
}

.nav li {
  padding: 15px 20px;
}

.nav a {
  color: #fff;
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent);
}

/* ===== HERO ===== */
#hero {
  height: 600px;
  background: linear-gradient(0deg, #fff, #333);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===== SECTION ===== */
section {
  padding: 60px 0;
}

h2 {
  text-align: left;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 3.2em;
}

h5 {
  text-align: left;
  margin-bottom: 20px;
  color: var(--text);
  font-size: 1.2em;
}

/* ===== TWO COLUMN ===== */
.two-col {
  display: flex;
  gap: 30px;
  align-items: center;
}

.two-col-start {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.two-col-start h2 {
  text-align: left;
  margin-bottom: 0px;
  color: var(--primary);
  font-size: 3.2em;
  padding: 1rem;
}

.two-col-start h3 {
  text-align: left;

  color: var(--text);
  font-size: 2.2em;
  padding: 1rem;
}

.two-col-start p {
  padding: 1rem;
}

.two-col-start img {
  width: 100%;
  border-radius: 8px;
}

.two-col img {
  width: 100%;
  border-radius: 8px;
}

.welcome-box {
  position: relative;
  background: #f1f1f1;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Background image with opacity */
.welcome-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("welcom.jpg");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 50%;
  opacity: 0.2;
  z-index: -1;
}

.value-box {
  position: relative;
  background: #f1f1f1;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 1;
}

section.value-box div.container div.card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* vertical start */
  align-items: flex-start;
  /* horizontal start */
  padding-top: 0;
  /* make sure no padding pushes it down */
  margin-top: 0;
  /* remove margin if any */
}

section.value-box div.container div.card:nth-child(2) {
  border-left: 1px #333 dashed;
  border-right: 1px #333 dashed;
  border-radius: 0;
  padding: 0 2rem;
}

/* Background image with opacity */
.value-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("value.jpg");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
}

.value-box h3 {
  color: #ab052d;
  font-size: 2rem;
  text-decoration: underline;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 15px;
  border-radius: 6px;
}

.card img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 1rem;
}

section.revbg {
  background: #ab052d;
}

section.revbg div.card {
  padding: 15px;
  border-radius: 6px;
  color: #fff;
}

/* ===== CONTACT ===== */
.contact h2 {
  margin: 0;
  padding: 0;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}

button {
  border-radius: 0.5rem;
  padding: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
}

/* ===== MAP ===== */
#mapcontact {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
}

.map iframe {
  width: 100%;
  height: 500px;
  width: 500px;
  border: 0;
  border-radius: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #ab052d;
  color: #fff;
  padding: 40px 0;
}

.footer .cols {
  display: flex;
  gap: 30px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.copyright {
  background: #111;
  color: #aaa;
  text-align: left;
  padding: 10px;
}

/* Slider ============== */
/* 1. Base Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  /* Full screen height, or set to 500px for a banner */
  overflow: hidden;
  background-color: #000;
  /* Fallback color */
}

/* 2. The Sliding Track */
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

/* 3. Individual Slides */
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Dark overlay to make text pop against images */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Adjust transparency here */
  z-index: 1;
}

/* 4. Text Content Styling */
.content {
  position: relative;
  z-index: 2;
  /* Ensures text stays above the overlay */
  color: #ffffff;
  padding: 0 20px;
  max-width: 800px;
}

.content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  /* Responsive font size */
  margin-bottom: 15px;
  font-family: "Arial Black", sans-serif;
  text-transform: uppercase;
}

.content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  font-weight: 300;
}

/* 5. Animation Control Logic */
/* Hide elements initially so they don't "flicker" before animating */
.slide .animate__animated {
  visibility: hidden;
}

/* Only show and animate elements when the slide has the .active class */
.slide.active .animate__animated {
  visibility: visible;
}

/* 6. Navigation Bullets */
.bullet-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bullet:hover {
  background: rgba(255, 255, 255, 0.6);
}

.bullet.active {
  background: #fff;
  transform: scale(1.3);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
#qr {
  width: 20%;
  overflow: hidden;
}
#qr img {
  width: 70%;
  border-radius: 0.8rem;
}
#bizniztitle {
  display: flex;
  flex-direction: column;
}
/* Responsive Tweak for Mobile */
@media (max-width: 768px) {
  .slider-container {
    height: 400px;
  }

  .content h1 {
    font-size: 1.8rem;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #mapcontact {
    grid-template-columns: 1fr;
  }
  .two-col-start {
    flex-direction: column;
    gap: 0;
  }

  .two-col {
    flex-direction: column;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .footer .cols {
    flex-direction: column;
  }

  .nav ul {
    flex-direction: column;
  }
  #mapcontact {
    width: 100%;
    display: flex;
  }
  .map {
    padding: 0;
    margin: 0;
    width: 100% !important;

    height: auto;
  }
  .map iframe {
    height: 400px !important;
    width: 100% !important;
    border: 0;
    border-radius: 0.5rem;

    padding: 0 !important;
    margin: 0 !important;
  }
  #qr {
    width: 90%;
    overflow: hidden;
    margin: auto;
    text-align: center;
  }
  #qr img {
    width: 100%;
    border-radius: 0.1rem;
  }
}
