/* ===== COURSE HERO SECTION ===== */
.course-hero-section {
  width: 100%;
  padding: 80px 40px;
  background: #FFF8F4;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  font-family: Inter, sans-serif;
}

/* soft glow circle */
.course-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: #FFB77E;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  top: -250px;
  right: -200px;
}

/* wrapper */
.course-hero-wrapper {
  max-width: 900px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* tag */
.course-hero-tag {
  background: #FFDCC3;
  color: #2F1500;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
}

.course-hero-tag:hover {
  transform: scale(1.05);
  background: #ffccaa;
}

/* title */
.course-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #1E1B18;
  line-height: 1.2;
  margin: 0;
}

/* description */
.course-hero-desc {
  font-size: 18px;
  color: #655D59;
  max-width: 720px;
  line-height: 28px;
}

/* buttons */
.course-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* primary button */
.course-btn-primary {
  background: #FE8B0A;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.course-btn-primary:hover {
  background: #e67600;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* outline button */
.course-btn-outline {
  background: transparent;
  color: #655D59;
  border: 1px solid #655D59;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.course-btn-outline:hover {
  background: #463F3C;
  color: #fff;
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
  .course-hero-title {
    font-size: 36px;
  }

  .course-hero-desc {
    font-size: 16px;
  }
}

@media(max-width:576px) {
  .course-hero-section {
    padding: 60px 20px;
  }

  .course-hero-title {
    font-size: 20px;
  }

  .course-hero-desc {
    font-size: 12px;
    text-align: justify;
  }

  .course-btn-primary,
  .course-btn-outline {
    width: 100%;
  }
}














.academyCoursesWrap {
  width: 100%;
  padding: 30px 40px;
  background: #fff;
  font-family: Inter, sans-serif;
  display: flex;
  justify-content: center;
}

.academyContainer {
  width: 100%;
  max-width: 1200px;
}

/* HEADER */
.academyHeader {

  margin-bottom: 40px;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.academyHeader h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1E1B18;
}

.academyHeader span {
  width: 80px;
  height: 4px;
  background: #FE8B0A;
  display: block;
  margin-top: 10px;
}

/* GRID */
.academyGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.academyCard {
  background: #fff;
  border: 1px solid #E8CDBD;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

/* HOVER */
.academyCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: #FE8B0A;
}

/* IMAGE */
.academyImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.academyCard:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.academyInfo {
  padding: 22px;
}

.tag {
  font-size: 12px;
  font-weight: 700;
  color: #914C00;
  letter-spacing: 0.5px;
}

.academyInfo h3 {
  font-size: 22px;
  margin: 10px 0;
  color: #1E1B18;
}

.academyInfo p {
  font-size: 15px;
  color: #655D59;
  line-height: 22px;
}

/* LINK */
.academyInfo a {
  display: inline-block;
  margin-top: 10px;
  color: #FE8B0A;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.academyInfo a:hover {
  color: #c85d00;
  letter-spacing: 0.5px;
}

/* ===== LAYOUT ROW (IMAGE + TEXT SIDE) ===== */
.type-row {
  display: flex;
  align-items: center;
}

.type-row .academyImg {
  width: 50%;
  height: 260px;
}

.type-row .academyInfo {
  width: 50%;
}

/* reverse */
.reverse {
  flex-direction: row-reverse;
}

/* COLUMN TYPE */
.type-col {
  display: flex;
  flex-direction: column;
}

.type-col .academyImg {
  height: 220px;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .academyGrid {
    grid-template-columns: 1fr;
  }

  .type-row,
  .reverse {
    flex-direction: column;
  }

  .type-row .academyImg,
  .reverse .academyImg {
    width: 100%;
    height: 220px;
  }

  .academyHeader h2 {
    font-size: 26px;
  }
}

@media(max-width:576px) {
  .academyCoursesWrap {
    padding: 30px 20px;
  }

  .type-row .academyInfo {
    width: 100%;
  }

  .academyInfo h3 {
    font-size: 18px;
  }
  .academyInfo p {
    font-size: 15px;
    color: #655D59;
    line-height: 22px;
    text-align: justify;
}
}










/* SECTION */
.tac-benefit-zone {
  width: 100%;
  padding: 80px 40px;
  background: #FAF2ED;
  display: flex;
  justify-content: center;
  font-family: Inter, sans-serif;
}

/* WRAPPER */
.tac-benefit-wrap {
  width: 100%;
  max-width: 1200px;
}

/* HEADER */
.tac-benefit-head {
  text-align: center;
  margin-bottom: 50px;
}

.tac-benefit-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1E1B18;
  margin-bottom: 10px;
}

