@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid rgb(255, 25, 0); */
}

body {
  font-family: "Montserrat";
  line-height: 1.6;
  color: #333;
}

p,
label {
  font-family: "poppins";
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
a,
input[type="submit"] {
  font-family: "Montserrat";
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  padding: 0 80px;
  display: flex;
	align-items: center;
  background: #ffffff;
  height: 90px;
  width: 100%;
  color: #000000;
}

.logo {
  display: inline-flex;
}

.logo img {
  width: 160px;
  /* margin-left: 50px; */
  padding: 10px;
  /* width: 55%; */
}

nav ul {
  float: right;
  margin-right: auto;
  margin-bottom: 0;
}

nav ul li {
  display: inline-block;
  line-height: 90px;
}

nav ul li a {
  color: rgb(0, 0, 0);
  font-size: 17px;
  padding: 0px 10px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Montserrat";
}

.checkbtn {
  font-size: 22px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 30px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

nav button {
  padding: 14px 18px;
  font-size: 17px;
  font-weight: 600;
  background-color: #ff944b;
  border-radius: 5px;
  border: none;
  color: #ffffff;
}

@media (max-width: 1050px) {
  nav ul li a {
    font-size: 16px;
  }
}

.checkbtn i {
  color: #fd8d2b;
}

/* Responsive media query code for small screen */
@media (max-width: 921px) {
  .navcta {
    display: none;
  }

  nav {
    padding: 0 20px;
  }

  nav .checkbtn {
    display: block;
    display: block;
    float: right;
    position: absolute;
    right: 0;
    top: 10%;
  }

  nav ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 90px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
    padding-left: 0 !important;
  }

  nav ul li {
    display: block;
    line-height: 4;
    border-top: 1px solid #f0f8ff1c;
    margin: auto;
  }

  nav ul li a {
    font-size: 18px;
    color: #ff9900;
  }

  #check:checked ~ ul {
    left: 0;
  }
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: #f8f9fa;
}

.why-choose-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.why-choose-text p {
  font-size: 1.1rem;
  color: #797979;
  margin-bottom: 30px;
  line-height: 1.6;
}

.feature-list {
  display: grid;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon img {
  width: 70px;
}

.feature-content h3 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
}

.feature-content p {
  color: #929292;
  font-size: 16px;
  line-height: 1.4;
}

/* Featured Categories */
.featured-categories {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.fcardcompaire {
  right: 0;
  position: absolute;
  top: 0;
  padding: 10px;
  background-color: #ff723b;
  cursor: pointer;
  border-bottom-left-radius: 20px;
}

.fcardcompaire i {
  font-size: 16px;
  color: #ffffff;
}

.category-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-icon img {
  width: 200px;
  margin-bottom: 10px;
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.category-card p {
  color: #a0a0a0;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 17px;
}

.category-stats {
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stat {
  text-align: center;
}

.stat-number {
  font-weight: 600;
}

.stat-number span {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000000;
}

.stat-label {
  font-size: 1.5rem;
  color: #666;
}

.category-btn {
  background: #ff944b;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  width: 100%;
  font-size: 18px;
}

.category-btn input {
  width: 16px;
  height: 16px;
}

.category-btn:hover {
  background: #ff6a07;
}

/* Compare Section */
.compare-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.compare-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.compare-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.compare-text p {
  font-size: 1rem;
  color: #a1a1a1;
  margin-bottom: 20px;
  line-height: 1.8;
}

.compare-list {
  list-style: none;
  margin-bottom: 30px;
}

.compare-list li {
  padding: 8px 0;
  font-size: 1.05rem;
  font-weight: 600;
}

compare-list li span {
  color: #fd7a2e;
}

.compare-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compare-section button,
.cta-button {
  padding: 15px 18px;
  font-size: 17px;
  font-weight: 600;
  background-color: #ff944b;
  border-radius: 5px; 
  border: none;
  color: #ffffff;
}

/* Brokers Section */
.brokers-section {
  padding: 80px 0;
  background: url("https://www.myidealfranchise.com/wp-content/themes/myidealfranchise/assets/images/Group6073.png");
  background-size: cover;
  color: white;
  position: relative;
  background-attachment: fixed;
}

.brokers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.brokers-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ff6b35;
  font-weight: 700;
}

.brokers-text h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.brokers-text p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #cecece;
}

.broker-features h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #dfdedd;
  font-weight: 700;
}

.broker-features ul {
  list-style: none;
  margin-bottom: 30px;
}

.broker-features li {
  padding: 5px 0;
  font-size: 1.05rem;
}

.brokers-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Sell Franchise Section */
.sell-franchise {
  padding: 80px 0;
  background: white;
}

.section-subtitle {
  font-size: 1rem;
  color: #a1a1a1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.franchise-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.franchise-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.franchise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* .franchise-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
} */

.franchise-info {
  padding: 20px;
}

.franchise-info h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

.franchise-info p {
  color: #666;
  margin-bottom: 15px;
}

.franchise-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #414141;
  margin-bottom: 15px;
}

