/*Image Slider*/

.content-box1 {
  background: linear-gradient(#200000, #a60000, #ff4d4d);

  padding: 50px 20px;
  padding-top: 30px;
  text-align: center;
  color: white;
}
p {
  font-family: "Poppins", sans-serif;
  color: #060708;
  font-size: 15px;
  text-align: justify;
  line-height: 25px;
  margin: 5px 0;
  padding: 0;
}
ul li {
  font-family: "Poppins", sans-serif;
  color: #f2f0f0;
  font-size: 15px;
  text-align: center;
  line-height: 25px;
  margin: 5px 0;
  padding: 0;
}
.content-box1 h1 {
  font-size: 3em;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.cards img {
  width: 100%;
  max-width: 450px;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 2em;
  }

  .cards img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .content h1 {
    font-size: 1.8em;
  }

  .cards img {
    max-width: 100%;
  }
}

/*How it work css*/

.how-it-works-wrapper {
  text-align: center;
  padding: 40px;
  background-color: #fffafa;
}

.how-it-works-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #200000;
}

.how-it-works-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.how-it-works-step {
  background: linear-gradient(#f0eded, #f0eded, #f0eded);
  border-radius: 05px;
  padding: 20px;
  text-align: center;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.how-it-works-step:nth-child(2) {
  background-color: #e3f8ff;
}

.how-it-works-step:nth-child(4) {
  background-color: #e0f7eb;
}

.how-it-works-icon {
  background-color: white;
  border-radius: 50%;
  padding: 15px;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.how-it-works-icon i {
  font-size: 24px;
  color: #f2f0f0
}

.how-it-works-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}

.how-it-works-step p {
  font-size: 14px;
  color: white;
}

.how-it-works-arrow {
  font-size: 24px;
  color: #a60000;
}

.how-it-works-arrow i {
  display: block;
  margin: 0 auto;
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .how-it-works-container {
    flex-direction: column;
    gap: 10px;
  }

  .how-it-works-arrow i {
    transform: rotate(90deg);
  }

  .how-it-works-step {
    width: 100%;
  }

  .how-it-works-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .how-it-works-title {
    font-size: 24px;
  }

  .how-it-works-step h3 {
    font-size: 16px;
  }

  .how-it-works-step p {
    font-size: 12px;
  }

  .how-it-works-icon i {
    font-size: 20px;
  }

  .how-it-works-arrow i {
    font-size: 32px;
  }
}

/* Steps Section */

.steps-section {
  padding: 40px 20px;
  background-color: #f8f9fa;
}

/* .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
} */

.image-container img {
  max-width: 100%;
  width: 600px;
  height: auto;
}

.steps-container {
  max-width: 500px;
}

.steps-container h2 {
  color: #200000;
  font-size: 2em;
  margin-bottom: 20px;
}

.steps-list {
  list-style-type: none;
  padding: 0;
}

.steps-list li {
  margin-bottom: 20px;
  font-size: 1em;
}

.steps-list li strong {
  font-size: 1.5em;
  color: #1b1b2f;
}

.steps-list li span {
  color: #cc0000;
}

.refer-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background-color: #cc0000;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.refer-button:hover {
  background-color: #aa0000;
}

@media (max-width: 768px) {
  /* .container {
    flex-direction: column;
    text-align: center;
  } */

  .steps-container h2 {
    font-size: 1.8em;
  }

  .steps-list li {
    font-size: 1.1em;
  }
}

/*FAQ Section*/

.faq-section-box1 {
  padding: 40px 20px;
  max-width: 85%;
  margin: 0 auto;
}

.faq-section-box1 h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  font-weight: bold;
  color: #f2f0f0;
}

