.certificates-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
}

.other-info-card {
    background: white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(0);
    position: relative;
}

.other-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.other-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 75, 145, 0.1), rgba(42, 164, 248, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.other-info-card:hover::before {
    opacity: 1;
}

.other-info-card img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.other-info-card:hover img {
    transform: scale(1.03);
}

.other-info-card-content {
    padding: 25px;
    position: relative;
}

.other-info-card-content h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #1a4b91;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.other-info-card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #2aa4f8;
    border-radius: 3px;
}

.other-info-card-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Optional View Button */
.view-certificate {
    display: inline-block;
    padding: 8px 16px;
    background-color: #1a4b91;
    color: white;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-certificate:hover {
    background-color: #143a7a;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .other-info-card {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .certificates-section {
        gap: 25px;
        padding: 30px 15px;
    }
    
    .other-info-card {
        width: 100%;
        max-width: 400px;
    }
    
    .other-info-card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .certificates-section {
        gap: 20px;
        padding: 20px 10px;
    }
    
    .other-info-card-content {
        padding: 18px;
    }
    
    .other-info-card-content h3 {
        font-size: 16px;
    }
    
    .other-info-card-content p {
        font-size: 13px;
    }
}

/* Starline Airways Rating Profile Section */
.rating-profile {
  background-color: #f8fafc;
  padding: 60px 20px;
  margin: 60px 0;
}

.rating-profile-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rating-header {
  text-align: center;
  margin-bottom: 50px;
}

.rating-header h2 {
  font-size: 32px;
  color: #1a4b91;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.rating-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #1a4b91, #2aa4f8);
  border-radius: 2px;
}

.rating-header p {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.rating-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.rating-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #1a4b91, #2aa4f8);
}

.rating-source {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.rating-source img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 15px;
}

