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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #F1DEC0;
  color: #7C0C0C;
  line-height: 1.6;
}

.product-page {
  background-color: #7C0C0C !important;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  color: #7C0C0C;
  margin-bottom: 40px;
}

.section-title-about {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
  text-align: center;
  text-transform: uppercase;
  color: #F1DEC0;
  margin-bottom: 40px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(241, 222, 192, 0.95);
  backdrop-filter: blur(10px);
  /* padding: 20px 0; */
}

.header .container {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 14%;
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.navigation.desk {
  background: #FF7D12;
  border-radius: 75px;
  padding: 20px 50px;
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #7C0C0C;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #4B0A0A;
  transform: translateY(-2px);
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: #F1DEC0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-grid div {
  width: 100%;
}

.stat-item {
  text-align: center;
  background: #7C0C0C;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  width: 50%;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 32px;
  /* line-height: 53px; */
  text-transform: uppercase;
  color: #7C0C0C;
  background: #F1DEC0;
  padding: 10px;
  border-radius: 4px;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 36px;
  /* line-height: 53px; */
  letter-spacing: 1.28px;
  color: #F1DEC0;
}

/* Channels Section */
.channels {
  padding: 80px 0;
  background: #F1DEC0;
  text-align: center;
}

.channels .section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 91px;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.channels-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.channel-image {
  width: 35%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Utility Classes */
.highlight {
  color: #FF7A00;
}

.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 15px 30px;
  border: none;
  border-radius: 39px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #FF7A00;
  color: #7C0C0C;
}

.btn-primary:hover {
  background: #FF7D12;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #FF7A00;
  border: 1px solid #FF7A00;
}

.btn-secondary:hover {
  background: #FF7A00;
  color: #7C0C0C;
}

.desk {
  display: block;
}

.mob {
  display: none;
}

.mt-5 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}



/* home product slider */

/* about css */
.founder-section {
  padding: 0px 20px;
}

.container-about {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #7C0C0C;
}

/* Timeline */
.timeline {
  flex: 1;
  min-width: 300px;
  position: relative;
}

/* Each row */
.timeline-item {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  /* Year | Dot+Line | Content */
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

/* Year */
.timeline-item .year {
  font-weight: bold;
  color: #7C0C0C;
  text-align: right;
  padding-right: 10px;
}

/* Dots column */
.timeline-item .dot {
  width: 14px;
  height: 14px;
  background: #7C0C0C;
  border-radius: 50%;
  margin: 5px auto;
  position: relative;
  z-index: 2;
}

/* Vertical line behind dots */

/* contact us footer */

.contact-section {
  padding: 40px 70px;
}

.contact-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 185px;
}

.contact-box {
  flex: 1;
  min-width: 250px;
}

.contact-icon {
  width: 24px;
}

.contact-box h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #5a2d2d;
}

.contact-box p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  gap: 10px;
}

.contact-box i {
  color: #8b1d1d;
  margin-right: 8px;
}

.contact-box a {
  color: #8b1d1d;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hide line for last item */
.timeline-item:last-child .dot::after {
  display: none;
}

/* Content */
.timeline-item .content {
  font-size: 15px;
  line-height: 1.6;
}

/* Founder image */
.founder-img {
  flex: 0.5;
  min-width: 250px;
  text-align: center;
  position: relative;
}

.founder-img img {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  top: -5%;
}

.timeline-item .dot::after {
  content: "";
  position: absolute;
  top: 14px;
  /* starts below the dot */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 60px);
  /* extend till next item */
  background: #7C0C0C;
  z-index: -1;
}



/* Responsive */
@media (max-width: 768px) {
  .founder-img img {
    max-width: 100%;
    height: auto;
    position: relative;

  }

  .container-about {
    flex-direction: column;
    align-items: center;
  }

  .timeline-item {
    grid-template-columns: 50px 30px 1fr;
  }

  .year {
    text-align: left;
  }

  .founder-img {
    margin-top: 30px;
  }

  .timeline-item .dot::after {
    content: "";
    position: absolute;
    top: 14px;
    /* starts below the dot */
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 160px);
    /* extend till next item */
    background: #7C0C0C;
    z-index: -1;
  }
}

@media (max-width: 768px) {
  .navigation.desk {

    display: none;
  }

  .store-mob {
    width: 100%;
  }

  /* mobile menu */
  .header .container {
    flex-direction: row !important;
    gap: 20px;
    margin: 0;
  }

  /* Mobile nav drawer */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off screen */
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: #FF7D12;
    padding: 60px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 1000000;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-nav.open {
    right: 0;
  }

  .mobile-nav .nav-link {
    font-size: 22px;
    font-weight: 700;
    color: #7C0C0C;
    text-decoration: none;
  }

  .mobile-nav .nav-link:hover {
    color: #4B0A0A;
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    cursor: pointer;
    color: #7C0C0C;
    font-weight: bold;
  }

  /* Mobile trigger */
  .menu-trigger {
    font-size: 20px;
    font-weight: 700;
    color: #7C0C0C;
    cursor: pointer;
  }

  /* Make logo + MENU inline in mobile */
  @media (max-width: 768px) {
    .header .container {
      justify-content: space-between;
    }
  }

  .hero-content-franchise {
    padding: 0px 20px;
  }

  .hero-content-franchise h1,
  .hero-content-franchise p {
    text-align: center;
    margin-bottom: 15px;
	background: #FF7A00;
    padding: 10px 0px;
  }

  .hero-content-franchise h1:not(:first-child) {
    margin-top: 50px;
  }

  .franchise-head {
    font-size: 32px;
    text-align: left;
  }

  .feature-card.mob {
    font-size: 32px;
    line-height: 32px;
    padding: 12px 20px;
    background-color: #7C0C0C;
    color: #F1DEC0;
    width: 100%;
    max-width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;

  }

  .hero-features-mob {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
  }

  .header {
    z-index: 999999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* padding: 20px 0; */
  }

  .desk {
    display: none;
  }

  .mob {
    display: block;
  }

  .product-page {
    background-color: #F1DEC0 !important;
  }

  .title-about {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #7C0C0C;
  }

  .contact-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .contact-section {
    padding: 40px 20px;
  }

  .footer.contact {
    border-radius: 15px;
    background: #FF7A00;
    padding: 24px 16px;
    margin: 0 20px;
    text-align: left;
  }
}

.error {
      color: red;
      font-size: 13px;
      display: block;
      margin-bottom: 8px;
    }

    .toast {
      visibility: hidden;
      min-width: 250px;
      margin-left: -125px;
      background-color: #333;
      color: #fff;
      text-align: center;
      border-radius: 6px;
      padding: 16px;
      position: fixed;
      z-index: 1000;
      left: 50%;
      bottom: 30px;
      font-size: 16px;
      opacity: 0;
      transition: opacity 0.5s, bottom 0.5s;
    }

    .toast.show {
      visibility: visible;
      opacity: 1;
      bottom: 50px;
    }

    .toast.success {
      background: #28a745;
    }

    .toast.error {
      background: #dc3545;
    }

.channels-videos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.channel-video {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-details a {
  color: inherit;         /* Inherit parent text color */
  text-decoration: none;  /* Remove underline */
}

.contact-details a:hover {
  color: #d9534f;         /* Example hover color (red shade) */
  text-decoration: underline; /* Optional: underline only on hover */
}