:root {
  --green: #28a745;
  --red: #dc3545;
  --white: #fff;
  --dark: #111;
  --primary-font: 'Poppins', sans-serif;
}

/* For WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px; /* scrollbar width */
}

::-webkit-scrollbar-track {
    background: #f1f1f1; /* track background */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--red); /* scrollbar color */
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #b02a37; /* darker red on hover */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--red) #f1f1f1;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--primary-font);
  background: linear-gradient(to bottom right, #fff, #f9f9f9);
  color: var(--dark);
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, h5, h6, p {
    font-family: 'Poppins', sans-serif;
}



.navbar-wrapper {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}

.logo img {
    height: auto; /* adjust size as needed */
    width: 200px;
    display: block;
}


.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
    font-family: 'poppins',sans-serif;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background-color: var(--red);
  color: white;
  border: none;
}

.nav-btn {
    border-radius: 10px;
padding: 0.6rem 1.2rem;
  background-color: var(--red);
  color: white;
}

.nav-btn:hover {
  background-color: var(--green);
  color: white;
}

.btn-primary:hover {
  background-color: var(--green);
  color: white;
}

/* Mobile Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background-color: var(--white);
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease-in-out;
  padding: 2rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-overlay.active {
  right: 0;
}

.close-menu-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  color: var(--dark);
  text-decoration: none;
}

.mobile-nav-links a:hover {
  color: var(--green);
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* =============== HERO SECTION =============== */

.hero-section {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(to bottom right, #fef9f7, #fff);
  overflow: hidden;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: auto;
  z-index: 2;
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.5rem;
  animation: fadeInDown 1s ease-in-out;
}

.hero-title {
  font-size: 6rem;
  padding: 0;
  color: var(--red);
  font-weight: 900;
  animation: popIn 1.2s ease-in-out;
}

.franchise-text {
  color: var(--red);
  font-size: 5.8rem;
  display: inline-block;
  animation: pulse 2s infinite;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--dark);
  margin-top: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-in-out;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: var(--green);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--red);
}

/* Floating Food Images */
.floating {
  position: absolute;
  width: 220px;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
  opacity: 0.8;
}

.food1 { top: 10%; left: 5%; animation-delay: 0s; }
.food2 { top: 20%; right: 8%; animation-delay: 1s; }
.food3 { bottom: 10%; left: 12%; animation-delay: 2s; }
.food4 { bottom: 15%; right: 10%; animation-delay: 3s; }

/* Keyframes for animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes fadeInDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .franchise-text {
    font-size: 2.5rem;
  }

  .floating {
    width: 40px;
  }
}

.top-section {
    background-color: #dc3545; /* your red theme */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.curved-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease;
}

.curved-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.bottom-section {
    background-color: #ffffff;
    color: #333;
    text-align: center;
    padding: 100px 20px;
}

/* When divider is visible */
.curved-divider.active {
    transform: translateY(0);
    opacity: 1;
}


.franchise-support {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f2f2f2, #fdfdfd);
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.franchise-support h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.franchise-support h2 .red {
  color: #e74c3c;
}

.franchise-support h2 .brown {
  color: #6f4e37;
}

.franchise-support h2 .green {
  color: #27ae60;
}

.franchise-support p {
  max-width: 600px;
  margin: 0 auto 30px auto;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.image-container img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .franchise-support h2 {
    font-size: 26px;
  }

  .franchise-support p {
    font-size: 14px;
  }
}

.service-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 150px;
  background: #fdfdfd;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
}

