* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

/* Global Dotted Background Pattern */
.background-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(
        circle at 25% 25%,
        rgba(0, 48, 135, 0.1) 1px, /* Navy blue dots */
        transparent 1px
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(0, 48, 135, 0.1) 1px, /* Navy blue dots */
        transparent 1px
      );
  background-size: 40px 40px;
  z-index: 0;
}

/* Main Banner Section */
.sact-banner-section {
  width: 100%;
  min-height: 100vh; /* Changed from height to min-height */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF; /* White background */
  color: #000000; /* Black text */
  box-sizing: border-box;
}

.sact-banner-section .sact {
  color: #FFC107; /* Yellow for SACT branding */
}

.sact-banner-section .container {
  max-width: 900px;
  padding: 3rem 2rem; /* Increased top padding */
  text-align: center;
  position: relative;
  z-index: 1;
}

.sact-banner-section .title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003087; /* Navy blue for headings */
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.sact-banner-section .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  color: #4B4B4B; /* Gray for secondary text */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sact-banner-section .highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.sact-banner-section .highlight-item {
  display: flex;
  align-items: center;
  background: rgba(0, 48, 135, 0.1); /* Light navy blue background */
  backdrop-filter: blur(5px);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #000000; /* Black text */
}

.sact-banner-section .highlight-icon {
  margin-right: 0.6rem;
  font-size: 1.2rem;
  color: #FFC107; /* Yellow icons */
}