.faq-container-box1 {
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-question:after {
  content: "\25bc";
  font-size: 1.2em;
  position: absolute;
  right: 0;
  top: 0;
  color: #f2f0f0;
}

.faq-item.active .faq-question:after {
  content: "\25b2";
  /* Up arrow symbol */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  margin: 0;
  padding: 10px 0;
  line-height: 1.6;
  font-size: 1em;
  color: #555;
}
.alignItemsCenter {
  display: flex;
  align-items: center;
}

.mt-xl {
  margin-top: 30px;
}

/* Row Styles */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0px;
  margin-left: 0px;
}

/* Column Styles */
.col-md-8 {
  flex: 1 0 75%;
  max-width: 75%;
  padding: 15px;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 15px; /* Added padding for spacing */
}

/* Offer Grid Styles */
ul.offerGrid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 25px; /* Space between grid items */
}

ul.offerGrid li {
  position: relative;
  padding: 15px;
  margin-bottom: 5px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Shadow effect */
  transition: transform 0.3s ease; /* Smooth transition on hover */
  width: calc(50% - 12.5px); /* Set width for responsive design */
}

ul.offerGrid li:hover {
  transform: translateY(-10px); /* Lift effect on hover */
}

/* Decorative Elements */
ul.offerGrid li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f57171 /* White background */
  border-radius: 12px;
  z-index: -1; /* Behind content */
  right: 0;
  top: 0;
}

ul.offerGrid li:after {
  content: "";
  position: absolute;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(
    95deg,
    #ffc465,
    #c21605
  ); /* Gradient background */
  border-radius: 12px;
  z-index: -2; /* Behind content */
  right: -1px;
  top: -1px;
  transition: all 0.5s ease;
}

/* Text Styles */
ul.offerGrid li .rupeeText {
  font-size: 32px;
  line-height: 38px;
  color: #c21605; /* Color for price text */
  margin: 0 0 12px;
}

ul.offerGrid li .offerHeading {
  font-size: 22px;
  line-height: 28px;
  color: #f2f0f0; /* Color for heading */
  margin: 0 0 10px;
}

ul.offerGrid li .offerDesc {
  font-size: 16px;
  line-height: 24px;
  color: #575757; /* Color for description */
  margin: 0;
}
.image-container img {
  width: auto;
  height: auto;
}
.steps-cointainer {
  display: flex;
}
.dark {
  max-width: 100%;
  height: auto;
  padding: 20px 40px;
  background-color: #f6f6f6;
}
.container h4 {
  font-size: 30px;
  font-family: "Poppins", sans-serif;

  font-weight: 600;
  letter-spacing: 0;
  color: #f2f0f0
}
.footer_main_div {
  background: #1e1e1e;
  padding: 20px 0px;
  margin-bottom: 0px;
  color: #f57171
  font-size: 14px;
  line-height: 24px;
}
.footer_main_div a {
  color: #f57171
  font-size: 14px;
  line-height: 24px;
}

.row-footer {
  margin: 0 auto;
  max-width: 90%;
}

#cities {
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.text-bold {
  font-weight: bold;
}

.text-upper {
  text-transform: uppercase;
}

.text-small {
  font-size: 14px;
  text-align: center;
}

a {
  color: #f57171
  text-decoration: none;
  margin-right: 5px;
}
hr {
  border: none;
  border-bottom: 2px solid #f57171
  padding-top: 5px;
  padding-bottom: 5px;
}
#routes {
  margin: 0 auto;
  max-width: 90%;
  display: flex;
  justify-content: center;
}
.col-xl-3,
.col-lg-4,
.col-md-6,
.col-sm-6,
.col-12 {
  padding: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: center;
}

h6 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

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

ul li a {
  color: #f57171
  text-decoration: none;
  /* display: block; */
  margin-bottom: 5px;
}
.verticle-center {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
}

.dial-pad {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 20px;
}

.dial-pad a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
}

