body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f5f7fa;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

section {
  padding: 70px 6%;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 6%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 65px;
}

.logo span {
  font-weight: 600;
  color: #333;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

/* Hover underline */
.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #007bff;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 100%;
    text-align: center;
    display: none;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* HERO SLIDER */
.hero {
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  width: 500%;
  animation: slide 20s infinite;
}

.slide {
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(-100%);
  }
  45% {
    transform: translateX(-200%);
  }
  60% {
    transform: translateX(-200%);
  }
  65% {
    transform: translateX(-300%);
  }
  80% {
    transform: translateX(-300%);
  }
  85% {
    transform: translateX(-400%);
  }
  100% {
    transform: translateX(-400%);
  }
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  color: white;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

/* PRODUCTS */
.product img {
  height: 220px;
  object-fit: cover;
}

/* BRANDS */
.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.brands img {
  height: 60px;
  opacity: 0.7;
}

.brands img:hover {
  opacity: 1;
}

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.slide.active {
  display: block;
}

.caption {
  position: absolute;
  bottom: 50px;
  left: 50px;
  color: white;
  font-size: 40px;
  font-weight: bold;
}

/* Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}
.about-section {
  background: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-points li {
  margin-bottom: 10px;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    text-align: center;
  }
}

/* FOOTER */
.footer {
  background: #0d1117;
  color: #ccc;
  padding: 60px 6% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Logo */
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

/* Headings */
.footer h3 {
  color: #fff;
  margin-bottom: 15px;
}

/* Links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}

/* Icons */
.footer i {
  margin-right: 8px;
  /* color: #007bff; */
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #222;
  font-size: 14px;
}

section iframe {
  border-radius: 15px;
}

/* ABOUT SECTION BASE */
section {
  padding: 70px 6%;
}

.page-title {
  height: 300px;
  background: url("images/background/bg-page-title-1.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
/* INTRO BOX */
.box {
  background: rgba(255, 255, 255, 0.95);
  padding: 45px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);
}

.box h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.box p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ABOUT GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid img {
  width: 100%;
  border-radius: 15px;
  transition: 0.4s ease;
}

.grid img:hover {
  transform: scale(1.05);
}

/* TEXT SIDE */
.grid h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.grid p {
  color: #555;
  line-height: 1.8;
}

/* LIST STYLE */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 10px;
  color: #444;
  font-weight: 500;
}

/* WHY CHOOSE US CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #007bff, #00c6ff);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #555;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* MISSION BOX */
section .box h2 {
  margin-bottom: 20px;
}

/* BRANDS */
.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.brands img {
  height: 60px;
  opacity: 0.7;
  /* filter: grayscale(100%); */
  transition: 0.4s ease;
}

.brands img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* SECTION TITLES */
section h2 {
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .box {
    padding: 25px;
  }
}

/* PAGE TITLE */
.page-title {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/background/bg-page-title-1.jpg") center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-title h1 {
  font-size: 42px;
}

/* SECTION */
.products {
  padding: 60px 5%;
  text-align: center;
}

.section-title {
  font-size: 30px;
  margin-bottom: 40px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* HOVER */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* LIGHTBOX EFFECT (CLICK ZOOM) */
.product-card img:hover {
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-title h1 {
    font-size: 28px;
  }
}

/* PAGE TITLE */
.page-title {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/background/bg-page-title-1.jpg") center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-title h1 {
  font-size: 40px;
}

/* CONTACT SECTION */
.contact-info {
  padding: 60px 5%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* BOX */
.contact-box,
.form-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-box h2,
.form-box h2 {
  margin-bottom: 20px;
}

/* FORM */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-row input {
  width: 100%;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

textarea {
  height: 120px;
  margin-bottom: 15px;
}

/* BUTTON */
button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #0056b3;
}

/* MAP */
.map-section {
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }

  .page-title h1 {
    font-size: 28px;
  }
}

.franchise-section {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  padding: 100px 20px;
  color: #fff;
}

.franchise-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.franchise-text h2 {
  color: #d4af37;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.franchise-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #d4af37, #f5d76e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.franchise-text p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}

/* BUTTON */
.franchise-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.franchise-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* IMAGE */
.franchise-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: 0.4s;
}

.franchise-image img:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .franchise-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .franchise-text h1 {
    font-size: 36px;
  }
}

.products-section {
  padding: 80px 20px;
  background: #f8f9fb;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 10px auto 0;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  position: relative;
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  transition: 0.4s;
}

/* HOVER EFFECT */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-card:hover img {
  transform: scale(1.08);
}

/* GOLD HOVER BORDER */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: 0.3s;
}

.product-card:hover::before {
  border-color: #d4af37;
}

/* BUTTON */
.btn-center {
  text-align: center;
  margin-top: 50px;
}

.view-btn {
  padding: 14px 35px;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.page-title {
  height: 300px;
  background: url("images/background/bg-page-title-1.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.sister-companies {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    text-align: center;
}

.sister-companies h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.sister-companies .desc {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #cbd5f5;
}

.sister-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sister-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

.sister-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.sister-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #38bdf8;
}

.sister-card p {
    font-size: 15px;
    color: #e2e8f0;
}

    .franchise-section {
    padding: 100px 20px;
    background: #0a0a0a;
    color: white;
}

.franchise-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.franchise-text h2 {
    color: #aaa;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.franchise-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.franchise-text p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Locations */
.franchise-locations {
    margin-top: 30px;
}

.franchise-locations h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #d4af37;
}

.location-box {
    display: flex;
    align-items: center;
    background: #111;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-left: 3px solid #d4af37;
    transition: 0.3s;
}

.location-box span {
    font-size: 18px;
    font-weight: bold;
    color: #d4af37;
    margin-right: 15px;
}

.location-box p {
    margin: 0;
    color: #ddd;
}

.location-box:hover {
    background: #1a1a1a;
    transform: translateX(5px);
}

/* Button */
.franchise-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: linear-gradient(90deg, #d4af37, #f5d76e);
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}

.franchise-btn:hover {
    transform: translateY(-3px);
}

/* Image */
.franchise-image img {
    width: 100%;
    border-radius: 10px;
}

/* Responsive */
@media(max-width: 768px) {
    .franchise-container {
        grid-template-columns: 1fr;
    }

    .franchise-text h1 {
        font-size: 32px;
    }
}

.location-box a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.location-box a:hover {
    color: #d4af37;
    text-decoration: underline;
}