.rating-source h3 {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.rating-value {
  font-size: 42px;
  font-weight: 700;
  color: #1a4b91;
  margin: 15px 0;
  display: flex;
  align-items: flex-start;
}

.rating-value span {
  font-size: 16px;
  color: #777;
  margin-left: 5px;
}

.rating-stars {
  color: #ffc107;
  font-size: 20px;
  margin-bottom: 15px;
}

.rating-details {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.overall-rating {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a4b91, #2aa4f8);
  color: white;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

.overall-rating h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.overall-rating .rating-value {
  color: white;
  justify-content: center;
}

.overall-rating .rating-stars {
  justify-content: center;
  display: flex;
  font-size: 24px;
  margin: 20px 0;
}

.overall-rating .rating-details {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .rating-header h2 {
    font-size: 28px;
  }
  
  .rating-grid {
    grid-template-columns: 1fr;
  }
  
  .overall-rating {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .rating-profile {
    padding: 40px 15px;
  }
  
  .rating-card {
    padding: 25px;
  }
  
  .rating-header h2 {
    font-size: 24px;
  }
}

.story-section-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  max-width: 1350px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s;
}

.story-section-container:hover {
    transform: scale(1.02);
}

.story-card {
  display: flex;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.story-card .story-content {
  flex: 1 1 50%;
}

.story-card .story-content h2 {
  color: #1c2e83;
  margin-bottom: 15px;
}

.story-card .story-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.story-card .story-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-card .story-image img {
  max-width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.full-image-section2 {
    width: 100%;
    height: 80vh;
    background-image: url('../../images/banner/service_banner.jpg');
    margin-top: 160px;
}

.full-image-sectioncp {
    width: 100%;
    height: 80vh;
    background-image: url('../../images/banner/contact-banner.png');
    margin-top: 160px;
}

.full-image-sectioncrr {
    width: 100%;
    height: 80vh;
    background-image: url('../../images/banner/career.jpg');
    margin-top: 160px;
}

.full-image-section-course {
    width: 100%;
    height: 80vh;
    background-image: url('../../images/banner/courses.jpg');
    margin-top: 160px;
}

.our-services {
  padding: 80px 5%;
  text-align: center;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.our-services .section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a4b91;
  position: relative;
  display: inline-block;
}

.our-services .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #1a4b91, #2aa4f8);
  border-radius: 2px;
}

.our-services .description {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.8;
  color: #444;
}

.services-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.service-card {
  background: white;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #1a4b91, #2aa4f8);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 15px;
  color: #1a4b91;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card h3 i {
  color: #2aa4f8;
  font-size: 24px;
}

.service-card p {
  font-size: clamp(14px, 2vw, 15px);
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-center {
  text-align: center;
  padding: 40px 30px;
}

.service-image {
  height: 400px;
  margin: 0 auto 25px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(13px, 2vw, 14px);
  margin: 10px 0;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.icon-list li:hover {
  color: #1a4b91;
  transform: translateX(5px);
}

.icon-list li i {
  color: #2aa4f8;
  font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .services-wrapper {
    gap: 30px;
  }
  
  .service-column {
    min-width: 280px;
  }
}

@media (max-width: 992px) {
  .our-services {
    padding: 70px 4%;
  }
  
  .service-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .our-services {
    padding: 60px 20px;
  }
  
  .services-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .service-column {
    width: 100%;
    max-width: 500px;
  }
  
  .service-center {
    order: -1;
  }
}

@media (max-width: 480px) {
  .our-services {
    padding: 50px 15px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-image {
    height: 180px;
  }
}

.features-section {
    padding: 10px 0px;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.feature-card {
    background: linear-gradient(135deg, #e7e7e7 0%, #d1d1d1 100%);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    background-color: #ffd700;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img {
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.feature-card p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

/* Shared Styles */
section {
  padding: 80px 5%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  position: relative;
}

section h2 {
  font-size: clamp(26px, 3vw, 32px);
  color: #1a4b91;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #1a4b91, #2aa4f8);
  border-radius: 2px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Explore Our Hotels */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  justify-content: center;
}

.hotel-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.hotel-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hotel-card:hover img {
  transform: scale(1.05);
}

.hotel-content {
  padding: 20px;
  text-align: left;
}

.hotel-card h4 {
  margin: 0 0 10px;
  margin-top: 10px;
  font-size: 18px;
  color: #1a4b91;
}

.hotel-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Find Ticket */
.ticket-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.ticket-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.ticket-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ticket-card:hover img {
  transform: scale(1.05);
}

.ticket-content {
  padding: 20px;
  text-align: left;
}

.ticket-card h4 {
  margin: 0 0 10px;
  margin-top: 10px;
  font-size: 18px;
  color: #1a4b91;
}

.ticket-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Buttons */
.card-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.btn-explore, 
.btn-enquiry {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.btn-explore {
  background: linear-gradient(to right, #1a4b91, #2aa4f8);
  color: #ffffff;
}

.btn-enquiry {
  background: linear-gradient(to right, #1a4b91, #2aa4f8);
  color: #ffffff;
  text-decoration: none;
}

.btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 75, 145, 0.3);
}

.btn-enquiry:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  section {
    padding: 70px 4%;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }
  
  .hotel-grid,
  .ticket-options {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 50px 15px;
  }
  
  .card-buttons {
    flex-direction: column;
  }
  
  .hotel-card img,
  .ticket-card img {
    height: 180px;
  }
}

/* Find The Right Place */
.place-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.place-card {
  width: 300px;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}
.place-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.place-card h4 {
  margin: 15px 0 5px;
}
.place-card p {
  color: #666;
  padding: 0 15px 20px;
}

.contact-section {
  padding: 80px 5%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8fafc;
  text-align: center;
  position: relative;
}

.contact-section h2 {
  font-size: clamp(26px, 3vw, 32px);
  color: #1a4b91;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #1a4b91, #2aa4f8);
  border-radius: 2px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  background: #fff;
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #1a4b91;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  width: 100%;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2aa4f8;
  box-shadow: 0 0 0 3px rgba(42, 164, 248, 0.1);
  outline: none;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: linear-gradient(to right, #1a4b91, #2aa4f8);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 75, 145, 0.2);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.info-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  width: 400px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.info-card i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #2aa4f8;
  transition: transform 0.3s ease;
}

.info-card:hover i {
  transform: scale(1.1);
}

.info-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a4b91;
}

.info-card p {
  color: #555;
  line-height: 1.6;
}

.map-section {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-section h3 {
  margin-bottom: 25px;
  font-size: 22px;
  color: #1a4b91;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-form {
    padding: 35px;
  }
  
  .info-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }
  
  .contact-form .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-info {
    gap: 25px;
  }
  
  .info-card {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 15px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 14px;
  }
  
  .contact-form button {
    padding: 14px;
  }
}

/* Career Section */
.career-opportunities {
  padding: 80px 20px;
  background-color: #f9fafb;
}

.career-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

.career-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  transition: transform 0.3s ease;
}

.career-image:hover img {
  transform: scale(1.02);
}

.career-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.career-content {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.career-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.3;
}

.career-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #4a4a4a;
}

.career-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.career-list i {
  color: #3a86ff;
  margin-right: 12px;
  font-size: 18px;
  margin-top: 3px;
}

/* Button styles if you want to add a CTA */
.career-cta {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background-color: #3a86ff;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.career-cta:hover {
  background-color: #2667cc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .career-opportunities {
    padding: 60px 20px;
  }
  
  .career-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .career-image {
    order: 1;
    max-width: 100%;
  }
  
  .career-content {
    order: 2;
  }
  
  .career-content h2 {
    font-size: 28px;
    text-align: center;
  }
  
  .career-content p {
    text-align: center;
  }
  
  .career-list {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .career-opportunities {
    padding: 50px 15px;
  }
  
  .career-content h2 {
    font-size: 24px;
  }
  
  .career-list li {
    font-size: 15px;
  }
}

.cabin-crew-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
}

.cabin-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.cabin-content {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(to bottom right, #2e4765, #1a2a40);
  padding: 40px;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cabin-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.cabin-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
}

.dropdown {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.dropdown:hover {
  transform: translateY(-2px);
}

.dropdown-item {
  background: #fff;
  color: #1a2a40;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dropdown-item:after {
  content: '+';
  font-size: 20px;
  color: #00aced;
  transition: transform 0.3s ease;
}

.dropdown-item.active:after {
  content: '-';
}

.dropdown-item:hover {
  background: #f8f9fa;
}

.dropdown-content {
  display: none;
  padding: 20px;
  background-color: #f8f9fa;
  color: #333;
  font-size: 15px;
  border-top: 1px solid #eee;
}

.dropdown-item.active .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.enroll-btn {
  margin-top: 30px;
  background: #00aced;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 172, 237, 0.3);
}

.enroll-btn:hover {
  background: #0095d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 172, 237, 0.4);
}

.cabin-image {
  flex: 1;
  max-width: 600px;
  align-self: center;
}

.cabin-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.cabin-image:hover img {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 992px) {
  .cabin-container {
    gap: 30px;
  }
  
  .cabin-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .cabin-crew-section {
    padding: 60px 15px;
  }
  
  .cabin-container {
    flex-direction: column;
  }
  
  .cabin-image {
    order: -1;
    max-width: 100%;
  }
  
  .cabin-content h2, 
  .cabin-content p {
    text-align: center;
  }
  
  .enroll-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cabin-content {
    padding: 25px 20px;
  }
  
  .dropdown-item {
    padding: 15px;
  }
  
  .enroll-btn {
    padding: 12px 20px;
  }
}

.hotel-management-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.hotel-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.hotel-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  transition: transform 0.3s ease;
}

.hotel-image:hover {
  transform: translateY(-5px);
}

.hotel-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.hotel-content {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(145deg, #2e4765, #1a2a40);
  padding: 40px;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.hotel-content h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  padding-bottom: 10px;
}

.hotel-content h2:after {
  background: rgba(0, 174, 237, 0);
}

.hotel-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
}

.dropdown {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  background: rgba(255, 255, 255, 0.95);
  color: #1a2a40;
  padding: 18px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.dropdown-item:after {
  content: '+';
  font-size: 22px;
  color: #00aced;
  transition: all 0.3s ease;
}

.dropdown-item.active:after {
  content: '-';
  color: #ff6b6b;
}

.dropdown-item:hover {
  background: #fff;
}

.dropdown-content {
  display: none;
  padding: 20px;
  background-color: #f8f9fa;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid #eee;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 500px; }
}

.dropdown-item.active .dropdown-content {
  display: block;
}

.enroll-btn {
  margin-top: 30px;
  background: #00aced;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 172, 237, 0.3);
}

.enroll-btn:hover {
  background: #0095d6;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 172, 237, 0.4);
}

.enroll-btn:active {
  transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hotel-container {
    gap: 30px;
  }
  
  .hotel-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hotel-management-section {
    padding: 60px 15px;
  }
  
  .hotel-container {
    flex-direction: column;
  }
  
  .hotel-image {
    order: -1;
    max-width: 100%;
  }
  
  .hotel-content h2, 
  .hotel-content p {
    text-align: center;
  }
  
  .hotel-content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .enroll-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hotel-content {
    padding: 25px 20px;
  }
  
  .dropdown-item {
    padding: 15px 20px;
  }
  
  .enroll-btn {
    padding: 14px 20px;
  }
}

.academy-container {
    max-width: 1250px;
    margin: 0 auto;
}

.academy-courses {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
  padding-top: 0;
}

.section-header {
  max-width: 1250px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00aaff);
  border-radius: 2px;
}

.section-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #4a4a4a;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 20px;
}

.course-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.course-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00aaff);
}

.course-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-image {
  transform: scale(1.05);
}

.course-content {
  padding: 25px;
}

.course-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  background: linear-gradient(90deg, #007bff, #00aaff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 10px;
}

.course-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
  padding: 10px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.course-duration, 
.course-level {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #6c757d;
}

.course-duration i, 
.course-level i {
  margin-right: 8px;
  color: #007bff;
}

.enroll-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #007bff, #00aaff);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
  border: none;
  cursor: pointer;
}

.enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .courses-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .academy-courses {
    padding: 80px 20px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .academy-courses {
    padding: 60px 15px;
  }
  
  .section-title:after {
    width: 60px;
    bottom: -8px;
  }
  
  .course-content {
    padding: 20px;
  }
  
  .course-card h3 {
    font-size: 1.3rem;
  }
}

/* Academy Detailed Courses Section */
.academy-detailed-courses {
    background-color: #ffffff;
    padding-top: 20px;
}

.academy-heading {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 60px;
  color: #1c1c89;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.academy-heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1c1c89, #0056e0);
  border-radius: 2px;
}

/* Course Cards */
.academy-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 137, 0.08);
  margin-bottom: 50px;
  transition: all 0.3s ease;
  position: relative;
}

.academy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(28, 28, 137, 0.15);
}

