/* ===== Base Style ===== */
body {
  margin: 0;
  font-family: "Poppins", "Inter", sans-serif;
  background: #f1f4f8;
  color: #222;
}

/* ===== Franchise Section ===== */
.fran {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
background:    #e9ecef;
}

.fran-wrapper {
  display: flex;
 
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

/* ===== Left Map ===== */
.fran-map {
  flex: 1;
 
}

.fran-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

/* ===== Right Content ===== */
.fran-content {
  flex: 1;
  text-align: center;
}

.fran-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fran-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #111;
  font-weight: 700;
}

.city-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.city {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.city img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.city img:hover {
  transform: scale(1.05);
}

.city span {
  margin-top: 10px;
  font-size: 16px;
  color: #222;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .fran-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .fran-map {
    width: 100%;
    height: 300px;
  }

  .city-list {
    gap: 20px;
  }

  .city img {
    width: 90px;
    height: 90px;
  }
}

   /* ===== Section Wrapper ===== */
    .fran-apply {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 80px 20px;
      background:   #e9ecef;
    }

    .fran-apply-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      max-width: 1200px;
      width: 100%;
    }

    /* ===== LEFT IMAGE ===== */
    .fran-apply-img {
      flex: 1;
      text-align: center;
    }

    .fran-apply-img img {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 12px;
    }

    /* ===== RIGHT FORM CARD ===== */
    .fran-apply-form {
      flex: 1;
      background: #ffffff;
      border-radius: 14px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
      padding: 40px 35px;
      max-width: 520px;
      transition: all 0.3s ease;
    }

    .fran-apply-form:hover {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .fran-apply-form h2 {
      font-size: 22px;
      margin-bottom: 25px;
      color: #111;
      font-weight: 600;
      text-align: center;
    }

    /* ===== Form Groups ===== */
    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 18px;
    }

    .form-group label {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 6px;
      color: #333;
    }

    .form-group label span {
      color: #e74c3c;
    }

    /* ===== Inputs & Textareas ===== */
    .fran-apply-form input,
    .fran-apply-form textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #d9d9d9;
      border-radius: 8px;
      font-size: 14px;
      background: #fafafa;
      transition: all 0.2s ease;
      resize: none;
      font-family: "Inter", "Poppins", sans-serif;
    }

    .fran-apply-form input:focus,
    .fran-apply-form textarea:focus {
      border-color: #1e5af9;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(30, 90, 249, 0.15);
      outline: none;
    }

    /* ===== Submit Button ===== */
    .fran-apply-form button {
      width: 100%;
      background: #1e5af9;
      border: none;
      color: #fff;
      font-size: 15px;
      padding: 12px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 500;
      transition: background 0.3s ease;
    }

    .fran-apply-form button:hover {
      background: #1547c5;
    }

    /* ===== Responsive Design ===== */
    @media (max-width: 900px) {
      .fran-apply-wrapper {
        flex-direction: column;
        gap: 40px;
      }

      .fran-apply-img img {
        max-width: 350px;
      }

      .fran-apply-form {
        width: 100%;
      }
    }


/********** footer*********** */


    .footer {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #333;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 230px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-section p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section a {
    color: #333;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section button {
    background: #888;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 18px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-section button:hover {
    background: #555;
}

.footer-section h3 {
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-box input {
  width: 200px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-box input:focus {
  border-color: #0056d2;
  box-shadow: 0 0 4px rgba(0, 86, 210, 0.3);
}

.search-box button {
  background-color: #666;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.search-box button:hover {
  background-color: #0056d2;
}

.social-icons a {
    font-size: 18px;
    color: #444;
    margin-right: 12px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0a66c2;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section ul li a {
    font-size: 14px;
}

.footer-bottom {
    background: #0056d2;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 40px;
    font-size: 14px;
}

.footer-bottom span {
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}