/* Reset and Base */

 *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} 
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 8%;
    background: linear-gradient(135deg, #8e2de2, #a83279); /* Purple to Crimson */
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    margin-top: 60px;
}

.hero-content {
    flex: 1 1 500px;
    max-width: 600px;
}

.tagline {
    background: white;
    padding: 6px 16px;
    display: inline-block;
    font-size: 14px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 44px;
    margin: 20px 0 15px;
    line-height: 1.2;
}

.hero-content h1 span {
    font-weight: bold;
    color: white; /* Pinkish purple */
}

.subheading {
    font-size: 20px;
    margin-bottom: 35px;
    color: #f0d6ff;
}

.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 220px;
    text-align: left; /* Always left-align text */
}

.stat-item .material-icons {
    font-size: 36px;
    background: linear-gradient(135deg, crimson, #ff4d94);
    border-radius: 50%;
    padding: 8px;
    color: white;
}

.cta-btn {
    background: crimson;
    color: white;
    padding: 14px 30px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ff4d94;
}

.hero-image {
    flex: 1 1 400px;
    text-align: center;
}

.hero-image img {
    max-width: 110%; /* Increased size */
    height: 350px;
    border: 5px solid crimson; /* Crimson border */
    border-radius: 8px;
}

/* Tablet view */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .stats {
        justify-content: center;
    }
}

/* Small screen view (keep icons left) */
@media (max-width: 600px) {
    .stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .stat-item {
        flex: 1 1 100%;
        justify-content: flex-start; /* Keep icon left */
        text-align: left;
    }
}
/* Optional: Adjust image size on very small screens */
@media (max-width: 480px) {
    .hero-image img {
        max-width: 100%; /* Slight padding inside container */
        max-height: 80%;
    }
}

/* ===== Franchise Section ===== */
.franchise-section {
  padding: 60px 20px;
  background: #fff; /* Plain background */
  color: #333;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.franchise-intro {
  max-width: 800px;
  margin: 0 auto 50px;
}

.franchise-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #a83279; /* Purple heading */
}

.franchise-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Grid Layout */
.franchise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* Card Styles */
.franchise-card {
  background: #fafafa;
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #eee;
}

.franchise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Icons */
.franchise-card .material-icons {
  font-size: 40px;
  color: #d93636; /* Crimson icon color */
  margin-bottom: 10px;
}

/* Card Headings */
.franchise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #a83279;
}

/* Card Text */
.franchise-card p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.5;
}

/* CTA Buttons */
.franchise-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-apply {
  background-color: #d93636; /* Crimson */
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-apply:hover {
  background-color: #b52a2a;
}

.btn-learn {
  background-color: transparent;
  color: #a83279;
  border: 2px solid #a83279;
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-learn:hover {
  background-color: #a83279;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .franchise-intro h2 {
    font-size: 1.6rem;
  }
  .franchise-intro p {
    font-size: 1rem;
  }
  .btn-apply, .btn-learn {
    width: 100%;
    text-align: center;
  }
}

/* General Section Styling */
.opportunity-section {
    background: linear-gradient(rgba(0,0,50,0.8), rgba(0,0,50,0.8)), url('background.jpg') center/cover;
    padding: 40px 20px;
    color: white;
    text-align: center;
}

.opportunity-container {
    max-width: 1100px;
    margin: auto;
    background: rgba(255,255,255,0.05);
    border: 1px dashed #fff;
    padding: 30px;
    border-radius: 8px;
}

.quote-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.highlight-banner {
    background: crimson;
    color: white;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 20px;
}

form {
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

input, select {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #ccc;
    outline: none;
    font-size: 1rem;
}

input:focus, select:focus {
    border-color: crimson;
}

.captcha-row {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-button {
    background: grey;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.submit-button:hover {
    background: crimson;
}

@media screen and (max-width: 768px) {
    .opportunity-container {
        padding: 20px 15px;
    }
    .form-row {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    input, select {
        width: 100%;
        box-sizing: border-box;
    }
    .captcha-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: flex-start;
    }
}


/* General Styling */
.franchise-section {
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.section-title {
  text-align: center;
  color: crimson;
  margin-bottom: 40px;
  font-size: 28px;
}

.sub-title {
  color: crimson;
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}

/* Requirements Cards */
.requirements-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: #fff;
  border: 2px solid crimson;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.card .icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: crimson;
}

.card p {
  font-size: 15px;
  line-height: 1.5;
}

/* Training Cards */
.training-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.training-card {
  background: #fff;
  border: 2px solid crimson;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.training-card h4 {
  color: crimson;
  margin-bottom: 10px;
  font-size: 18px;
}

.training-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .card, .training-card {
    max-width: 100%;
  }
}

















/* footer */

.footer {
  background-color: #1c1c22;
  color: white;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

/* Fix logo spacing */
.footer-logo-img {
  width: 100px;
  margin: -25px 0; /* adds top and bottom spacing */
  margin-bottom: 3px;
}

/* Make the paragraph justified */
.footer-col p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;  /* <-- this makes it align full */
}


.footer-logo-text {
  font-size: 20px;
  color: crimson;
  margin-bottom: 15px; /* increased from 10px */
}


.footer-col h3 {
  color: crimson;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: crimson;
}

.footer-col p,
.footer-col a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
  text-align: left;
}
.location-link {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
}

.location-link:hover {
  color: crimson;
  text-decoration: underline;
}


.social-icons a {
  display: inline-flex;                  /* Centers icon in circle */
  align-items: center;
  justify-content: center;
  width: 36px;                           /* Fixed width */
  height: 36px;                          /* Same height = circle */
  border-radius: 50%;                   /* Makes it a circle */
  border: 1px solid crimson;
  background-color: transparent;
  color: white;
  font-size: 16px;
  margin-right: 8px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background-color: crimson;
  color: white;
}


.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  color: #aaa;
  font-size: 13px;
}
/* Normal-looking link */
.plain-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.plain-link:hover {
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
.footer-container {
  gap: 0px !important;
}

.footer-col {
  margin-bottom: 10px !important;
}


  .footer-col h3 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer-col ul li {
    margin-bottom: 4px;
  }

  .footer-logo-img {
    width: 80px;
  }

  .footer-logo-text {
    font-size: 18px;
  }

  .social-icons {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: left;
    margin-top: 20px;
  }
}


/* WhatsApp Floating Button with Font Icon */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Mobile Responsive */
@media screen and (max-width: 600px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
    bottom: 15px;
    left: 15px;
  }
}


/* Scroll to Top Button Bottom Right */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-size: 24px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
#scrollTopBtn:hover {
  background-color: #0056b3;
}



/* Enroll Button */
.enroll-btn {
  background-color: crimson;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.enroll-btn:hover {
  background-color: darkred;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Form Container */
.form-container {
  background: #fff;
  padding: 5px 20px;         /* 🔻 Reduced padding */
  border-radius: 12px;
  width: 90%;
  max-width: 400px;           /* 🔻 Reduced width too */
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}



.form-container h2 {
  margin-bottom: 20px;
  color: crimson;
  text-align: center;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  color: crimson;
  cursor: pointer;
}

/* Form Fields */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: crimson;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: crimson;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 7px;
}

.submit-btn:hover {
  background-color: darkred;
}

/* Responsive */
@media (max-width: 600px) {
  .form-container {
    padding: 20px;
  }

  .enroll-btn {
    width: 100%;
  }
}