.academy-card.reverse {
  flex-direction: row-reverse;
}

/* Image Container */
.academy-card .image-container {
  flex: 1;
  min-width: 45%;
  overflow: hidden;
}

.academy-card img {
  width: 50%;
  height: 420px;
  transition: transform 0.5s ease;
}

.academy-card:hover img {
  transform: scale(1.05);
}

/* Text Content */
.academy-card .text {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.academy-card h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: #1c1c89;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1;
}

.academy-card p {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 10px;
  line-height: 1.5;
}

.academy-card h4 {
  margin: 20px 0 10px;
  font-size: 1.1rem;
  color: #0056e0;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.academy-card h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #0056e0;
  border-radius: 50%;
}

/* List Items */
.academy-card ul {
  padding-left: 0;
  margin: 15px 0;
}

.academy-card li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  list-style-type: none;
  padding-left: 30px;
  color: #4a4a4a;
}

.academy-card li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: #0056e0;
  font-weight: bold;
}

/* Apply Button */
.apply-btn {
  margin-top: 25px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #1c1c89, #0056e0);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(28, 28, 137, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.apply-btn:hover {
  background: linear-gradient(135deg, #15156e, #0043ba);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(28, 28, 137, 0.3);
}

.apply-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .academy-card {
    flex-direction: column;
    margin-bottom: 40px;
  }
  
  .academy-card.reverse {
    flex-direction: column;
  }
  
  .academy-card .image-container {
    min-width: 100%;
  }
  
  .academy-card img {
    min-height: 300px;
    width: 100%;
  }
  
  .academy-card .text {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .academy-detailed-courses {
    padding: 80px 0;
  }
  
  .academy-heading {
    margin-bottom: 50px;
  }
  
  .academy-heading::after {
    width: 60px;
    bottom: -12px;
  }
  
  .academy-card {
    margin-bottom: 35px;
  }
  
  .academy-card .text {
    padding: 25px;
  }
  
  .apply-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .academy-detailed-courses {
    padding: 60px 0;
  }
  
  .academy-card img {
    min-height: 250px;
  }
  
  .academy-card .text {
    padding: 20px;
  }
  
  .academy-card li {
    padding-left: 25px;
  }
}

.academy-benefits {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
    padding-top: 0;
}

.benefits-heading {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #1c1c89;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefits-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1c1c89, #0056e0);
  border-radius: 2px;
}

.subheading {
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #1c1c89;
  margin-bottom: 60px;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background-color: #fff;
  border: 2px solid #2b27ff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #2b27ff, #2b27ff);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 31, 230, 0.1);
}

.icon-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.check-icon {
  color: #241be7;
  font-size: 24px;
  margin-right: 15px;
  font-weight: bold;
  min-width: 24px;
}

.benefit-card h4 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1c1c89;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 10px 0 0;
  padding-left: 39px; /* Aligns with icon */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .academy-benefits {
    padding: 80px 20px;
  }
  
  .benefits-heading::after {
    width: 60px;
    bottom: -8px;
  }
  
  .subheading {
    margin-bottom: 50px;
  }
  
  .benefit-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .academy-benefits {
    padding: 60px 15px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-card p {
    padding-left: 0;
  }
  
  .check-icon {
    margin-right: 12px;
  }
}

/* Franchise Banner Section */
.franchise-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #002c74 0%, #0056b3 100%);
  padding: 80px 10%;
  color: white;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-top: 160px;
}