.franchise-btn {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  width: 100%;
}

.franchise-btn:hover {
  background: #e5562d;
}

.sell-cta {
  text-align: center;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Journey Section */
.journey-section {
  padding: 80px 0;
  background: url("../images/white-wavy-lines-white-background_483537-4323.png");
  background-attachment: fixed;
}

.journey-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.journey-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}

.journey-text h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #4b4b4b;
  font-weight: 700;
}

.journey-text p {
  font-size: 1rem;
  color: #7a7a7a;
  margin-bottom: 20px;
  line-height: 1.8;
}

.journey-text ul {
  list-style: none;
  margin-bottom: 30px;
}

.journey-text li {
  padding: 5px 0;
  color: #333;
  font-size: 1.05rem;
  font-weight: 600;
}

.journey-image {
  position: relative;
}

.journey-image a {
  position: absolute;
}

.journey-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ba1f24;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #fa183d;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: #da0528;
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #ff6b35;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

/* CTA Banner */
.cta-banner {
  background: #ff6b35;
  color: white;
  padding: 60px 0;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button-alt {
  background: white;
  color: #ff6b35;
  border: none;
  padding: 18px 10px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-button-alt:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #ff6b35;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
  padding: 5px 0;
  font-size: 16px;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #555;
}

.footer-links {
  display: flex;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .why-choose-content,
  .compare-content,
  .brokers-content,
  .journey-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .franchise-listings {
    grid-template-columns: 1fr;
  }

  .faq-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

/* @media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .category-stats {
    flex-direction: column;
    gap: 15px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
} */

/* Detail styling */
.details {
  --padding: 10px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(80, 80, 80, 0.2);
}

.details + .details {
  margin-top: 25px;
}

.details__title {
  --width: 15px;
  --height: 3px;
  --radius: 1px;
  --color: currentColor;
  margin: 0;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  font-size: 20px;
  font-weight: 600;
}

.details__title:before,
.details__title:after {
  content: "";
  display: block;
  width: var(--width);
  height: var(--height);
  background-color: var(--color);
  position: absolute;
  border-radius: var(--radius);
  top: calc(50% - (var(--height) / 2));
  right: calc(var(--width) / 2);
  transition: all 0.2s ease-in-out;
}

.details__title:after {
  rotate: 90deg;
}

.details__container[open] .details__title:before {
  rotate: 45deg;
  /* rotate: 135deg; */
}

.details__container[open] .details__title:after {
  rotate: 135deg;
  /* rotate: 225deg; */
}

.details__container[open] .details__title {
  background-color: #ff6b35;
}

.details__summary {
  background-color: #ff9735;
}

.details__summary::marker {
  content: "";
}

.details__desc {
  visibility: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  padding-inline: var(--padding);
  pointer-events: none;
}

.details__container[open] + .details__desc {
  visibility: visible;
  grid-template-rows: 1fr;
  padding-block: var(--padding);
}

.details__desc-inner {
  min-height: 0;
  font-size: 17px;
}

.carousel-control-prev {
  background-color: rgb(255, 140, 0) !important;
  height: 60px !important;
  width: 60px !important;
  top: 50% !important;
  left: 3% !important;
  border-radius: 50px;
}

.carousel-control-next {
  background-color: rgb(255, 140, 0) !important;
  height: 60px !important;
  width: 60px !important;
  top: 50% !important;
  right: 3% !important;
  border-radius: 50px;
}

.carousel-caption {
  width: 65%;
  margin: auto;
}

.kenburns-top {
  position: relative;
}

.kenburns-top::before {
  position: absolute;
  content: "";
  background-color: #0000005d;
  width: 100%;
  height: 850px;
  top: 0;
  left: 0;
  z-index: 1;
}

.carousel-caption {
  top: 30%;
}

.carousel-caption h1 {
  font-size: 70px;
  font-weight: 700;
  font-family: "Montserrat";
}

.carousel-caption p {
  font-size: 20px;
}

.cta-btn {
  background: #ff6b35;
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  font-size: 18px;
  text-decoration: none;
}

.cta-btn a {
  text-decoration: none;
  color: #ffffff;
}

.navcta button:nth-child(2) {
  margin-left: 10px;
}

.carousel-item {
  height: 850px;
  overflow: hidden;
  background-size: cover;
}

.carousel-caption {
  bottom: 0 !important;
}

.kenburns-bottom img {
  width: 100%;
}

.carousel-item img {
  height: 850px;
  width: 100%;
  background-size: auto;
}

.kenburns-top {
  -webkit-animation: kenburns-top 3s ease-out both;
  animation: kenburns-top 3s ease-out both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-7-4 13:35:17
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation kenburns-top
 * ----------------------------------------
 */
@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }

  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%;
  }

  100% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

/* inner about us */

/* Hero Section */
.hero {
  height: 450px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/silhouette-business-people-discussion-meeting-cityscape-team-concept.png")
      center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  margin-top: 100px;
}

.breadcrumb {
  font-size: 1.4rem;
  opacity: 0.9;
  justify-content: center;
  font-weight: 600;
}

.breadcrumb-link {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb-link:hover {
  opacity: 0.8;
}

.breadcrumb-separator {
  margin: 0 0.5rem;
}

/* Main Content Section */
.main-content {
  padding: 80px 0;
  background: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.description {
  font-size: 1rem;
  color: #7c7c7c;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.mission-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.mission-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  color: #1a1a1a;
}

.mission-section p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  color: #666;
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: grayscale(100%);
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: #f8f9fa;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ff6b35;
}

.step h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.step p {
  color: #666;
  line-height: 1.6;
}

/* Info Sections */
.info-sections {
  padding: 80px 0;
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 8px;
}

.info-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.info-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  color: #1a1a1a;
}

.info-card p {
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.info-card ul li {
  color: #888888;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  font-size: 18px;
}

.info-card ul li::before {
  content: "•";
  color: #ff6b35;
  position: absolute;
  left: 0;
}

.small-text {
  font-size: 0.9rem;
  font-style: italic;
}

/* Partnerships Section */
.partnerships {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.partnerships h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.partnerships-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.partnership-card {
  background: #ff6b35;
  color: white;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.partnership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.partnership-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .partnerships-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partnership-card:nth-child(4) {
    grid-column: 1 / 3;
  }

  .partnership-card:nth-child(5) {
    grid-column: 3 / 4;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partnerships-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .main-heading {
    font-size: 2rem;
  }

  .how-it-works h2,
  .partnerships h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .step {
    padding: 1rem;
  }
}

/* Animation classes */
.fade-in {
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* franchior */

/* Partnerships Section */
.casestudy {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.casestudy h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.casestudy-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.casestudy_card {
  background: #ffffff;
  color: #ff6b35;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: underline;
}

.casestudy_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.casestudy_card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}

/* learning section */

.learning {
  padding: 80px 0;
}

/* Video Grid Styles */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.video-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-top: 50px;
}

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

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e0e0e0;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #ff7f50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.play-button:hover {
  background: #ff6347;
}

.play-button svg {
  margin-left: 3px;
}

.video-title {
  padding: 15px;
  background: #ff7f50;
  color: white;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
}

/* Search Section */
.search-section {
  margin-bottom: 40px;
}

.search-container {
  display: flex;
  max-width: 100%;
  gap: 10px;
}

#searchInput {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 17px;
}

#searchInput:focus {
  outline: none;
  border-color: #ff7f50;
}

.search-btn {
  padding: 12px 24px;
  background: #ff7f50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background: #ff6347;
}

.search-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Content Section */
.content-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Featured Articles */
.featured-articles h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 30px;
  font-weight: 700;
}

