/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ===================================== BASE STYLES ===================================== */
.program-section {
  padding: 80px 0;
}

.section-subtitle {
  font-weight: 600;
  color: #1f3b75;
  margin-bottom: 6px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1f3b75;
}


.h3-text {
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: 300;
}



.coming-overlay {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: absolute;
  z-index: 5;
}

.coming-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.coming-text {
  color: white;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

/* ===================================== ACCORDION STYLES ===================================== */
.accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: #1d2b4f;
  background: #f2f3ff;
  padding: 18px 22px;
  box-shadow: none;
}

.accordion-button.collapsed {
  background: #ffffff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  padding: 20px 22px;
}


/* ===================================== IMAGES ===================================== */
.ui-image {
  padding-top: 120px;
  max-width: 430px;
  transition: opacity 0.3s ease-in-out;
}

.fade-in {
  opacity: 1;
}

.ui-image:not(.fade-in) {
  opacity: 0.6;
}

.mobile-accordion-img {
  display: none;
  border-radius: 12px;
}


/* ===================================== JOIN CARDS ===================================== */
.join-section {
  background: #ffffff;
}

.join-card {
  height: 100%;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid #e5eaf2;
  background: #fff;
  transition: all 0.35s ease;
}

.join-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(31, 59, 117, 0.15);
  border-color: #1f3b75;
}

.join-card .card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  border: none;
  padding: 0;
  background: transparent;
}

.join-card h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1f3b75;
}

.join-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1f3b75;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.join-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 0;
}


/* ===================================== LEARN SECTION ===================================== */
.learn-secondary-title {
  font-weight: 600;
  color: #1f3b75;
}

.learn-desc {
  font-size: 20px;
  line-height: 1.7;
  max-width: 1080px;
  color: #495057;
}

.skill-card {
  padding: 14px 18px;
  text-align: center;
  font-weight: 600;
  border-radius: 10px;
  background: #e9eef9;
  border: 1px solid #d5dcec;
  color: #1f3b75;
  transition: all 0.3s ease;
}

.skill-card:hover {
  background: #bad0ff;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(31, 59, 117, 0.25);
}

.syllabus-btn {
  text-decoration: none;
  background: #1f3b75;
  color: #fff;
  padding: 12px 38px;
  font-weight: 200;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.syllabus-btn:hover {
  color: #fff;
  background: #142547;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(33, 60, 114, 0.25);
}


/* ======== syllabus Setion ======= */
.download-btn {
  border: none;
  margin-bottom: 16px;
  border-radius: 8px;
  font-size: 16px;
  padding: 16px 30px;
  text-decoration: none;
  background: #213C72;
  color: white;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
  background: #142547;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(33, 60, 114, 0.25);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f3b75;
}

.module-card {
  border: 1px solid #d9e3f0;
  border-radius: 12px;
  background: white;
  transition: .3s;
}

.module-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.module-card--active {
  border-color: #4263eb;
}

.module-btn {
  font-size: 17px;
  font-weight: 600;
  color: #1f3b75 !important;
}

.module-content {
  padding: 12px 18px;
}

.module-points li {
  font-size: 15px;
  margin-bottom: 5px;
}

.view-all-btn {
  color: #213C72 !important;
  text-align: right;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
}

.right-card {
  border: none;
  overflow: hidden;
  background: white;
}

.right-image {
  height: 350px;
  width: 100%;
  display: block;
}

.right-desc {
  padding: 18px 0;
  font-size: 20px;
  color: #3d4c63;
}

.tools-section {
  margin-top: 35px;
}

.tools-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f3b75;
  margin-bottom: 10px;
}

.tools-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 14px;
  color: #213C72;
  background: #f9f9f9;
  transition: .3s;
}

.tool-box:hover {
  border-color: #4263eb;
  background: #eef2ff;
}

.tool-box i {
  font-size: 18px;
  color: #213C72;
}

/* When accordion is open */
.module-card .accordion-button:not(.collapsed) {
  background: #213C72 !important;
  color: #fff !important;
  border: 1px solid #213C72 !important;
  box-shadow: none !important;
}

/* Border for active accordion item */
.module-card .accordion-collapse.show {
  border: 0px solid #213C72;
  border-top: none;
}

/* Normal accordion (collapsed state) */
.module-card .accordion-button {
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #213C72;
}

/* hover state */
.module-card .accordion-button:hover {
  background: rgba(33, 60, 114, 0.06);
}

.module-card.module-card--active {
  border: 1px solid #213C72 !important;
  border-radius: 6px;
}

/* open state arrow = white */
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

/* closed state arrow = primary */
.accordion-button.collapsed::after {
  filter: none;
}


/* ======= What You Will Get ======= */
.sub-heading {
  font-size: 14px;
  color: #1f3b75;
  margin-bottom: -2px;
  font-weight: 600;
}

/* Benefit Cards */
.benefit {
  gap: 40px;
}