.franchise-content {
  max-width: 50%;
  position: relative;
  z-index: 1;
}

.franchise-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.franchise-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 30px;
  line-height: 1.6;
}

.franchise-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(90deg, #1db954, #169e46);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 185, 84, 0.3);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.franchise-btn:hover {
  background: linear-gradient(90deg, #169e46, #1db954);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(29, 185, 84, 0.4);
}

.franchise-btn:active {
  transform: translateY(0);
}

.franchise-image {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.franchise-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: transform 0.5s ease;
}

.franchise-image:hover img {
  transform: scale(1.03);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Franchise Main Section */
.franchise-section {
  background: #fff;
  color: #222;
  padding: 80px 20px;
}

.franchise-header {
  max-width: 1200px;
  margin: 0 auto 50px;
}

.franchise-header h3 {
  color: #000000;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.franchise-header h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #1a4b91, #2aa4f8);
  border-radius: 2px;
}

.franchise-header p {
  max-width: 800px;
  margin: 20px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  color: #000000;
}

/* Categories Section */
.franchise-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.category-card {
  background: linear-gradient(135deg, #012f7b, #0056b3);
  padding: 30px 20px;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(1, 47, 123, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(1, 47, 123, 0.3);
}

.category-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  object-fit: contain;
  filter: invert(1);
}

.category-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 10px 0 0;
}

/* Benefits Section */
.franchise-benefits {
  padding: 60px 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.franchise-benefits h3 {
  margin-bottom: 40px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #002c74;
  text-align: center;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: #0056b3;
}

.benefit-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #002c74;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.6;
}

/* Stats Section */
.franchise-stats {
  background: linear-gradient(135deg, #023a88, #0056b3);
  color: white;
  padding: 80px 20px;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.franchise-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://example.com/dots-pattern.png');
  opacity: 0.1;
  z-index: 0;
}

.franchise-stats h4 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  background: rgba(255,255,255,0.1);
  padding: 30px 20px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.15);
}

.stat-item img {
  width: 50px;
  margin-bottom: 15px;
  object-fit: contain;
  filter: invert(1);
}

.stat-item h5 {
  font-size: 2.5rem;
  margin: 10px 0;
  font-weight: 700;
  color: #fff;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Newsletter Section */
.newsletter {
  background: #fff;
  padding: 40px;
  margin: -40px auto 0;
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  border: 1px solid #e0e0e0;
}

.newsletter h4 {
  margin-bottom: 25px;
  font-size: 1.5rem;
  color: #002c74;
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 15px 25px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 60%;
  max-width: 400px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2);
  outline: none;
}

.newsletter-form button {
  padding: 15px 35px;
  background: linear-gradient(90deg, #1a4b91, #2aa4f8);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.newsletter-form button:hover {
  background: linear-gradient(90deg, #2aa4f8, #1a4b91);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 73, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .franchise-banner {
    padding: 60px 5%;
  }
  
  .franchise-content {
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .franchise-image {
    margin: 0 auto;
  }
  
  .newsletter-form input[type="email"] {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .franchise-banner {
    padding: 50px 20px;
  }
  
  .franchise-content h2 {
    font-size: 2rem;
  }
  
  .franchise-btn {
    padding: 12px 25px;
  }
  
  .newsletter {
    padding: 30px 20px;
  }
  
  .newsletter-form button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .franchise-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .category-card {
    padding: 20px 10px;
  }
  
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}