.article-card {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin: 50px 0 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.article-image {
  flex-shrink: 0;
  width: 250px;
  height: auto;
  background: #e0e0e0;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 20px;
  flex: 1;
}

.article-content h3 {
  margin-bottom: 10px;
  color: #333;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.article-content p {
  color: #b1b1b1;
  font-size: 16px;
  line-height: 1.7;
}

/* Sidebar */
.sidebar-section {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-section h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 22px;
  border-bottom: 2px solid #ff7f50;
  padding-bottom: 10px;
  font-weight: 600;
}

.sidebar-section ul,
.sidebar-section ol {
  list-style: none;
}

.sidebar-section ol {
  counter-reset: item;
}

.sidebar-section ol li {
  counter-increment: item;
  margin-bottom: 8px;
  padding: 10px 0;
}

.sidebar-section ol li:before {
  content: counter(item) ". ";
  font-weight: bold;
  color: #ff7f50;
}

.sidebar-section ul li {
  margin-bottom: 8px;
  position: relative;
  padding: 10px 0 10px 15px;
}

.sidebar-section ul li:before {
  content: "•";
  color: #ff7f50;
  position: absolute;
  left: 0;
}

.sidebar-section a {
  color: #333;
  transition: color 0.3s ease;
  font-style: 18px;
  font-weight: 600;
  padding: 10px 0;
}

.sidebar-section a:hover {
  color: #ff7f50;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    grid-template-columns: 1fr;
  }

  .search-container {
    flex-direction: column;
  }

  .article-card {
    flex-direction: column;
  }

  .article-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .video-title {
    font-size: 18px;
    padding: 18px;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .article-content {
    padding: 15px;
  }

  .sidebar-section {
    padding: 15px;
  }
}

.contact-us {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .image-section {
  background: url('https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Contact%20us-uJ0syq1jnVO7Wl58LeTQIGRovUaBmK.png') center/cover;
  position: relative;
} */

.contact-us h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-us p {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f6ad55;
  background: white;
  box-shadow: 0 0 0 3px rgba(246, 173, 85, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 173, 85, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.contact-info {
  border-top: 1px solid #e2e8f0;
  padding-top: 30px;
}

.contact-info h3 {
  color: #2d3748;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.contact-info h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
  border-radius: 2px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #f6ad55;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 20px;
}

.contact-details {
  margin-top: 20px;
}

.contact-details h4 {
  color: #2d3748;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-details p {
  color: #718096;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.4;
}

/* Loading animation for form submission */
.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* compaire */

.compaire {
  margin-bottom: 40px;
}

.compaire h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  text-align: center;
}

.compaire p {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 25px;
}

.franchise-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  margin-top: 50px;
}

.deleticon {
  content: "";
  position: absolute;
  top: 0;
  height: auto;
  right: 0;
  padding: 15px;
  background-color: #ffffff;
  color: #ff0000;
  cursor: pointer;
  border-bottom-left-radius: 10px;
}

.franchise-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.add-card {
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border: 2px dashed #ddd;
  background: #f8f9fa;
}

.add-card:hover {
  border-color: #007bff;
  background: #f0f8ff;
}

.add-content {
  text-align: center;
  color: #6c757d;
  background-color: #ffffff;
  padding: 35px;
  padding-bottom: 50px;
  cursor: pointer;
}

.plus-icon {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 12px;
  color: #007bff;
}

.add-content p {
  font-size: 1.1rem;
  font-weight: 500;
}

.franchise-logo {
  padding: 24px;
  text-align: center;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.franchise-logo img {
  height: 150px;
  object-fit: contain;
}

.franchise-details {
  padding: 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #e9ecef;
}

.detail-row.alt {
  background-color: #f8f9fa;
}

.detail-row:last-child {
  border-bottom: none;
}

.label {
  font-weight: 500;
  color: #495057;
  font-size: 1rem;
  font-weight: 600;
}

.value {
  font-weight: 600;
  color: #2c3e50;
  text-align: right;
  font-size: 1rem;
}

.view-more-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-more-btn:hover {
  background: linear-gradient(135deg, #e67e22, #d35400);
}

.view-more-btn:active {
  transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px 16px;
  }

  .franchise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .value {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .plus-icon {
    font-size: 2.5rem;
  }

  .detail-row {
    padding: 10px 16px;
  }

  .view-more-btn {
    padding: 14px;
  }
}

.list_franchise {
  margin-bottom: 40px;
  padding: 80px 0;
}

.list_franchise h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 16px;
  text-align: center;
}

.list_franchise p {
  font-size: 1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.form-container {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: left;
  border-bottom: 2px solid #e7e7e7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.list_franchise label {
  font-weight: 600;
  color: #616060;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.list_franchise input[type="text"],
.list_franchise input[type="email"],
.list_franchise input[type="tel"],
.list_franchise input[type="url"],
.list_franchise input[type="number"],
.list_franchise select,
textarea {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f9fafb;
  transition: all 0.2s ease;
}

.list_franchise input[type="text"]:focus,
.list_franchise input[type="email"]:focus,
.list_franchise input[type="tel"]:focus,
.list_franchise input[type="url"]:focus,
.list_franchise input[type="number"]:focus,
.list_franchise select:focus,
textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.list_franchise select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.upload-area {
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  background-color: #f9fafb;
  cursor: pointer;
  transition: all 0.2s ease;
}

.upload-area:hover {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

.upload-text {
  color: #6b7280;
  font-size: 0.95rem;
}

.checkbox-section {
  margin-bottom: 30px;
}

.checkbox-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 16px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #3b82f6;
}

.checkbox-item label {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.consent-section {
  margin-bottom: 30px;
}

.consent-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 16px;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.consent-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #3b82f6;
}

.consent-item label {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
  font-size: 0.95rem;
}

.submit-btn {
  background-color: #f59e0b;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background-color: #d97706;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .container {
    padding: 20px 16px;
  }

  .form-container {
    padding: 24px;
  }

  .header h1 {
    font-size: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* recommend */

.Recommendations {
  margin: 0 auto;
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.Recommendations h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  text-align: center;
}

.Recommendations p {
  font-size: 16px;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.form-section {
  margin-bottom: 40px;
}

/* .section-title {
  font-size: 20px;
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.section-number {
  margin-right: 8px;
} */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f9fafb;
  transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #f59e0b;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: #f59e0b;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  background-color: #d97706;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* @media (max-width: 768px) {
  .Recommendations {
    padding: 40px 24px;
  }

  .header h1 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-title {
    font-size: 16px;
  }
} */

.success-message {
  display: none;
  background-color: #d1fae5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.error-message {
  display: none;
  background-color: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.Featured_Franchise .sidebar {
  background-color: #f8f8f8;
  padding: 30px 20px;
  border-right: 1px solid #e0e0e0;
}

.Featured_Franchise .sidebar h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.Featured_Franchise .sidebar h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 15px 0;
  color: #333;
}

.Featured_Franchise .sidebar ul {
  list-style: none;
}

.Featured_Franchise .sidebar li {
  margin-bottom: 20px;
}

.Featured_Franchise .sidebar a {
  color: #333;
  text-decoration: underline;
  font-size: 18px;
  display: block;
  padding: 2px 0;
}

.Featured_Franchise .sidebar a:hover {
  color: #c41e3a;
}

/* .main-content {
  flex: 1;
  padding: 30px 40px;
} */

.company-description {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.facts-figures {
  background-color: #f0e6d6;
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.facts-figures h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.facts-table {
  width: 100%;
}

.facts-table tr {
  border-bottom: 1px solid #d0c4b0;
}

.facts-table td {
  padding: 8px 0;
  font-size: 14px;
}

.facts-table td:first-child {
  color: #666;
}

.facts-table td:last-child {
  text-align: right;
  font-weight: bold;
  color: #333;
}

.info-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #999;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  margin-left: 5px;
  cursor: help;
}

.Featured_Franchise .content-section {
  margin: 40px 0;
}

.Featured_Franchise .content-section h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.Featured_Franchise .content-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 15px;
}

.additional-info {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    padding: 20px;
  }

  .main-content {
    padding: 20px;
  }

  .logo-section {
    flex-direction: column;
    text-align: center;
  }
}

#history h5,
#cost h5,
#business h5 {
  font-weight: 700;
  margin-top: 10px;
}

.Featuredlogo-section img {
  width: 150px;
  margin-bottom: 30px;
}

/* ===== BASE STYLES ===== */

.franchise-directory-home-section {
  padding: 80px 0;
}

.franchise-directory {
  font-family: "poppins";
  color: #333;
  font-size: 13px;
}

.franchise-directory__container {
  display: inline-flex;
  min-height: 100vh;
  position: relative;
}

.franchise-directory__sidebar-menu {
  padding-left: 0px !important;
  margin-bottom: 0;
}

/* ===== SIDEBAR COMPONENT ===== */
.franchise-directory__sidebar {
  width: 260px;
  background-color: #fff;
  border-right: 1px solid #ddd;
  padding: 0;
  flex-shrink: 0;
}

.franchise-directory__sidebar-section {
  margin-bottom: 0;
  border-bottom: 1px solid #e0e0e0;
}

.franchise-directory__sidebar-section:last-child {
  border-bottom: none;
}

.franchise-directory__sidebar-title {
  background-color: #ff6b35;
  color: white;
  padding: 20px;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  position: relative;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.2s ease;
}

.franchise-directory__sidebar-title:hover {
  background-color: #ff6b35;
}

.franchise-directory__sidebar-title::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid white;
  transition: transform 0.3s ease;
}

.franchise-directory__sidebar-title--collapsed::after {
  transform: translateY(-50%) rotate(-90deg);
}

.franchise-directory__sidebar-title--no-arrow::after {
  display: none;
}

/* ===== SIDEBAR MENU COMPONENT ===== */
.franchise-directory__sidebar-menu {
  list-style: none;
  background-color: #f8f8f8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.franchise-directory__sidebar-menu--expanded {
  max-height: 500px;
}

.franchise-directory__sidebar-menu-item {
  border-bottom: 1px solid #e0e0e0;
}

.franchise-directory__sidebar-menu-item:last-child {
  border-bottom: none;
}

.franchise-directory__sidebar-menu-link {
  display: block;
  padding: 15px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: all 0.2s ease;
}

.franchise-directory__sidebar-menu-link::after {
  content: "›";
  position: absolute;
  right: 15px;
  color: #999;
  font-size: 14px;
}

.franchise-directory__sidebar-menu-link:hover {
  background-color: #f0f0f0;
  color: #333;
}

.franchise-directory__sidebar-menu-link--active {
  background-color: #e8f4fd;
  color: #1976d2;
  font-weight: bold;
}

/* ===== SIDEBAR CONTENT COMPONENT ===== */
.franchise-directory__sidebar-content {
  background-color: #f8f8f8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.franchise-directory__sidebar-content--expanded {
  max-height: 500px;
  overflow: scroll;
}

.franchise-directory__sidebar-content-item {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.franchise-directory__sidebar-content-item:hover {
  background-color: #f0f0f0;
  color: #333;
}

.franchise-directory__sidebar-content-item:last-child {
  border-bottom: none;
}

.franchise-directory__sidebar-content-item--active {
  background-color: #e8f4fd;
  color: #1976d2;
  font-weight: bold;
}

/* ===== MAIN CONTENT COMPONENT ===== */
.franchise-directory__main-content {
  flex: 1;
  padding: 0 20px 20px 20px;
  background-color: #fff;
}

.franchise-directory__page-header {
  margin-bottom: 20px;
}

.franchise-directory__page-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  text-transform: capitalize;
}

/* ===== FILTER SECTION COMPONENT ===== */
.franchise-directory__filter-section {
  background-color: #e8e8e8;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 0;
  border: 1px solid #d0d0d0;
}

.franchise-directory__filter-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.franchise-directory__filter-controls {
  display: flex;
  gap: 10px;
  align-items: end;
  flex-wrap: wrap;
  margin: auto;
  text-align: center;
  justify-content: center;
}

.franchise-directory__filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.franchise-directory__filter-label {
  font-size: 10px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}

.franchise-directory__filter-select {
  padding: 18px 30px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: white;
  font-size: 16px;
}

.franchise-directory__filter-select:focus {
  outline: none;
  border-color: #e53e3e;
}

.franchise-directory__filter-button {
  background-color: #e53e3e;
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.franchise-directory__filter-button:hover {
  background-color: #d32f2f;
}

.franchise-directory__filter-button:active {
  background-color: #c62828;
}

/* ===== SEARCH SECTION COMPONENT ===== */
.franchise-directory__search-section {
  background-color: #e8e8e8;
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 0;
  border: 1px solid #d0d0d0;
}

.franchise-directory__search-title {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  text-transform: uppercase;
}

.franchise-directory__search-bar {
  display: flex;
  gap: 0;
  max-width: 400px;
}

.franchise-directory__search-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 0;
  font-size: 12px;
  height: 55px !important;
}

.franchise-directory__search-input:focus {
  outline: none;
  border-color: #e53e3e;
}

.franchise-directory__search-button {
  background-color: #666;
  color: white;
  border: 1px solid #666;
  padding: 24px 27px;
  border-radius: 10px;
  cursor: pointer;
  height: 54px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

/* ===== FRANCHISE GRID COMPONENT ===== */
.franchise-directory__franchise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.franchise-directory__franchise-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  position: relative;
}

.franchise-directory__franchise-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.franchise-directory__franchise-logo {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.franchise-directory__franchise-card h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}

.franchise-directory__franchise-card h5 span {
  font-size: 17px;
  font-weight: 600;
}

.franchise-directory__franchise-logo-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.franchise-directory__franchise-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.franchise-directory__franchise-description {
  font-size: 16px;
  color: #939393;
  line-height: 1.4;
  margin-bottom: 15px;
  overflow: hidden;
}

.franchise-directory__franchise-button {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 18px 20px;
  border-radius: 0;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.franchise-directory__franchise-button--added {
  background-color: #4caf50;
}

/* ===== PAGINATION COMPONENT ===== */
.franchise-directory__pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.franchise-directory__pagination-info {
  font-size: 12px;
  color: #666;
  font-weight: bold;
}

.franchise-directory__pagination-controls {
  display: flex;
  gap: 2px;
}

.franchise-directory__pagination-button {
  background-color: white;
  border: 1px solid #ddd;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
  border-radius: 0;
  min-width: 30px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.franchise-directory__pagination-button:hover {
  background-color: #f5f5f5;
}

.franchise-directory__pagination-button--active {
  background-color: #e53e3e;
  color: white;
  border-color: #e53e3e;
}

.franchise-directory__pagination-button--prev,
.franchise-directory__pagination-button--next {
  font-weight: bold;
  font-size: 14px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .franchise-directory__franchise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .franchise-directory__container {
    flex-direction: column;
  }

  .franchise-directory__sidebar {
    width: 100%;
  }

  .franchise-directory__franchise-grid {
    grid-template-columns: 1fr;
  }

  .franchise-directory__filter-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .franchise-directory__filter-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .franchise-directory__filter-label {
    min-width: 80px;
  }

  .franchise-directory__pagination {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== UTILITY CLASSES ===== */
.franchise-directory__loading {
  opacity: 0.5;
  pointer-events: none;
}

.franchise-directory__hidden {
  display: none;
}

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

.franchise-directory__text-uppercase {
  text-transform: uppercase;
}

.buttons {
  margin-top: 50px;
  text-align: center;
  border-radius: 30px;
}

.blob-btn {
  z-index: 1;
  position: relative;
  padding: 20px 46px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #0505a9;
  font-size: 16px;
  font-weight: bold;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 30px;
}

.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #0505a9;
  border-radius: 30px;
}

.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}

.blob-btn:hover {
  color: #ffffff;
  border-radius: 30px;
}

.blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 30px;
}

.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
}

.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}

.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 100%;
  height: 100%;
  background: #0505a9;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}

@supports (filter: url("#goo")) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}

.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}

