 .scarcity-banner-section {
  background: linear-gradient(90deg, #FDC700 0%, #f54900 100%);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.scarcity-banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.scarcity-icon {
  width: 20px;
  height: 20px;
}
.scarcity-text {
  color: var(--text-light);
  font-family: 'Inter', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Aspira header section - rambal */
body {
        width: 100%; /* Ensure the body and html take up 100% of the viewport width */
        overflow-x: hidden; /* Hide horizontal overflow */
    }
header {
  padding: 15px 0px;
}

.header__cta {
  gap: 22px;
}
a.mobile-call-cta {
  width: 40px;
  height: 40px;
  display: none;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #00aeef;
}
/*
header.stick-top {
    background: rgba(42, 58, 96, .35);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 20px 40px;
    margin-top: 20px;
    position: fixed;
    left: 50%;
    transform: translate(-50%);
    z-index: 100;
}

header.mblSticky {
  position: fixed !important;
  width: 98.5%;
  bottom: 0px;
  z-index: 1021;
  display: flex !important;
  margin: auto;
  left: 0;
  right: 0;
  padding: 20px 10px;
  background: #172644;
}
*/
/* CSS for section section:Hero */
.hero-section {
  background: var(--bg-gradient-light);
 /* padding-top: 5rem; */
  padding-bottom: 5rem;
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.hero-badge {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  line-height: 1rem;
}
.hero-heading {
  font-size: 3.75rem;
  line-height: 4.6875rem;
  font-weight: 400;
}
.hero-subheading {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.hero-image-wrapper {
  flex: 1;
  position: relative;
  max-width: 600px;
}
.hero-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hero-image-badge {
  position: absolute;
  top: -1.5rem;
  right: 1.5rem;
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 400;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-heading {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .hero-subheading {
    font-size: 1rem;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-image-wrapper {
    margin-top: 2rem;
  }
  .hero-image-badge {
    top: -1rem;
    right: 1rem;
  }
}

/* CSS for section section:TrustBar */
.trust-bar-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
}
.trust-bar-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.trust-icon-wrapper {
  background-color: #e0e7ff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.trust-icon-wrapper img {
  width: 24px;
  height: 24px;
}
.trust-number {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 400;
  color: var(--text-dark);
}
.trust-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--text-body);
}
@media (max-width: 768px) {
  .trust-bar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* CSS for section section:WhyAspira */
.why-aspira-section {
  background-color: var(--bg-light-gray);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.feature-icon-wrapper {
  background-color: #e0e7ff;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
.feature-icon-wrapper img {
  width: 24px;
  height: 24px;
}
.feature-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.feature-description {
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:SuccessStories */
.success-stories-section {
  background-color: #ffffff;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.story-card {
  background: linear-gradient(135deg, #eef2ff 0%, #faf5ff 141.42%);
  border: 1px solid #e0e7ff;
  border-radius: 14px;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.story-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 4px #ffffff;
  margin-bottom: 1rem;
}
.story-name {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 400;
}
.story-title {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.story-company-badge {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.125rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}
.story-salary {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  color: var(--secondary-color);
}
@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:CourseOutcomes */
.outcomes-section {
  background: var(--bg-gradient-dark);
  color: var(--text-light);
}
.outcomes-header {
  max-width: 896px;
}
.outcomes-title {
  color: var(--text-light);
}
.outcomes-subtitle {
  color: #c6d2ff;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  max-width: 896px;
  margin: 0 auto;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.outcome-item img {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
}
.outcome-item p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #eef2ff;
}
@media (max-width: 768px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:PortfolioShowcase */
.portfolio-section {
  background-color: var(--bg-light-gray);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.portfolio-card {
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.portfolio-image-wrapper {
  position: relative;
  background-color: #f3f4f6;
}
.portfolio-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-image-link:hover .portfolio-overlay {
  opacity: 1;
}
.play-icon {
  width: 20px;
  height: 20px;
}
.portfolio-info {
  padding: 1rem;
}
.portfolio-title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.portfolio-author {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #6a7282;
}
.portfolio-footer {
  text-align: center;
  margin-top: 3rem;
}
.portfolio-view-all {
  color: var(--primary-color);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Mentor */
.mentor-section {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.lead-mentor-container {
  display: flex;
  gap: 3rem;
  padding-bottom:50px;
  align-items: center;
}
.lead-mentor-image-wrapper {
  flex: 1;
  max-width: 600px;
}
.lead-mentor-image {
  border-radius: 16px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.lead-mentor-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.lead-mentor-badge {
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
}
.lead-mentor-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 400;
}
.lead-mentor-achievements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.achievement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.achievement-icon-wrapper {
  background-color: #e0e7ff;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.achievement-icon-wrapper img {
  width: 20px;
  height: 20px;
}
.lead-mentor-quote {
  font-style: italic;
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
  margin-top: 1rem;
}
.workshops-container {
  background: linear-gradient(135deg, #faf5ff 0%, #eef2ff 141.42%);
  padding: 3rem;
  margin-bottom: 30px;
  border-radius: 16px;
}
.workshops-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 1.5rem;
}
.workshops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}
.workshop-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #364153;
  font-size: 1rem;
}
.support-team-container {
  background-color: var(--bg-light-gray);
  padding: 3rem;
  border-radius: 16px;
}
.support-team-title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0.5rem;
}
.support-team-description {
  max-width: 90%;
  margin-bottom: 2rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.team-member-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.team-member-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0px 0px 0px 4px #e0e7ff;
}
.team-member-name {
  font-size: 1rem;
  font-weight: 400;
}
.team-member-title {
  font-size: 0.875rem;
  color: var(--text-body);
  margin: 0.25rem 0;
}
.team-member-company {
  font-size: 0.875rem;
  color: var(--primary-color);
}
.support-badges {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.support-badge {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
}
@media (max-width: 1024px) {
  .lead-mentor-container { flex-direction: column; }
  .workshops-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .support-badges { flex-direction: column; align-items: flex-start; }
}

/* CSS for section section:Curriculum */
.curriculum-section {
  background-color: var(--bg-light-gray);
}
.curriculum-container {
  max-width: 896px;
}
.curriculum-icon-wrapper {
  background-color: #e0e7ff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}
.curriculum-icon-wrapper img {
  width: 32px;
  height: 32px;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion-item {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.875rem;
  color: #0a0a0a;
}
.accordion-header::-webkit-details-marker {
  display: none;
}
.module-prefix {
  color: var(--primary-color);
  margin-right: 0.5rem;
}
.accordion-icon {
  transition: transform 0.3s ease;
}
.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-body);
}

/* CSS for section section:Tools */
.tools-section {
  background-color: #ffffff;
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.tool-item {
  width: 112px;
  height: 56px;
  border-radius: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.tool-item span {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
}
.bonus-box {
  background: linear-gradient(90deg, #eef2ff 0%, #faf5ff 100%);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 4rem;
  text-align: center;
  font-size: 1.125rem;
  color: #364153;
}

/* CSS for section section:Fees */
.fees-section {
  background-color: #ffffff;
}
.fees-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.pricing-card {
  flex: 1;
  background: var(--bg-gradient-purple);
  color: var(--text-light);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-title {
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--text-light);
  font-weight: 400;
}
.pricing-duration {
  color: #e0e7ff;
  font-size: 1rem;
}
.price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1rem;
}
.current-price {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 400;
}
.original-price {
  color: #c6d2ff;
  font-size: 1rem;
}
.offer-text {
  color: #e0e7ff;
  font-size: 1rem;
}
.emi-info {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.emi-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
}
.emi-amount {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}
.emi-details {
  font-size: 0.875rem;
  color: #e0e7ff;
}
.enroll-btn {
  background-color: var(--text-light);
  color: var(--primary-color);
  font-weight: 400;
  margin-top: 1rem;
  width: 100%;
}
.includes-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.includes-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.includes-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #364153;
  font-size: 1rem;
}
.guarantee-box {
  background-color: #fefce8;
  border: 1px solid #fff085;
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.875rem;
  color: #364153;
}
@media (max-width: 1024px) {
  .fees-container {
    flex-direction: column;
  }
}

/* CSS for section section:EnrollForm */
.enroll-section {
  background: var(--bg-gradient-light);
}
.enroll-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 590px) {
  .enroll-form-wrapper {
   padding: 1.5rem;  
}
  }
}
.enroll-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.875rem;
  color: #0a0a0a;
}
.form-group input {
  background-color: #f3f3f5;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: #717182;
}
.form-group input::placeholder {
  color: #717182;
}
.form-submit-btn {
  width: 100%;
  padding: 0.75rem;
}
.form-disclaimer {
  font-size: 0.875rem;
  text-align: center;
  color: #6a7282;
}

/* CSS for section section:Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, #faf5ff 0%, #eef2ff 141.42%);
}
.testimonial-badge {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.testimonials-subtitle {
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.video-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.video-thumbnail-wrapper {
  position: relative;
  display: block;
}
.video-thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: 0.7;
}
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-quote-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.video-quote {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #364153;
}
.video-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.author-name {
  font-size: 1rem;
  font-weight: 400;
}
.author-title {
  font-size: 0.875rem;
  color: var(--text-body);
}
.text-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.text-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.text-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-company {
  font-size: 0.75rem;
  color: var(--primary-color);
}
.rating {
  display: flex;
  gap: 0.25rem;
}
.rating img {
  width: 16px;
  height: 16px;
}
.text-quote {
  font-size: 0.875rem;
  line-height: 1.4rem;
  color: #364153;
}
.placed-students-banner {
  max-width: 400px;
  margin: 3rem auto 0;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.avatar-stack {
  display: flex;
  position: relative;
  width: 104px; /* 4 * 24px + 32px */
  height: 32px;
}
.stacked-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  position: absolute;
}
.stacked-avatar:nth-child(1) { left: 0; z-index: 4; }
.stacked-avatar:nth-child(2) { left: 24px; z-index: 3; }
.stacked-avatar:nth-child(3) { left: 48px; z-index: 2; }
.stacked-avatar:nth-child(4) { left: 72px; z-index: 1; }
.placed-count {
  font-weight: 700;
}
@media (max-width: 1200px) {
  .text-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .text-grid { grid-template-columns: 1fr; }
}

/* CSS for section section:Placement */
.placement-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 141.42%);
}
.placement-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.placement-step-card {
  padding: 1.5rem;
}
.step-icon-wrapper {
  background-color: #dcfce7;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}
.step-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.step-description {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.placement-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.stat-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.stat-number {
  font-size: 2.25rem;
  line-height: 2.5rem;
  color: var(--secondary-color);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1rem;
  line-height: 1.5rem;
}
.hiring-partners {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 3rem;
}
.partners-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.partner-badge {
  border: 1px solid #d1d5dc;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: #364153;
}
@media (max-width: 1024px) {
  .placement-steps-grid { grid-template-columns: 1fr 1fr; }
  .placement-stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .placement-steps-grid { grid-template-columns: 1fr; }
}

/* CSS for section section:FAQ */
.faq-section {
  background-color: #ffffff;
}
.faq-container {
  max-width: 864px;
}
.faq-icon-wrapper {
  background-color: #f3e8ff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}
.faq-icon-wrapper img {
  width: 32px;
  height: 32px;
}
.faq-contact-box {
  background-color: #eef2ff;
  border-radius: 14px;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}
.faq-contact-title {
  font-size: 1rem;
  font-weight: 400;
  color: #364153;
  margin-bottom: 1rem;
}
.faq-contact-details {
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-color);
}
.faq-contact-details a:hover {
  text-decoration: underline;
}
/* Ram */
.faq-contact-details1 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-color);
}
.faq-contact-details1 a:hover {
  text-decoration: none;
}
/* Using styles from Curriculum section for accordion */
.accordion { display: flex; flex-direction: column; gap: 1rem; }
.accordion-item { background-color: #f9fafb; border: 1px solid var(--border-light); border-radius: 10px; }
.accordion-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; cursor: pointer; list-style: none; font-size: 1rem; color: #0a0a0a; }
.accordion-header::-webkit-details-marker { display: none; }
.accordion-icon { transition: transform 0.3s ease; }
.accordion-item[open] .accordion-icon { transform: rotate(180deg); }
.accordion-content { padding: 0 1.5rem 1.5rem; color: var(--text-body); }

/* CSS for section section:FinalCTA */
.final-cta-section {
  background: var(--bg-gradient-cta);
  color: var(--text-light);
}
.final-cta-container {
  max-width: 864px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.final-cta-title {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 400;
  color: var(--text-light);
}
.final-cta-subtitle {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #e0e7ff;
  max-width: 672px;
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.cta-btn-primary {
  background-color: #ffffff;
  color: var(--primary-color);
}
.cta-btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: 2px solid #ffffff;
}
.final-cta-info {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}
.info-icon {
  width: 8px;
  height: 8px;
  background-color: #05df72;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .final-cta-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .final-cta-buttons, .final-cta-info {
    flex-direction: column;
  }
}
@media (max-width: 1280px) {
  header.container {
    padding: 20px 16px;
  }
  .header__cta > button:nth-child(1) {
    display: none;
  }
}

/** Watsapp code **/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

 