.tac-benefit-head p {
  font-size: 16px;
  color: #655D59;
  max-width: 700px;
  margin: 0 auto;
  line-height: 24px;
}

/* GRID (3 cards in 1 row) */
.tac-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.tac-benefit-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #F0D6C7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  cursor: pointer;
}

/* HOVER EFFECT */
.tac-benefit-card:hover {
  transform: translateY(-8px);
  background: #FE8B0A;
  color: #fff;
  box-shadow: 0 10px 25px rgba(254, 139, 10, 0.25);
}

.tac-benefit-card:hover p,
.tac-benefit-card:hover h3 {
  color: #fff;
}
/* BIG CARD */
.big-card {
  padding: 25px;
}

/* SUB TEXT */
.sub-text {
  margin-top: 10px;
  font-size: 14px;
  color: #8a7f78;
}

/* SUB GRID */
.subCourseGrid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* SUB CARD */
.subCard {
  background: #fff7f2;
  border: 1px solid #f3d6c3;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
}

/* HOVER */
.subCard:hover {
  background: #FE8B0A;
  color: #fff;
  transform: translateY(-5px);
}

.subCard:hover p {
  color: #fff;
}

/* TITLE */
.subCard h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

/* TEXT */
.subCard p {
  font-size: 13px;
  color: #655D59;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .subCourseGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px) {
  .subCourseGrid {
    grid-template-columns: 1fr;
  }
}
/* ICON */
.tac-icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: #FFDCC3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: 0.3s;
}

/* icon hover */
.tac-benefit-card:hover .tac-icon-box {
  background: #fff;
  color: #FE8B0A;
}

/* TITLE */
.tac-benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1E1B18;
}

/* TEXT */
.tac-benefit-card p {
  font-size: 15px;
  color: #655D59;
  line-height: 22px;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .tac-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px) {
  .tac-benefit-grid {
    grid-template-columns: 1fr;
  }

  .tac-benefit-head h2 {
    font-size: 15px;
  }

  .tac-benefit-head p {
    font-size: 12px;
    color: #655D59;
    max-width: 700px;
    margin: 0 auto;
    line-height: 24px;
  }

  .tac-benefit-card p {
    font-size: 11px;
    color: #655D59;
    line-height: 22px;
    text-align: justify;
  }
}











/* SECTION WRAPPER */
.admission-section {
  padding: 80px 72px;
  background: #fff;
  border-top: 1px solid rgba(221, 193, 174, 0.2);
  border-bottom: 1px solid rgba(221, 193, 174, 0.2);
}

/* CONTAINER */
.admission-container {
  display: flex;
  gap: 64px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  align-items: center;
}

/* LEFT SIDE */
.admission-left {
  flex: 1;
}

.admission-title {
  font-size: 36px;
  font-weight: 700;
  color: #1E1B18;
  margin-bottom: 16px;
  line-height: 1.3;
}

.admission-desc {
  font-size: 18px;
  color: #655D59;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* HIGHLIGHT BOX */
.admission-highlight {
  background: #F4ECE8;
  border-left: 4px solid #FE8B0A;
  border-radius: 16px;
  padding: 24px;
}

.highlight-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #655D59;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.highlight-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.rupee {
  font-size: 48px;
  font-weight: 700;
  color: #914C00;
}

.lpa {
  font-size: 24px;
  font-weight: 600;
  color: #914C00;
}

.highlight-note {
  margin-top: 10px;
  font-size: 16px;
  color: #655D59;
  line-height: 1.5;
}

/* RIGHT SIDE WRAPPER */
.admission-right {
  flex: 1;
}

/* GRID LAYOUT */
.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 in a row */
  gap: 16px;
}

/* COMPANY CARD */
.company-card {
  padding: 24px;
  border: 1px solid #DDC1AE;
  border-radius: 12px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #1E1B18;
  background: #fff;
  transition: 0.3s;
}

.company-card:hover {
  transform: translateY(-3px);
  background: #fff7f2;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .admission-container {
    flex-direction: column;
    gap: 40px;
  }

  .admission-section {
    padding: 60px 24px;
  }
}

@media (max-width: 576px) {
  .admission-title {
    font-size: 18px;
  }

  .rupee {
    font-size: 36px;
  }

  .lpa {
    font-size: 18px;
  }

  .company-card {
    font-size: 18px;
    padding: 18px;
  }

  .admission-desc {
    font-size: 13px;
    color: #655D59;
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: justify;
  }
}