@supports (filter: url("#goo")) {
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
}

.hero-slider {
  position: relative;
}

.searchbox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}

.searchbox .container {
  background-color: #fd8d2b;
  padding: 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.home-allinput {
  gap: 20px !important;
}

.home-allinput select {
  width: 25%;
}

.home-allinput button {
  width: 25%;
}

.Recommendations label {
  font-size: 18px;
}

.recomm-heading {
  font-weight: 600;
  color: #f59e0b;
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 50px;
}

.brokers-section .container {
  position: relative;
}

/* responsive code */
@media only screen and (max-width: 480px) {
  .carousel-item img {
    width: auto;
  }

  .carousel-caption h1 {
    font-size: 45px;
  }

  .carousel-caption p {
    font-size: 16px;
  }

  .carousel-caption {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    top: 20%;
  }

  .home-allinput {
    display: inline !important;
    margin: auto;
  }

  .home-allinput select,
  .home-allinput button {
    width: 49%;
    padding: 20px;
    margin-top: 10px;
  }

  .why-choose {
    padding: 35px 0;
  }

  .why-choose-text h2 {
    font-size: 1.8rem;
  }

  .why-choose-text p {
    font-size: 1rem;
  }

  .featured-categories {
    padding: 30px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .compare-section {
    padding: 30px 0;
  }

  .compare-text h2 {
    font-size: 1.8rem;
  }

  .compare-image {
    margin-top: 30px !important;
  }

  .brokers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000006b;
    z-index: 0;
  }

  .brokers-section {
    padding: 30px 0;
  }

  .sell-franchise {
    padding: 30px 0;
  }

  .faq {
    padding: 30px 0;
  }

  .journey-section {
    padding: 30px 0;
  }

  .journey-text h2 {
    font-size: 30px;
  }

  .journey-image {
    margin-bottom: 20px;
  }

  .cta-banner {
    padding: 30px 0;
  }

  .how-it-works {
    padding: 30px 0;
  }

  .step h3 {
    font-size: 1.4rem;
  }

  .info-sections {
    padding: 30px 0;
  }

  .partnerships {
    padding: 30px 0;
  }

  .partnerships-grid {
    display: inline;
  }

  .partnership-card {
    margin-bottom: 20px;
  }

  .casestudy {
    padding: 30px 0;
  }

  .casestudy h2 {
    font-size: 1.8rem;
  }

  .casestudy-grid {
    display: inline;
  }

  .casestudy_card {
    margin-bottom: 20px;
  }

  .casestudy_card h4 {
    font-size: 20px;
  }

  .casestudy-subtitle {
    margin-bottom: 1rem;
  }

  .learning {
    padding: 30px 0;
  }

  .contact-us h2 {
    font-size: 30px;
  }

  .contact-us {
    padding: 30px 0;
  }

  .image-section {
    display: none;
  }

  .franchise-directory__main-content {
    padding: 20px;
  }

  .franchise-directory__sidebar-title {
    border-bottom: 4px solid white;
  }

  .cta-banner {
    display: none;
  }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
  .carousel-item img {
    width: auto;
  }

  .carousel-caption h1 {
    font-size: 50px;
  }

  .carousel-caption p {
    font-size: 16px;
  }

  .carousel-caption {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    top: 30%;
  }

  .home-allinput {
    display: inline !important;
    margin: auto;
  }

  .home-allinput select,
  .home-allinput button {
    width: 49%;
    padding: 20px;
    margin-top: 10px;
  }

  .why-choose {
    padding: 35px 0;
  }

  .why-choose-text h2 {
    font-size: 1.8rem;
  }

  .why-choose-text p {
    font-size: 1rem;
  }

  .featured-categories {
    padding: 30px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .compare-section {
    padding: 30px 0;
  }

  .compare-text h2 {
    font-size: 1.8rem;
  }

  .compare-image {
    margin-top: 30px !important;
  }

  .brokers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000006b;
    z-index: 0;
  }

  .brokers-section {
    padding: 30px 0;
  }

  .sell-franchise {
    padding: 30px 0;
  }

  .faq {
    padding: 30px 0;
  }

  .journey-section {
    padding: 30px 0;
  }

  .journey-text h2 {
    font-size: 30px;
  }

  .journey-image {
    margin-bottom: 20px;
  }

  .cta-banner {
    padding: 30px 0;
  }

  .how-it-works {
    padding: 30px 0;
  }

  .step h3 {
    font-size: 1.4rem;
  }

  .info-sections {
    padding: 30px 0;
  }

  .partnerships {
    padding: 30px 0;
  }

  .partnerships-grid {
    display: inline;
  }

  .partnership-card {
    margin-bottom: 20px;
  }

  .casestudy {
    padding: 30px 0;
  }

  .casestudy h2 {
    font-size: 1.8rem;
  }

  .casestudy-grid {
    display: inline;
  }

  .casestudy_card {
    margin-bottom: 20px;
  }

  .casestudy_card h4 {
    font-size: 20px;
  }

  .casestudy-subtitle {
    margin-bottom: 1rem;
  }

  .learning {
    padding: 30px 0;
  }

  .contact-us h2 {
    font-size: 30px;
  }

  .contact-us {
    padding: 30px 0;
  }

  .image-section {
    display: none;
  }

  .franchise-directory__main-content {
    padding: 20px;
  }

  .franchise-directory__sidebar-title {
    border-bottom: 4px solid white;
  }

  .category-card {
    margin-top: 30px;
  }

  .brokers-section .col-md-5 {
    display: none !important;
  }

  .brokers-section .col-md-7 {
    width: 100% !important;
  }
}

@media only screen and (min-width: 769px) and (max-width: 920px) {
  .carousel-item img {
    width: auto;
  }

  .carousel-caption h1 {
    font-size: 60px;
  }

  .carousel-caption p {
    font-size: 16px;
  }

  .carousel-caption {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    top: 30%;
  }

  .home-allinput {
    display: inline !important;
    margin: auto;
  }

  .home-allinput select,
  .home-allinput button {
    width: 49%;
    padding: 20px;
    margin-top: 10px;
  }

  .why-choose {
    padding: 35px 0;
  }

  .why-choose-text h2 {
    font-size: 1.8rem;
  }

  .why-choose-text p {
    font-size: 1rem;
  }

  .featured-categories {
    padding: 30px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .compare-section {
    padding: 30px 0;
  }

  .compare-text h2 {
    font-size: 1.8rem;
  }

  .compare-image {
    margin-top: 30px !important;
  }

  .brokers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000006b;
    z-index: 0;
  }

  .brokers-section {
    padding: 30px 0;
  }

  .sell-franchise {
    padding: 30px 0;
  }

  .faq {
    padding: 30px 0;
  }

  .journey-section {
    padding: 30px 0;
  }

  .journey-text h2 {
    font-size: 30px;
  }

  .journey-image {
    margin-bottom: 20px;
  }

  .cta-banner {
    padding: 30px 0;
  }

  .how-it-works {
    padding: 30px 0;
  }

  .step h3 {
    font-size: 1.4rem;
  }

  .info-sections {
    padding: 30px 0;
  }

  .partnerships {
    padding: 30px 0;
  }

  .partnerships-grid {
    display: inline;
  }

  .partnership-card {
    margin-bottom: 20px;
  }

  .casestudy {
    padding: 30px 0;
  }

  .casestudy h2 {
    font-size: 1.8rem;
  }

  .casestudy-grid {
    display: inline;
  }

  .casestudy_card {
    margin-bottom: 20px;
  }

  .casestudy_card h4 {
    font-size: 20px;
  }

  .casestudy-subtitle {
    margin-bottom: 1rem;
  }

  .learning {
    padding: 30px 0;
  }

  .contact-us h2 {
    font-size: 30px;
  }

  .contact-us {
    padding: 30px 0;
  }

  .image-section {
    display: none;
  }

  .franchise-directory__main-content {
    padding: 20px;
  }

  .franchise-directory__sidebar-title {
    border-bottom: 4px solid white;
  }

  .category-card {
    margin-top: 30px;
  }

  .categories-grid .col-md-3 {
    width: 49%;
  }

  .brokers-section .col-md-5 {
    display: none !important;
  }

  .brokers-section .col-md-7 {
    width: 100% !important;
  }

  .sell-franchise .col-md-3 {
    width: 49%;
  }

  .franchise-card img {
    width: 100%;
  }

  .franchise-directory__franchise-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .franchise-directory__filter-group {
    width: 100%;
  }
}

@media only screen and (min-width: 921px) {
  .home-allinput {
    display: flex;
  }

  .brokers-section::before {
    display: none;
  }

  .franchise-directory__franchise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*======================== after implemented backend css =====================*/
#menu-top-menu .current-menu-item a {
  color: #fd8d2b;
}

.register,
.login {
  padding-top: 145px;
  padding-bottom: 70px;
}

.section.franchise-form {
  padding-top: 120px;
  padding-bottom: 50px;
}

.register form,
.login form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 550px;
  margin: 0 auto;
}