.dial-pad a img {
  width: 15px;
  height: 15px;
  padding-right: 5px;
}
.show-cities {
  height: 0.5rem;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .show-cities {
    height: 4.5rem;
  }
}
/* Responsive Styles */
@media (max-width: 768px) {
  .col-md-8,
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%; /* Full width on small screens */
  }

  ul.offerGrid li {
    width: calc(45% - 25px); /* Full width with gap */
  }
  .dark {
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  #routes {
    margin: 0 auto;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  h6 {
    margin-top: 15px;
  }
  .dial-pad {
    padding-top: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .faq-section-box1 {
    max-width: 90%;
  }

  .faq-section-box1 h2 {
    font-size: 1.8em;
  }

  .faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .faq-section-box1 {
    max-width: 95%;
  }

  .faq-section-box1 h2 {
    font-size: 1.6em;
  }

  .faq-question {
    font-size: 1em;
  }

  .faq-answer p {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .faq-section-box1 {
    max-width: 100%;
    padding: 20px 10px;
  }

  .faq-section-box1 h2 {
    font-size: 1.4em;
  }

  .faq-question {
    font-size: 0.95em;
  }

  .faq-answer p {
    font-size: 0.9em;
  }
}
@media (max-width: 768px) {
  .steps-cointainer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .image-container {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }

  .image-container img {
    max-width: 100%;
    height: auto;
  }

  .col-12.col-md-8 {
    width: 100%;
    padding: 0 0px;
  }

  .offerGrid {
    padding: 0;
  }

  .offerHeading {
    font-size: 1.2em;
  }

  .offerDesc {
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .offerHeading {
    font-size: 1.1em;
  }

  .offerDesc {
    font-size: 0.9em;
  }
}
.car-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.car-card {
  background-color: #f57171
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  width: 200px;
  transition: transform 0.3s ease;
  padding: 10px;
}

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

.car-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.car-card h3 {
  font-size: 18px;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.car-card .car-seats {
  font-size: 12px;
  background-color: #c21605;
  color: #f57171
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
}

.car-card p {
  font-size: 14px;
  color: #555;
}

.car-fare {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: #f2f0f0;
}

@media (max-width: 768px) {
  .car-card-container {
    flex-direction: column;
    align-items: center;
  }
  .car-card {
    width: 100%;
    max-width: 300px;
  }
}

/* Review Section Styles */
.review-section {
  padding: 20px 20px;
  text-align: center;
  box-shadow: none;
}

.review-section h2 {
  font-size: 22px;
  line-height: 24px;
  font-family: "Droid Sans", sans-serif;
  padding: 0;
  margin: 15px 0;
  text-align: left;
  font-weight: 400;
  color: #f2f0f0;
}

/* Review Container */
.review-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Review Card */
.review-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.reviewer-details h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #c21605;
}

.reviewer-details p {
  font-size: 0.9rem;
  color: #888;
}

.review-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .review-section h2 {
    font-size: 1.5rem;
  }
}

/* Services Section */
.services-section {
  padding: 30px 20px;
  color: #f2f0f0;
  box-shadow: none;
  text-align: center;
}

.services-section h2 {
  font-size: 22px;
  line-height: 24px;
  font-family: "Droid Sans", sans-serif;
  padding: 0;
  margin: 15px 0;
  text-align: left;
  font-weight: 400;
  color: #f2f0f0;
}

/* Services Container */
.services-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Medium size */
  max-width: 1100px;
  margin: 0 auto;
}

/* Service Card */
.service-card {
  background-color: #ffffff;
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: left;
  color: #444;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.icon-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.service-card img {
  width: 60px;
  height: 60px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #f2f0f0 /* Darker Blue */
  text-align: center;
}

.service-card p {
  font-family: "Droid Sans", sans-serif;
  color: #f2f0f0;
  font-size: 15px;
  text-align: justify;
  line-height: 24px;
  margin: 5px 0;
  padding: 0;
}
.star-rating {
  color: gold;
}
/* Responsive Design */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .services-section h2 {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 15px 10px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
  .car-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
.about-content-franchise {
  display: flex;
  background: linear-gradient(
    135deg,
    #f3f4f7,
    #e8eaf6
  ); /* Light gradient background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  /* background: #fff3e6;*/
}

.about-image-franchise img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  margin-top: 40px;
  height: 350px;
  width: 400px;

  border-radius: 20px;
  border-radius: 12px;
}

.about-text-franchise {
  flex: 1;
  margin-top: 40px;
  padding: 20px;
}

.about-text-franchise h2 {
  margin-top: 0;
  font-size: 30px;

  color: #c21605;
  background: ;
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #c21605;
}

.about-text-franchise p {
  padding: 8px;
  font-size: 18px;
  line-height: 1; /* Increase line height for readability */
  color: #f2f0f0; /* Darker text for contrast */
}

@media (max-width: 768px) {
  .about-content-franchise {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .about-image-franchise {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .about-image-franchise img {
    margin-top: 20px;
    width: 90vw; /* Make it responsive for mobile */
  }

  .about-text-franchise {
    margin-top: 20px;
    text-align: center;
  }

  .about-text-franchise h2 {
    font-size: 24px;
    text-align: center;
  }

  .about-text-franchise p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .about-text-franchise h2 {
    font-size: 20px;
  }

  .about-text-franchise p {
    font-size: 14px;
  }

  .about-image-franchise {
    display: flex;
    justify-content: center;
  }
}

/*page-3*/
/* Default Styles */
/* Container Background Animation */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#desc {
  min-height: 100vh;
  padding: 40px 20px;
  background: linear-gradient(
    135deg,
    #ffecd2,
    #fcb69f,
    #fbc2eb
  ); /* Soft, warm gradient */
  background-size: 200% 200%;
  animation: gradientAnimation 10s ease infinite;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Fade-in and Slide-up Animation */

.description-brief-franchise {
  width: 98%;
  margin-top: 0;
  padding: 10px;
  background-color: #e5c1c5;
  border-radius: 20px;
  text-align: center;
  /*animation: fadeInUp 1s ease both;*/
}

.description-brief-franchise h2 {
  font-size: 30px;
  color: #c21605; /* Warm orange color for the heading */
  margin-bottom: 20px;
  border-left: 5px solid #c21605;
  padding-left: 15px;
  padding: 8px 15px;
  border-radius: 8px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}

.description-content-franchise {
  display: flex;
  width: 100%;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 30px;
  /*animation: fadeInUp 1.2s ease both;*/
}

.description-text-franchise {
  flex: 1;
  padding: 10px;
  font-size: 15px;
  line-height: 1;
  color: #f2f0f0;
}

.description-image-franchise {
  flex: 0 0 auto;
  margin-left: 10px;
  /* animation: fadeInUp 1.5s ease both;*/
}

.description-image-franchise img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  /* Border with soft orange color */
}

.full-width-franchise {
  width: 100%;
  margin-top: 0px;
  font-size: 10px;
  line-height: 1;
  color: #f2f0f0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .description-content-franchise {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .description-brief-franchise {
    width: 94%;
  }
  .description-brief-franchise h2 {
    font-size: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .description-text-franchise {
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  .description-image-franchise {
    margin-left: 0;
  }

  .description-image-franchise img {
    width: 100vw;
  }
}

@media (max-width: 480px) {
  .description-brief-franchise h2 {
    font-size: 26px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .description-text-franchise p {
    text-align: left;
  }

  .description-image-franchise img {
    width: 90vw;
  }

  .full-width-franchise {
    margin-top: 15px;
  }
}

/*page 4 content*/
/* Default Styles */
/* Main Container with Gradient Background */
#franchisee-offerings {
  background-color: #e5c1c5;
  border-radius: 20px;
  margin-top: 15px;
  padding: 10px;
}
.franchisee-offerings {
  max-height: 100vh;
  padding: 40px;
  background: linear-gradient(
    135deg,
    #f7f1e3,
    #f3a683
  ); /* Soft pastel gradient background */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Content Wrapper */
.content-wrapper-franchisee {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

/* Left Content Styling */
.left-content-franchisee {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
}

.left-content-franchisee h2 {
  line-height: 1;
  font-size: 30px;
  margin-bottom: 20px;
  color: #c21605; /* Vibrant orange color */
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #c21605;
}

.left-content-franchisee ofo {
  list-style-type: disc;
  margin-top: 0;
  padding-left: 20px;
}

.left-content-franchisee ofo li {
  font-size: 16px;
  color: #f2f0f0;
  margin-bottom: 10px;
}

/* Italic Note Styling */
.cities-note-franchise {
  font-style: italic;
  color: #888;
  margin-top: 20px;
  padding-left: 10px;
}

/* Right Content Styling */
.right-content-franchisee {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 150px;
}

.right-content-franchisee img {
  width: 100%;
  height: auto;
  max-width: 150px;
  border-radius: 12px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .content-wrapper-franchisee {
    flex-direction: column;
    align-items: center;
    /* gap: 30px;*/
  }

  .left-content-franchisee h2 {
    font-size: 28px;
  }

  .right-content-franchisee {
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }

  .right-content-franchisee img {
    max-width: 120px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .content-wrapper-franchisee {
    margin-bottom: 20px;
  }

  .left-content-franchisee h2 {
    font-size: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .left-content-franchisee ofo li {
    font-size: 14px;
  }

  .right-content-franchisee {
    flex-direction: row;
    justify-content: center;
    gap: 5px;
  }

  .right-content-franchisee img {
    max-width: 100px;
  }
}

/*Section 5 */
/* Default Styles */
/* Default Styles */

/* 6-page*/
/* Default Styles */
/* Main Container with Gradient Background */
.benefits-section-franchise {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #fce38a, #f38181); /* Warm gradient */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/* Wrapper */
.benefits-wrapper-franchise {
  display: flex;
  width: 100%;
  align-items: flex-start;
  margin-left: 0px;
}

/* Content Styling */
.benefits-content-franchise {
  width: 100%;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
}

/* Heading Styling */
.benefits-content-franchise h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #c21605; /* Vibrant coral color */
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #c21605;
}

/* Bullet List Styling */
.benefits-list-franchise {
  list-style-type: disc;
  padding-left: 20px;
}

.benefits-list-franchise li {
  color: #f2f0f0;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  padding: 0 0 5px 25px;
  background: url(../images/tick.png) left top 9px no-repeat;
}

/* Image Styling */
.benefits-image-franchise {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.benefits-image-franchise img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .benefits-wrapper-franchise {
    flex-direction: column;
    align-items: center;
  }

  .benefits-content-franchise {
    width: 100%;
    text-align: left;
    margin-top: 20px;
    padding: 20px;
  }

  .benefits-content-franchise h2 {
    font-size: 28px;
  }

  .benefits-list-franchise {
    padding-left: 0;
  }

  .benefits-image-franchise {
    width: 100%;
    margin-top: 20px;
  }

  .benefits-image-franchise img {
    max-width: 80vw;
  }
}

@media (max-width: 480px) {
  .benefits-content-franchise h2 {
    font-size: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .benefits-list-franchise li {
    font-size: 15px;
  }

  .benefits-image-franchise {
    margin-top: 15px;
  }

  .benefits-image-franchise img {
    max-width: 90vw;
    margin-top: 10px;
  }
}

/*7-page*/
/* Main Container */
.revenue-sources-section-franchise {
  background-color: #f57171
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Light shadow */
}

/* Revenue Wrapper */
.revenue-wrapper-franchise {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Mid Content Styling */
.mid-content-franchise {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Left Heading Styling */
.sources-heading-franchise {
  width: 100%;
  text-align: left;
  margin-top: 130px;
}

.sources-heading-franchise h2 {
  margin-left: 40px;
  font-size: 40px;
  line-height: 1.2;
  color: #c21605; /* Coral color for heading */
  /*background: #ffdab9;*/ /* Soft peach background */
  padding: 15px 20px;
  border-radius: 8px;
  display: inline-block;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Bullet List Styling */
.revenue-list-franchise {
  width: 100%;
  display: flex;
  margin-top: 20px;
  border-radius: 10px;
  margin-right: 140px;
}

.revenue-list-franchise rev-franchise {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 15px;
}

.revenue-list-franchise li {
  margin-bottom: 0px;
  font-size: 15px;
  color: #444; /* Dark gray for text */
}

/* Bottom Image Styling */
.bottom-image-revenue-franchise {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  margin-top: 200px;
}

/* Image Size Control */
.bottom-image-revenue-franchise img {
  /* height: auto;*/
  width: 100%;
  /*max-height: 100%;*/
  max-height: 100%;
  max-width: 100%;
  display: block;
  border-radius: 70px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .revenue-wrapper-franchise {
    width: 100%;
  }

  .mid-content-franchise {
    flex-direction: column;
    align-items: flex-start;
  }

  .sources-heading-franchise {
    margin-top: 20px;
  }

  .sources-heading-franchise h2 {
    font-size: 30px;
  }

  .revenue-list-franchise {
    flex-direction: column;
  }

  .bottom-image-revenue-franchise {
    width: 100%;
    /* height: auto;*/
    margin-top: 0px;
  }

  .bottom-image-revenue-franchise img {
    width: 90vw;
    /*height: 50vh;*/
    /*margin-top: 0px;*/
  }
}

@media (max-width: 480px) {
  .sources-heading-franchise h2 {
    font-size: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .revenue-list-franchise rev-franchise {
    padding-left: 0px;
  }

  .revenue-list-franchise li {
    font-size: 15px;
    text-align: left;
  }

  .bottom-image-revenue-franchise {
    display: flex;
    justify-content: center;
  }

  .bottom-image-revenue-franchise img {
    max-width: 90vw;
  }
}

/*8-page*/
/* Company Support Section Styling */
/* Company Support Section Styling */
/* Company Support Section Styling */
.company-support-section {
  padding: 40px;
  background-color: #f57171
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

/* Content Wrapper */
.content-wrapper-support {
  width: 100%;
  margin: 0 auto;
  display: flex;
}

/* Left Content Styling */
.left-content-support {
  width: 80%;
  text-align: left;
  margin-top: 20px;
  border-radius: 10px;
}

.left-content-support h2 {
  /*margin-left: 18px;*/
  font-size: 30px;
  line-height: 1;
  margin-bottom: 20px;
  color: #c21605; /* Coral color for heading */
  padding: 15px 20px;
  border-radius: 8px;
  display: inline-block;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
  border-left: 5px solid #c21605;
}

/* Bullet List Styling */
.left-content-support cs {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 2;
}

.left-content-support li {
  margin-bottom: 0px;
  font-size: 15px;
  color: #444; /* Dark gray for text */
}

/* Right Image Styling */

.right-image-support {
  display: flex;
  margin-top: 20px;
}

.right-image-support img {
  width: 100%;
  height: 280px;
  display: block;
  max-height: 100%;
  max-width: 100%;
  border-radius: 45px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .content-wrapper-support {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .left-content-support {
    width: 100%;
    margin-top: 50px;
  }

  .right-image-support {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .right-image-support img {
    width: 90vw;
    /* height: auto;*/
  }
}

@media (max-width: 480px) {
  .left-content-support h2 {
    font-size: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .left-content-support cs {
    padding-left: 0;
    text-align: left;
  }

  .right-image-support img {
    width: 90vw;
    border-radius: 25px; /* Adjust border radius for smaller screens */
  }
}

/*page -9*/
/* Summary Section Styling */
.summary-section {
  padding: 40px;
  background-color: #f57171
  min-height: 100vh; /* Full viewport height */
  display: flex; /* Flexbox for layout */
  align-items: flex-start; /* Align items at the start */
}

/* Summary Wrapper */
.summary-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex; /* Flexbox for horizontal alignment */
}

/* Left Content Styling */
.summary-text {
  width: 100%; /* Take 60% of the width */
  text-align: left;
  margin-top: 0px;
}

.summary-content {
  display: flex;
  margin-top: 20px;
}

.summary-text h2 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
  margin-bottom: 20px;
  color: #c21605;
  padding: 15px 20px;
  border-radius: 8px;
  display: inline-block;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #c21605;
}

.summary-text p {
  margin-bottom: 10px; /* Space between paragraphs */
  padding-left: 10px;
  padding-right: 10px;
}

/* Right Image Styling */
.summary-image {
  /* Take 35% of the width */
  display: flex; /* Flexbox for center alignment */
  align-items: left; /* Center the image vertically */
  justify-content: left; /* Center the image horizontally */
  margin-top: 100px;
}

.summary-image img {
  width: 150px; /* Set width to 150 pixels */
  height: 150px; /* Set height to 150 pixels */
  display: block; /* Block display for proper alignment */
  border-radius: 30px;
  max-height: 100%; /* Ensure the image height does not exceed the container */
  max-width: 100%; /* Ensure the image width does not exceed the container */
}

.summary-image1 {
  /* Adjust this value for spacing between summary-content and summary-image1 */
  margin-top: 50px;
  /*width: 100vw; */
}

.summary-image1 img {
  width: 100%; /* Make image responsive */
  height: auto; /* Maintain aspect ratio */
  width: 200px; /* Set width to 200 pixels */
  height: 270px;
  display: block;
  border-radius: 30px;
  max-height: 100%; /* Ensure the image height does not exceed the container */
  max-width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .summary-wrapper {
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center items */
    width: 100%; /* Full width on smaller screens */
  }

  .summary-text {
    width: 100%; /* Full width for text */
    margin-top: 20px; /* Reduce top margin */
    text-align: center; /* Center text */
  }

  .summary-image {
    /* Full width for images */
    /*display:flex;*/
    /* justify-content: center;*/ /* Center images */
    margin-top: 120px; /* Reduce margin top */
  }

  .summary-image img,
  .summary-image1 img {
    width: 100vw; /* Make images responsive */
    /*height: auto;*/ /* Maintain aspect ratio */
    /* max-height:*/ /* Limit height on smaller screens */
  }
}

@media (max-width: 480px) {
  .summary-text h2 {
    font-size: 20px; /* Reduce heading font size */
    text-align: center;
  }
  .summary-content {
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center items */
    width: 100%; /* Full width on smaller screens */
  }

  .summary-image img {
    width: 90vw; /* Set images to full width */
    /* height:auto;*/
    /* Maintain aspect ratio */
  }
  .summary-text p {
    text-align: left;
  }
  .summary-image1 img {
    width: 85vw; /* Set images to full width */
    /*height: auto;*/ /* Maintain aspect ratio */
    border-radius: 25px;
  }
}

/*pages-10*/
.achievements-franchise {
  min-height: 100vh; /* Full viewport height for the section */
  padding: 20px;
  background: #f57171
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: flex-start; /* Align content to the top */
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

/* Achievements Section Styles */
.achievements-wrapper-franchise {
  width: 100%;
  padding: 20px;
  margin: 10px auto;
}

.achievements-content-franchise {
  display: flex;
  width: 100%;
  align-items: flex-start;
  margin-bottom: 20px;
}

.achievements-text-franchise {
  flex: 1;

  padding-right: 20px;
  text-align: left;
  margin-left: 150px;
  font-size: 15px;
}

.achievements-text-franchise h2 {
  margin-left: 0px;
  font-size: 30px;
  color: #e17055; /* Coral color for heading */

  border-radius: 8px;

  margin-bottom: 20px;
  color: #c21605;
  padding: 15px 20px;
  border-radius: 8px;
  display: inline-block;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #c21605;
}

.achievements-text-franchise h4 {
  margin-left: 0px;
  font-size: 25px;
  color: #444; /* Dark gray for text */
  border-radius: 8px;
}

/* Achievements Image Styling */
.achievements-image-franchise {
  flex: 0 0 auto;
  margin-left: 30px;
  margin-top: 80px;
}

.achievements-image-franchise img {
  width: 100%;
  height: auto;
  width: 300px;
  height: 350px;
  border-radius: 40px;
  max-height: 100%;
  max-width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .achievements-wrapper-franchise {
    width: 100%;
    margin: 0px 0px;
  }

  .achievements-content-franchise {
    flex-direction: column;
    align-items: center;
  }

  .achievements-text-franchise {
    margin-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .achievements-image-franchise {
    margin-left: 0;
    margin-top: 0px;
    display: flex;
    justify-content: center;
  }

  .achievements-image-franchise img {
    width: 100vw;
    /* height: auto;*/
  }
}

@media (max-width: 480px) {
  .achievements-text-franchise h2 {
    font-size: 28px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .achievements-text-franchise h4 {
    font-size: 18px;
    text-align: center;
  }

  .achievements-text-franchise {
    margin-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .achievements-image-franchise {
    display: flex;
    justify-content: center;
  }

  .achievements-image-franchise img {
    width: 85vw;
    /*height: auto;*/
    /* border-radius: 25px;*/
  }
}
/* Default: Hide mobile image and show desktop image */
.desktop-only {
  display: block;
  max-width: 100%; /* Ensure the image fits within its container */
  height: auto; /* Maintain aspect ratio */
}

.mobile-only {
  display: none;
  max-width: 100%; /* Ensure the image fits within its container */
  height: auto; /* Maintain aspect ratio */
}

/* Media query for mobile screens */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

/* Franchise Table Styles */
.franchise-wrapper {
  width: 100%;
  /* overflow-x: auto;*/
  border-radius: 8px;
  /* Slightly stronger shadow for depth */
}

.franchise-table {
  width: 100%;
  min-width: 1200px;
  border-collapse: collapse;
}

.franchise-header {
  background-color: #c21605; /* Fresh green background */
  color: white; /* White text for good contrast */
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border: 1px solid #ddd;
}

.franchise-cell {
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
  color: #f2f0f0 /* Dark text color for better readability */
}

.franchise-row:nth-child(even) {
  background-color: #f2f2f2; /* Light gray for alternate rows */
}

.franchise-row:hover {
  background-color: #e8f5e9; /* Light green hover effect for interactivity */
}

.franchise-first-column {
  font-weight: bold;
  text-align: center;
  color: #c21605; /* Blue for emphasis */
}

.franchise-italic {
  font-style: italic;
  color: #f2f0f0 /* Light gray for italic text */
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .franchise-wrapper {
    margin: 0 -20px;
    border-radius: 0;
    overflow-x: auto;
  }

  .franchise-cell,
  .franchise-header {
    padding: 8px;
    font-size: 14px;
  }

  .franchise-header {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .franchise-wrapper {
    margin: 0;
    overflow-x: auto;
  }

  .franchise-cell,
  .franchise-header {
    padding: 6px;
    font-size: 12px;
  }

  .franchise-header {
    font-size: 14px;
  }
}
#benefits-section-franchise {
  padding: 10px;
  margin-top: 10px;
  background-color: #e5c1c5;
  border-radius: 20px;
}
.content {
  max-width: 1200px;
  margin: auto;
}

summary {
  cursor: pointer;
  padding: 10px 0;
  list-style: none;
}

details[open] summary::after {
  content: " (Read Less)";
}

details:not([open]) summary::after {
  content: " (Read More)";
}

summary::after {
  color: #007bff;
}
