/* Franchise Section */
.franchise-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 50px;
  background: #f8f2eb;
}

.franchise-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.franchise-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.15);
}

.franchise-box .icon {
  font-size: 40px;
  color: #b38b47; /* golden brown color */
  margin-bottom: 15px;
}

.franchise-box h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.franchise-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}



/* Franchise Highlight Section */
.franchise-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 8%;
  background: #fff;
  flex-wrap: wrap;
}

.franchise-image {
  flex: 1 1 45%;
}

.franchise-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.franchise-content {
  flex: 1 1 50%;
  color: #222;
}

.franchise-content h2 {
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 600;
}

.franchise-content .brand {
  font-style: italic;
  font-family: "Georgia", serif;
}

.franchise-content .sub-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
}

.stat-box {
  text-align: left;
}

.stat-box h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}

.stat-box p {
  font-size: 15px;
  color: #444;
}


/* Courses Section */
.courses-section {
  background: #fff;
}

.section-subtitle {
  font-size: 16px;
  color: #c2a27a;
  font-style: italic;
  margin-bottom: 0;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #111;
}

.course-card {
  background: #fff;
  border: 2px solid #e5d3b3;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.course-card img {
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.course-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  color: #000;
}

.course-card p {
  font-size: 15px;
  color: #333;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
}



/* Home Salon Service Section */
/* Section Styling */
.home-service-section {
  background: linear-gradient(135deg, #f5c7a9, #e6b7ff);
  text-align: center;
  border-radius: 12px;
  margin-top: 40px;
  padding: 50px 20px;
}

/* Title */
.home-service-section .home-service-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

/* Paragraph */
.home-service-section .home-service-text {
  font-size: 18px;
  margin-bottom: 25px;
  color: #fdfdfd;
}

/* Book Now Button */
.home-service-section .btn-booknow {
  background: #ff4081 !important;
  color: #fff !important;
  border-radius: 30px;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: none;
  text-decoration: none;
  display: inline-block;
}

/* Hover */
.home-service-section .btn-booknow:hover {
  background: #e73370 !important;
  color: #fff !important;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}
