* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
}

/* Navbar */
.navbar {
  background: #000;
  display: flex;
  justify-content: space-around;
  /* ✅ Center aligned */
  align-items: center;
  gap: 40px;
  padding: 15px 40px;
}

.navbar img {
  height: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #e63946;
}

.btn {
  padding: 8px 18px;
  border-radius: 25px;
  border: 2px solid #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-franchise {
  background: transparent;
  color: #fff;
}

.btn-franchise:hover {
  background: #fff;
  color: #000;
}

.btn-order {
  background: #e63946;
  color: #fff;
  border: none;
}

.btn-order:hover {
  background: #d62828;
}

/* Hero Section as Picture */
.hero {
  width: 100%;
  height: 800px;
  /* ✅ apko jitna height chahiye set krlo */
  background: url("hero section.webp") no-repeat center center/cover;
  /* apni picture ka naam lagado hero.jpg ki jagah */
}

/* Brand Section */
.brands-section {
  text-align: center;
  background-color: #131212;
  padding: 60px 20px;
}

.brands-section h1 {
  font-size: 32px;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 10px;
}

.brands-section h1 span {
  font-weight: 700;
}

.brands-section p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 40px;
}

.brand-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.brand-card {
  background: #fff;
  padding: 20px;
  border-radius: 3px;
  width: 200px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.brand-card img {
  width: 100%;
  height: 70px;
}

.brand-btn {
  margin-top: 15px;
}

.brand-btn button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.brand-btn button:hover {
  background: #fff;
  color: #000;
}

.franchise-section {
  text-align: center;
  background-color: #111111;
  padding: 60px 130px;
}

.franchise-section h1 {
  font-size: 34px;
  color: #ccc;
  margin-bottom: 10px;
}

.franchise-section p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 60px;
}

.franchise-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.franchise-box .text {
  flex: 1;
  text-align: left;
}

.franchise-box .text h3 {
  color: #e63946;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.franchise-box .text h2 {
  font-size: 22px;
  color: #ccc;
  display: flex;
  margin: 0 0 15px;
}

.franchise-box .text p {
  margin: 5px 0;
  font-size: 14px;
  color: #ccc;
}

.franchise-box .text button {
  margin-top: 15px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.franchise-box .text button:hover {
  background: #fff;
  color: #000;
}

.franchise-box .image {
  flex: 1;
}

.franchise-box .image img {
  width: 80%;
  border-radius: 6px;
}

/* Even row -> reverse order (Image left, Text right) */
.franchise-box.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {

  .franchise-box,
  .franchise-box.reverse {
    flex-direction: column;
    text-align: center;
  }

  .franchise-box .text {
    text-align: center;
  }
}

h1 {
  margin: 20px 0;
  text-align: center;
  color: #ccc;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.black {
  background-color: #000;
  position: relative;
  top: -30px;
}

.card {
  background: transparent;
  border-radius: 2px;
  overflow: hidden;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.4); */
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 15px;
  text-align: center;
}

.card-content h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #D31A21;
  font-family: 'Times New Roman', Times, serif;
}

.card-content p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #fff;
  color: black;
}

h1 {
  text-align: center;
  margin: 20px 0 10px;
  font-size: 36px;
}

h2 {
  text-align: center;
  margin: 0 0 40px;
  font-size: 26px;
  font-weight: normal;
  color: white;
}

.franchise1-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  padding: 40px;
}

.franchise1-img {
  flex: 1 1 50%;
  min-width: 350px;
}

.franchise1-img img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.franchise1-content {
  flex: 1 1 40%;
  min-width: 300px;
}

.city {
  color: #e63946;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.franchise1-content h3 {
  font-size: 28px;
  margin: 5px 0 15px;
}

.info {
  margin: 10px 0;
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

.info span {
  display: block;
  margin-bottom: 8px;
}

.info span::before {
  margin-right: 8px;
}

.location::before {
  content: "📍";
}

.phone::before {
  content: "📞";
}

.white {
  color: white;
}

.btn2 {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #2ecc71;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn2:hover {
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 30px;
}

h1 {
  font-size: 40px;
  margin-top: 30px;
}

h2 {
  font-size: 28px;
  margin: 5px 0 40px;
  font-weight: normal;
}

h2 span {
  color: #ccc;
  font-style: italic;
}

.cards1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px 50px;
}

.card1 {
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  text-align: center;
}

.card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.card1 img {
  width: 50px;
  margin-bottom: 15px;
}

.opening {
  color: #e63946;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.card1 h3 {
  font-size: 20px;
  margin: 5px 0;
}

.card1 p {
  font-size: 16px;
  margin: 5px 0 0;
  color: #444;
}

.open {
  color: white;
  text-align: center;
  font-size: 40px;
}

.Soon {
  color: white;
  text-align: center;
}

.card1:last-child {
  grid-column: span 3;
  justify-self: center;
  max-width: 300px;
  width: 1500px;
}

footer {
      background: #111;
      padding: 50px 100px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 30px;
    }

    footer .logo img {
      width: 150px;
      margin-bottom: 15px;
    }

    footer p {
      font-size: 14px;
      line-height: 1.6;
      color: #ccc;
    }

    footer h3 {
      margin-bottom: 15px;
      font-size: 18px;
      color: #fff;
    }

    footer ul {
      list-style: none;
      padding: 0;
    }

    footer ul li {
      margin-bottom: 10px;
    }

    footer ul li a {
      text-decoration: none;
      color: #ccc;
      font-size: 14px;
      transition: color 0.3s;
    }

    footer ul li a:hover {
      color: #fff;
    }

    .social-icons {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }

    .social-icons a {
      width: 35px;
      height: 35px;
      background: red;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      text-decoration: none;
      font-size: 16px;
    }

    .app-buttons img {
      width: 120px;
      margin-top: 10px;
      cursor: pointer;
    }

    .bottom-bar {
      background: #000;
      text-align: center;
      padding: 15px;
      font-size: 13px;
      color: #aaa;
    }

    .bottom-bar a {
      color: #fff;
      text-decoration: none;
    }