.register form label,
.login form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.register form input[type="text"],
.register form input[type="email"],
.register form input[type="password"],
.login form input[type="text"],
.login form input[type="email"],
.login form input[type="password"] {
  width: 100%;
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 1rem;
  font-family: "Poppins";
}

.register form input[type="submit"],
.login form input[type="submit"] {
  background: #ff7a20;
  color: #fff;
  padding: 12px;
  width: 100%;
  margin-top: 10px;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.3s;
}

.login form p,
.register form p {
  margin-top: 20px;
  text-align: center;
}

.login form h2,
.register form h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

.login form label span,
.register form label span {
  color: red;
}

.register form input[type="submit"]:hover,
.login form input[type="submit"]:hover {
  background: #e46913;
}

.franchise-form {
  max-width: 800px;
  margin: auto;
}
.franchise-form .form-group {
  margin-bottom: 20px;
}
.franchise-form input,
.franchise-form select,
.franchise-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.franchise-form .form-row {
  display: flex;
  gap: 20px;
}
.franchise-form .form-row .form-group {
  flex: 1;
}
.franchise-form .submit-button {
  width: unset;
  background: #ff6600;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
}

.form-group span {
  color: red;
}

.singel-franchise-page {
  margin-top: 120px;
  margin-bottom: 50px;
  font-family: "Poppins";
}

.main-content-body p {
  font-size: 1.25rem;
  font-weight: 300;
}

.main-content-body p:last-child {
  display: none;
}

#popmake-1658 {
  border: none;
  font-family: 'Poppins';
}

#pum_popup_title_1658 {
  text-align: center;
  font-weight: 500;
}

.search-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.search-row input {
  width: 400px;
  max-width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.search-row button {
  padding: 10px 20px;
  border: none;
  background: #444;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.privacy {
  padding-top: 70px;
  padding-bottom: 50px;
}

.privacy li {
  font-family: 'Poppins';
}
/*======================== after implemented backend css =====================*/
