/* HERO */

.sf-hero {
  background: linear-gradient(135deg, #7a0000, #ff3c3c);
  color: #fff;
  padding: 140px 20px;
  text-align: center;
}

.sf-hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sf-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  opacity: .9;
}



/* SECTION TITLE */

.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff3c3c;
  display: block;
  margin: 10px auto;
}



/* FEATURES */

.sf-features {
  padding: 90px 0;
  background: #f6f7fb;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: .35s;
}
.feature-card h3 {
  font-size: 18px;
}

.feature-card p {
  text-align: justify;
  font-size: 14px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.feature-card .icon {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3c3c, #ff7a18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}



/* JOB SECTION */

.sf-jobs {
  padding: 90px 0;
  background: #fff;
}

.job-desc {
  text-align: center;
  margin-bottom: 40px;
}

.job-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 700px;
  margin: auto;
}

.job-grid ul {
  list-style: none;
  padding: 0;
}

.job-grid li {
  padding: 8px 0;
  position: relative;
  padding-left: 22px;
}

.job-grid li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff3c3c;
}



/* TRAINING */

.sf-training {
  background: linear-gradient(120deg, #fff0f0, #ffe4e4);
  padding: 80px 20px;
  text-align: center;
}



/* NOTES */

.sf-notes {
  padding: 90px 0;
}

.notes-box {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.notes-box p {
  border-left: 4px solid #ff3c3c;
  padding-left: 12px;
  margin-bottom: 12px;
}



/* MOBILE */

@media(max-width:768px) {

  .sf-hero h1 {
    font-size: 36px;
  }

  .job-grid {
    grid-template-columns: 1fr;
  }

}

/* CAREER SECTION */

.sf-career {
  padding: 90px 0;
  background: #ffffff;
}

.career-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.career-box {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .3s;
}

.career-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.career-box i {
  font-size: 32px;
  color: #ff3c3c;
  margin-bottom: 10px;
}

.career-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.career-box ul {
  list-style: none;
  padding: 0;
}

.career-box li {
  padding: 5px 0;
  font-size: 14px;
}



/* TRAINING SECTION */
.sf-training {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.training-desc {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
  font-size: 16px;
  color: #555;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.training-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: .3s;
}

.training-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.training-item i {
  font-size: 36px;
  color: #ff3c3c;
  margin-bottom: 15px;
  display: block;
}

.training-item h4 {
  font-size: 16px;
  font-weight: 600;
}

.sf-notes {
  background: #fefefe;
  padding: 70px 20px;
  max-width: 900px;
  margin: 60px auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2e2e2e;
}

.sf-notes .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #c53030;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
  /* border-bottom: 4px solid #c53030; */
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8px;
}

.notes-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.note-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(197, 75, 75, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  border-left: 6px solid #c53030;
}

.note-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(197, 75, 75, 0.3);
}

.note-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #9b2c2c;
}

.note-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  font-weight: 500;
}

.note-card p strong {
  color: #6b1f1f;
  font-weight: 600;
}

/* Responsive tweaks */

@media (max-width: 600px) {
  .notes-wrapper {
    grid-template-columns: 1fr;
  }

  .sf-notes {
    padding: 50px 15px;
  }
}