.benefit-card {
  width: 220px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

.benefit-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.benefit-card .icon {
  width: 130px;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 24px;
  margin: 0;
  font-weight: 200;
  color: #1f2b47;
}


/* Project Cards */
.project-card {
  position: relative;
  height: 320px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.project-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}


/* Career Cards */
.career-card {
  background: #f5f7fb;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #e2e2e2;
}

.career-card:hover {
  background: #e8ecf5;
}

.career-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f3b75;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.career-icon i {
  font-size: 28px;
  color: white;
}

.career-card:hover .career-icon {
  background: #142d55;
  transform: scale(1.06);
  transition: .3s ease;
}


/* ===================================== BLOG CARD ===================================== */
.blog-card {
  position: relative;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.23, 1, .32, 1);
}

.blog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  z-index: 2;
}

.blog-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  z-index: -1;
}

.blog-overlay h5 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: white;
}

.blog-overlay h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 200;
  color: #eaeaea;
}

.blog-card:hover img {
  transform: scale(1.10);
}

.blog-card:hover .blog-overlay h5,
.blog-card:hover .blog-overlay h3 {
  transform: translateY(-6px);
}















/* =============================== RESPONSIVE =============================== */
@media (max-width: 991px) {
  .mobile-accordion-img {
    display: block;
  }

  .right-desc {
    font-size: 16px;
    font-weight: 300;
}


  .right-image {
    border-radius: 16px;
    height: 250px;
    width: 100%;
    display: block;
  }

  #accordionImage {
    display: none;
  }

  .learn-desc {
    font-size: 18px;
  }

  .skill-card {
    font-size: 14px;
  }

  .tools-wrap {
    gap: 8px;
  }

  .tool-box {
    font-size: 13px;
    padding: 7px 12px;
  }
}

@media (max-width: 575px) {
  .program-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .accordion-button {
    font-size: 15px;
    padding: 16px 18px;
  }

  .accordion-body {
    font-size: 14px;
    padding: 16px 18px;
  }

  .learn-desc {
    font-size: 16px;
  }

  .skill-card {
    padding: 12px 14px;
  }

  .join-card {
    padding: 22px;
  }

  .benefit-card {
    padding: 14px;
  }

  .project-card {
    height: 240px;
  }

  .blog-card {
    height: 240px;
  }

  .career-card {
    padding: 22px 14px;
  }

  .career-icon {
    width: 44px;
    height: 44px;
  }
}

@media (min-width:576px) and (max-width:767px) {
  .section-title {
    font-size: 32px;
  }

  .blog-card {
    height: 260px;
  }

  .project-card {
    height: 260px;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .section-title {
    font-size: 36px;
  }
}

@media (min-width:991px) and (max-width:1199px) {
  .section-title {
    font-size: 38px;
  }

  .ui-image {
    padding-top: 80px;
    max-width: 380px;
  }

  .blog-card {
    height: 300px;
  }
}

@media (min-width:1200px) {
  .section-title {
    font-size: 42px;
  }
}




/* ===== BASE SETUP ===== */
.benefit-card img.icon {
  width: 100px;
  height: auto;
}

.benefit-card p {
  font-size: 20px;
  line-height: 1.3;
}

/* Overlay for coming soon */
.coming-overlay {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.coming-text {
  text-transform: uppercase;
}

/* ===== DESKTOP ===== */
@media (min-width: 1200px) {
  .benefit .col-md-2 {
    width: 20%;
  }
}

/* ===== TABLET LANDSCAPE (1024px) ===== */
@media (max-width: 1200px) {
  .benefit .col-md-2 {
    width: 25%;
    margin-bottom: 15px;
  }
}

/* ===== TABLET PORTRAIT (768px) ===== */
@media (max-width: 992px) {
  .benefit .col-md-2 {
    width: 33.33%;
  }

  .blog-card img {
    height: 230px;
    object-fit: cover;
  }
}

/* ===== MOBILE BIG (576px - 768px) ===== */
@media (max-width: 768px) {

  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .career-card {
    padding: 20px;
  }

  .blog-card img {
    height: 200px;
  }

  
}

/* ===== MOBILE SMALL (0 - 576px) ===== */
@media (max-width: 576px) {
  .benefit-card p {
    font-size: 13px;
  }

  .benefit .col-md-2,
  .benefit .col-sm-4,
  .benefit .col-6 {
    width: 50% !important;
  }

  .blog-card img {
    height: auto;
    object-fit: cover;
  }

  .career-card h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .career-card p {
    font-size: 14px;
  }

  .coming-text {
    font-size: 18px;
  }


  .benefit {
    gap: 0px;
    justify-content: center !important;
    text-align: center;
  }

  .benefit .col-6 {
    display: flex;
    justify-content: center;
  }

  .benefit-card {
    text-align: center;
  }

  .benefit-card p {
    font-size: 13px;
    margin-top: 4px;
    line-height: 1.3;
  }
}

/* ===== EXTRA SMALL MOBILE (360px) ===== */
@media (max-width: 400px) {
  .benefit .col-6 {
    margin: 8px 0;
    width: 100% !important;
  }

  .blog-card img {
    height: 100%;
  }
}