.sact-banner-section .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.sact-banner-section .cta-button {
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sact-banner-section .cta-button i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.sact-banner-section .primary {
  background-color: #FFC107; /* Yellow primary button */
  color: #000000; /* Black text */
}

.sact-banner-section .primary:hover {
  background-color: #FFB300; /* Darker yellow on hover */
  transform: translateY(-2px);
}

.sact-banner-section .secondary {
  background-color: #003087; /* Navy blue secondary button */
  color: #FFFFFF; /* White text */
}

.sact-banner-section .secondary:hover {
  background-color: #002060; /* Darker navy blue on hover */
  transform: translateY(-2px);
}

.sact-banner-section .tertiary {
  background-color: #D32F2F; /* Soft red tertiary button */
  color: #FFFFFF; /* White text */
}

.sact-banner-section .tertiary:hover {
  background-color: #B71C1C; /* Darker red on hover */
  transform: translateY(-2px);
}

.sact-banner-section .floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.sact-banner-section .floating-icon {
  position: absolute;
  opacity: 0.2;
  font-size: 3rem;
  color: #003087; /* Navy blue icons */
  animation: float 6s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@media (max-width: 768px) {
  .sact-banner-section {
    padding-top: 100px; /* Increased padding for mobile safe area */
    min-height: auto; /* Allow content to dictate height */
  }
  .sact-banner-section .container {
    padding: 2.5rem 1.5rem; /* Adjusted padding */
  }
  .sact-banner-section .title {
    font-size: 2rem;
  }
  .sact-banner-section .subtitle {
    font-size: 1rem;
  }
  .sact-banner-section .highlight-item {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
  .sact-banner-section .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .sact-banner-section {
    padding-top: 120px; /* Further increase for smaller screens */
  }
  .sact-banner-section .container {
    padding: 2rem 1rem;
  }
  .sact-banner-section .title {
    font-size: 1.6rem;
  }
  .sact-banner-section .highlights {
    flex-direction: column;
    align-items: center;
  }
  .sact-banner-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .sact-banner-section .cta-button {
    width: 100%;
    max-width: 250px;
  }
}

/* Career Path Section */
.career-path-section-alt {
  width: 100%;
  background: #FFFFFF; /* White background */
  padding: 5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.career-path-section-alt::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(
        circle at 25% 25%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      );
  background-size: 40px 40px;
  z-index: 0;
}

.career-container-alt {
  max-width: 900px;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.career-title-alt {
  font-size: 2.8rem;
  font-weight: 800;
  color: #003087; /* Navy blue */
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.career-description-alt {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #000000; /* Black text */
  margin-bottom: 1.2rem;
  font-family: 'Poppins', sans-serif;
}

.highlight-alt {
  color: #FFC107; /* Yellow highlight */
  font-weight: 700;
}

@media (max-width: 768px) {
  .career-title-alt {
    font-size: 2rem;
  }
  .career-description-alt {
    font-size: 1rem;
  }
  .career-container-alt {
    padding: 2rem 1.5rem;
  }
}

/* What is SACT Section */
.what-is-sact {
  background: #FFFFFF; /* White background */
  padding: 5rem 1.5rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.what-is-sact::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(
        circle at 25% 25%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      );
  background-size: 40px 40px;
  z-index: 0;
}

.sact-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sact-title {
  font-size: 2.8rem;
  color: #003087; /* Navy blue */
  margin-bottom: 1rem;
  font-weight: 800;
}

.sact-highlight {
  color: #FFC107; /* Yellow */
}

.sact-intro {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto 3rem auto;
  color: #000000; /* Black */
}

.sact-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.sact-feature {
  background: #F5F5F5; /* Light gray card background */
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
}

.sact-feature::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle at top left, #FFC107 0%, transparent 70%); /* Yellow gradient */
  opacity: 0.05;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.sact-feature:hover {
  transform: translateY(-10px) scale(1.02);
}

.sact-feature:hover::before {
  opacity: 0.12;
}

.sact-icon {
  font-size: 2.5rem;
  color: #D32F2F; /* Soft red icons */
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.sact-feature:hover .sact-icon {
  animation: bounceIcon 0.6s ease;
}

@keyframes bounceIcon {
  0% { transform: scale(1); }
  40% { transform: scale(1.2); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.sact-feature h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000; /* Black */
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.sact-feature p {
  font-size: 1rem;
  color: #4B4B4B; /* Gray */
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .sact-title {
    font-size: 2rem;
  }
  .sact-intro {
    font-size: 1rem;
  }
  .sact-feature h4 {
    font-size: 1.1rem;
  }
  .sact-feature p {
    font-size: 0.95rem;
  }
  .sact-icon {
    font-size: 2rem;
  }
}

/* What You'll Get Section */
.what-you-get {
  padding: 60px 20px;
  background: #FFFFFF; /* White */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.what-you-get::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(
        circle at 25% 25%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      );
  background-size: 40px 40px;
  z-index: 0;
}

.get-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.get-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #003087; /* Navy blue */
}

.highlight-get {
  color: #FFC107; /* Yellow */
}

.get-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.get-item {
  background-color: #F5F5F5; /* Light gray cards */
  padding: 30px 20px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.get-item:hover {
  transform: translateY(-8px);
}

.get-icon {
  font-size: 2.5rem;
  color: #D32F2F; /* Soft red */
  margin-bottom: 15px;
}

.get-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #000000; /* Black */
}

.get-item p {
  font-size: 1rem;
  color: #4B4B4B; /* Gray */
  line-height: 1.6;
}

@media (max-width: 768px) {
  .get-title {
    font-size: 2rem;
  }
  .get-item {
    padding: 25px 15px;
  }
  .get-icon {
    font-size: 2rem;
  }
}

/* BM Foundation Support Section */
.bm-support {
  background: #FFFFFF; /* White background */
  padding: 80px 20px;
  color: #000000; /* Black */
  font-family: 'Inter', 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.bm-support::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(
        circle at 25% 25%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      );
  background-size: 40px 40px;
  z-index: 0;
}

.support-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.support-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #003087; /* Navy blue */
  line-height: 1.2;
}

.support-intro {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #000000; /* Black */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.support-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 0 auto 50px;
  max-width: 900px;
}

.support-card {
  background: #F5F5F5; /* Light gray */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  width: 380px;
}

.support-card:hover {
  transform: translateY(-5px);
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #D32F2F; /* Soft red */
}

.support-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #000000; /* Black */
}

.support-card p {
  font-size: 1rem;
  color: #4B4B4B; /* Gray */
  line-height: 1.6;
}

.free-badge {
  display: inline-block;
  background: #FFF8E1; /* Light yellow */
  color: #D32F2F; /* Soft red */
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 10px;
}

.support-quote {
  font-size: 1.2rem;
  border-left: 5px solid #D32F2F; /* Soft red */
  line-height: 1.7;
  padding: 40px;
  background: #F5F5F5; /* Light gray */
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.support-quote:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 193, 7, 0.1); /* Light yellow */
  font-family: serif;
  line-height: 1;
}

.quote-highlight {
  color: #FFC107; /* Yellow */
  font-weight: 600;
}

.founder {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #4B4B4B; /* Gray */
}

@media (max-width: 768px) {
  .support-title {
    font-size: 2.2rem;
  }
  .support-points {
    flex-direction: column;
  }
  .support-quote {
    padding: 30px 20px;
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .support-card {
    width: 100%;
  }
}

/* SACT Test Section */
.sact-section {
  background: #FFFFFF; /* White background */
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  color: #000000; /* Black */
  position: relative;
  overflow: hidden;
}

.sact-section::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(
        circle at 25% 25%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      );
  background-size: 40px 40px;
  z-index: 0;
}

.sact-section .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #003087; /* Navy blue */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.sact-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sact-steps li {
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #F5F5F5; /* Light gray */
  padding: 16px 24px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  text-align: left;
  flex-wrap: wrap;
}

.sact-steps li:hover {
  transform: translateY(-4px);
}

.sact-steps i {
  font-size: 1.5rem;
  color: #D32F2F; /* Soft red */
  flex-shrink: 0;
  min-width: 30px;
  text-align: center;
  margin-top: 4px;
}

.highlight {
  font-weight: 600;
  color: #FFC107; /* Yellow */
}

@media (max-width: 768px) {
  .sact-title {
    font-size: 2rem;
    flex-direction: column;
  }
  .sact-steps li {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    padding: 16px;
  }
  .sact-steps i {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

/* Who Can Take Section */
.who-can-take-section {
  background: #FFFFFF; /* White background */
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
  color: #000000; /* Black */
  position: relative;
  overflow: hidden;
}

.who-can-take-section::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(
        circle at 25% 25%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      );
  background-size: 40px 40px;
  z-index: 0;
}

.who-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.who-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003087; /* Navy blue */
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.who-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: #F5F5F5; /* Light gray */
  border-radius: 12px;
  animation: none;
}

.who-item p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #000000; /* Black */
}

.who-arrow::before {
  content: "➤";
  color: #D32F2F; /* Soft red */
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .who-title {
    font-size: 2rem;
    flex-direction: column;
  }
  .who-item {
    flex-direction: column;
    text-align: center;
  }
  .who-arrow::before {
    content: "▼";
    color: #D32F2F;
    font-size: 1rem;
  }
}

/* Career CTA Section */
.career-cta {
  background: #FFFFFF; /* White */
  text-align: center;
  padding: 80px 20px;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.career-cta::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(
        circle at 25% 25%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      );
  background-size: 40px 40px;
  z-index: 0;
}

.cta-title {
  font-size: 2.5rem;
  color: #003087; /* Navy blue */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #000000; /* Black */
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.cta-btn {
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-btn.primary {
  background-color: #FFC107; /* Yellow */
  color: #000000; /* Black */
}

.cta-btn.primary:hover {
  background-color: #FFB300; /* Darker yellow */
}

.cta-btn.secondary {
  background-color: #FFFFFF; /* White */
  border: 2px solid #D32F2F; /* Soft red border */
  color: #D32F2F; /* Soft red text */
}

.cta-btn.secondary:hover {
  background-color: #FFF8E1; /* Light yellow */
}

.cta-btn.tertiary {
  background-color: #003087; /* Navy blue */
  color: #FFFFFF; /* White */
}

.cta-btn.tertiary:hover {
  background-color: #002060; /* Darker navy blue */
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Testimonial Section */
.testimonial_section {
  background: #FFFFFF; /* White background */
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.testimonial_section::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
      radial-gradient(
        circle at 25% 25%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      ),
      radial-gradient(
        circle at 75% 75%,
        rgba(0, 48, 135, 0.1) 1px,
        transparent 1px
      );
  background-size: 40px 40px;
  z-index: 0;
}

.testimonial_section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section_heading {
  margin-bottom: 40px;
}

.heading_text {
  font-size: 2.5rem;
  color: #003087; /* Navy blue */
}

.carousel_arrow {
  display: flex;
  gap: 10px;
}

.cc2c_left_arrow,
.cc2c_right_arrow {
  background: #D32F2F; /* Soft red */
  color: #FFFFFF; /* White */
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.cc2c_left_arrow:hover,
.cc2c_right_arrow:hover {
  background: #B71C1C; /* Darker red */
}

.testimonial_carousel {
  margin-top: 20px;
}

.carousel_item {
  padding: 0 15px;
}

.testimonial_item {
  background: #F5F5F5; /* Light gray */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.testimonial_content {
  position: relative;
}

.rating_star {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.rating_star li.active i {
  color: #FFC107; /* Yellow */
}

.testimonial_title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000000; /* Black */
  margin-bottom: 10px;
}

.testimonial_content p {
  font-size: 1rem;
  color: #4B4B4B; /* Gray */
  line-height: 1.6;
}

.quote_icon {
  position: absolute;
  bottom: -10px;
  right: 20px;
  color: #D32F2F; /* Soft red */
  opacity: 0.2;
}

@media (max-width: 768px) {
  .heading_text {
    font-size: 2rem;
  }
  .carousel_arrow {
    justify-content: center;
    margin-top: 20px;
  }
}