.service-card .icon {
  font-size: 30px;
  color: #f65c5c;
  background-color: #fff1f1;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 auto 15px;
  transition: background 0.3s, color 0.3s;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

.service-card:hover {
  background: #f65c5c;
  color: #ffffff;
}

.service-card:hover .icon {
  background: #ffffff;
  color: #f65c5c;
}

.service-card:hover p {
  color: #ffffff;
}

.franchise-box {
  background: linear-gradient(90deg, #ff7e5f, #feb47b); /* orange gradient */
  color: #fff; /* light text */
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  max-width: 900px;
  margin: 50px auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.franchise-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.franchise-subtext {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #f8f8f8;
}

.franchise-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff4b5c;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.franchise-btn:hover {
  background-color: #e63946;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 600px) {
  .franchise-heading {
    font-size: 1.5rem;
  }

  .franchise-subtext {
    font-size: 0.95rem;
  }

  .franchise-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

.franchise-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.franchise-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.franchise-header .highlight {
  color: #ff4c4c;
}

.franchise-header p {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.franchise-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.franchise-card img {
  width: 40px;
  margin-bottom: 10px;
  background-color: #ffecec;
  padding: 8px;
  border-radius: 50%;
}

.franchise-card h4 {
  margin: 10px 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.franchise-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}


.stats-section {
  background-color: #fff5f5;
  padding: 50px 20px;
  text-align: center;
}

.stats-heading {
  font-size: 28px;
  color: #1f1f1f;
  margin-bottom: 30px;
  font-weight: bold;
}

.stats-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.stat-item {
    font-family: 'poppins',sans-serif;
  background-color: #ffcccc;
  color: #8b0000;
  padding: 20px;
  border-radius: 15px;
  width: 150px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.stat-item .stat-number {
  font-size: 32px;
  font-weight: bold;
}

.stat-item .stat-label {
  font-size: 14px;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 600px) {
  .stat-item {
    width: 45%;
  }

  .stats-heading {
    font-size: 22px;
  }
}


.franchise-process {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
}

.highlight-red {
  color: #f44336;
}

.highlight-green {
  color: #4CAF50;
}

.section-subtitle {
  margin: 10px auto 40px;
  max-width: 600px;
  font-size: 16px;
  color: #555;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.step-card {
  background: #fff5f5;
  border-radius: 12px;
  padding: 25px 20px;
  width: 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 30px;
  color: #f44336;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 20px;
  color: #f44336;
  margin: 0;
}

.step-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 8px;
}

.step-card p {
  font-size: 14px;
  color: #444;
}

.step-tag {
  display: inline-block;
  background-color: #fbc02d;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 10px;
}

.step-tag.ongoing {
  background-color: #8bc34a;
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 90%;
  }

  .section-title {
    font-size: 22px;
  }
}


.cta-box {
  background: linear-gradient(135deg, #1e7e34, #28a745); /* green gradient */
  color: white;
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  max-width: 700px;
  margin: 60px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-button {
  background-color: #ffc107;
  color: black;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e0a800;
}


/* Basic Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.testimonials .highlight {
  color: #f34c4c;
  font-weight: bold;
}

.subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.image-container-review {
  margin: 0 auto 40px;
  max-width: 300px;
}

.image-container-review img {
  width: 50%;
}

/* Card Layout */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fafafa;
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.avatar {
  background: #f34c4c;
  color: white;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 2px;
}

.location {
  font-size: 14px;
  color: #666;
}

.franchise {
  font-size: 14px;
  color: #00a0a0;
  margin-bottom: 8px;
}

.stars {
  color: #ffb400;
  font-size: 16px;
  margin-bottom: 8px;
}

.quote {
  font-size: 14px;
  color: #555;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
    max-width: 400px;
  }
}

.stats-section {
    background: #f9f9f9;
    text-align: center;
    padding: 50px 20px;
}

.stats-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.stats-title span {
    color: #ff4d4d;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

.stat-box {
    flex: 1 1 200px;
    margin: 15px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #555;
}

/* Colors for specific stats */
.red { color: #ff4d4d; }
.green { color: #28a745; }
.orange { color: #ff9800; }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    .stat-box {
        margin-bottom: 20px;
    }
}


.franchise-launch-section {
    background: #fff;
    text-align: center;
    padding: 70px 20px;
}

.franchise-content {
    max-width: 800px;
    margin: auto;
}

.franchise-title {
    font-size: 32px; /* Increased from 28px */
    font-weight: 700;
    margin-bottom: 18px;
    color: #222;
}

.franchise-title span {
    color: #ff9800; /* Orange highlight */
}

.franchise-subtitle {
    font-size: 18px; /* Increased */
    color: #555;
    margin-bottom: 12px;
}

.franchise-highlight {
    font-size: 20px; /* Increased */
    font-weight: 600;
    color: #333;
    margin-bottom: 35px;
}

.franchise-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 24px; /* Bigger padding */
    font-size: 18px; /* Increased */
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn.primary {
    background: #ff9800;
    color: #fff;
    border: none;
}

.btn.primary:hover {
    background: #e68900;
}

.btn.secondary {
    border: 2px solid #ff4d4d;
    color: #ff4d4d;
    background: transparent;
}

.btn.secondary:hover {
    background: #ff4d4d;
    color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .franchise-title {
        font-size: 26px;
    }
    .franchise-subtitle {
        font-size: 16px;
    }
    .franchise-highlight {
        font-size: 18px;
    }
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}


/* Section Base */
.contact-section {
    background: #fff;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

/* Form Section */
.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #222;
}

.input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Poppins',sans-serif;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-bottom: 12px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff9800;
}

.btn-submit {
    width: 100%;
    background-color: #dc3545; /* your red theme */
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: #dd4958; /* your red theme */
}

/* Contact Info Section */
.contact-info {
     font-family: 'Poppins',sans-serif;
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #222;
}

.contact-info ul {
     font-family: 'Poppins',sans-serif;
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.contact-info ul li {
     font-family: 'Poppins',sans-serif;
    margin-bottom: 16px;
    font-size: 16px;
    color: #444;
}

.contact-info ul li i {
    color: #ff9800;
    margin-right: 10px;
    font-size: 18px;
}

/* Why Choose Box */
.why-choose {
    background: #f8f8f8;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.why-choose h4 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #333;
}

.why-choose ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose ul li {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

.why-choose ul li i {
    color: #ff9800;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .input-group {
        flex-direction: column;
    }

    .contact-info {
        margin-top: 30px;
    }
}


/* Footer Base */
.footer {
    background: #111;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Brand Section */
.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    color: #e74c3c;
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 10px; /* spacing between icons */
    flex-wrap: nowrap;
    align-items: center;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: #e74c3c;
}


/* Footer Links */
.footer-links {
    flex: 1;
    min-width: 180px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #e74c3c;
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom span {
    color: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-social a {
        margin: 5px;
    }
}
