/* HERO SECTION */
.hero-banner-core {
  position: relative;
  height: 90vh;
  /* overflow: hidden;
  background-color:  rgba(10, 25, 50, 0.65); */
  /* background-blend-mode: overlay;
  background-image: url('../images/core-img/banner-core.jpg'); */
  background-size: cover;
  background-position: center;
}

.hero-banner-core video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
/* .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 50, 0.4);
} */

/* Announcement Bar */
.announcement {
  position: absolute;
  top: 0;
  width: 100%;
  background: #0b1f3a;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  text-align: center;
  z-index: 3;
   overflow: hidden; /* ✅ ADD THIS */
}
.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeMove 12s linear infinite;
}
.marquee-link{
color: #e7e7e7;
text-decoration: none;
cursor: pointer;
}

.marquee-link:hover{
text-decoration: none;
}
/* Content */
.hero-content h1 span,
.hero-content p span {
  background: rgba(20, 40, 80, 0.75); /* dark blue like your image */
  padding:0px;
  color: #fff;

  /* KEY PROPERTY */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;

  line-height:1;
}
.hero-content {
    position: absolute;
    bottom: 100px;
    left: 60px;
    max-width: 100%;
    z-index: 2;
}
.hero-content h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #ffffff;
}
.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Button */
.hero-btn {
  background: #f4b400;
  color: #000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #e0a800;
}

/* Floating Icons */
/* .floating-icons {
  position: absolute;
  right: 20px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
} */
 .floating-icons {
  position: fixed;
  right: 20px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999; /* increase */
}


.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.whatsapp {
  background: #25d366;
}

.mail {
  background: #f4b400;
}

@media (max-width: 768px) {

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 60px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .floating-icons {
    right: 10px;
    bottom: 80px;
  }
}

.announcement {
  overflow: hidden;
  white-space: nowrap;
}

.announcement span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 12s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}


/* SECTION */
.kg2-sec {
    background: #ffffff;
    padding: 80px 0;
}
.kg2-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.kg2-top {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.kg2-img {
  width: 100%;
  /* max-width: 600px; */
}

/* PLACEHOLDER */
.kg2-img-box {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: #666; */
  /* font-size: 16px; */
}

/* IMAGE REAL */
.kg2-img-box img {
  height: 100%;
  /* width: 100%; */
  object-fit: cover;
  /* background-color: #16243a; */

}

/* CONTENT */
.kg2-tag {
  color: #f4b400;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
  background-color: #0b1f3a;
    display: inline;
    padding:8px 6px;
    line-height: 50px;
    font-size: 18px;
}
.kg2-content{
  /* background-color: #1b2a41; */
  height: 100%;
  /* width: 100%; */
}
.kg2-content h3 {
  font-size: 38px;
  color: #1b2a41;
  margin-bottom: 15px;
}

.kg2-content h3 span {
  font-size: 18px;
  color: #666;
}

.kg2-desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 18px;
}

/* POINTS */
.kg2-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;

}

.kg2-points div {
   font-size: 18px;
  color: #1b2a41;
}

/* APPLY */
.kg2-apply {
  margin-top: 80px;
   /* font-size: 38px; */
}

.kg2-apply h2 {
  font-size: 38px;
  color: #1b2a41;
}

.kg2-sub {
  color: #ffffff;
  margin: 10px 0 40px;
   font-size: 18px;
}

/* GRID */
.kg2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
   font-size: 18px;
}

/* BOX */
.kg2-box {
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: #1b2a41;
  background: #fff;
  transition: 0.3s;
}

.kg2-box:hover {
  border-color: #f4b400;
}

.kg2-box span {
  border: 2px solid #f4b400;
  padding: 6px 10px;
  color: #f4b400;
  font-weight: 700;
}

/* OUTCOME */
.kg2-outcome {
  background: #16243a;
  color: #fff;
  padding: 80px 0;
}

.kg2-outcome h2 {
  font-size: 38px;
  /* margin-bottom: 10px; */
}

/* OUT GRID */
.kg2-out-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.kg2-card {
  width: auto;
  background: #ffffff;
  color: #000;
  padding: 25px;
}

.kg2-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #e7e7e7;
}

.kg2-card .icon img{
  padding: 24px;
  /* background-color: #0b1f3a; */
}

.kg2-card h4 {
  font-size:18px;
 color: #0b1f3a;
  margin-bottom: 10px;
}

.kg2-card p {
 font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .kg2-top {
    flex-direction: column;
  }

  .kg2-grid {
    grid-template-columns: 1fr;
  }

  .kg2-out-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .kg2-out-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.g35-sec {
  background: #ffffff;
  padding: 80px 0;
}

.g35-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.g35-top {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* CONTENT */
.g35-tag {
  color: #f4b400;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
  background-color: #0b1f3a;
    display: inline;
    padding:8px 6px;
    line-height: 50px;
    font-size: 18px;
}

.g35-content h3 {
font-size: 38px;
    color: #1b2a41;
    margin-bottom: 15px;
  margin-right: 10px;
}

.g35-content h3 span {
  font-size: 18px;
  margin-left: 10px;
  color: #666;
}

.g35-desc {
  color: #666;
  line-height: 1.7;
 margin-bottom: 20px;
  font-size: 18px;
}

/* POINTS */
.g35-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}

.g35-points div {
  font-size: 18px;
  color: #1b2a41;
}

/* IMAGE */
.g35-img {
  width: 100%;
  max-width: 520px;
}

.g35-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  background-color: #16243a;

}

/* APPLY */
.g35-apply {
  margin-top: 80px;
}

.g35-apply h2 {
  font-size: 38px;
  color: #1b2a41;
}

.g35-sub {
  color: #ffffff;
  margin: 10px 0 40px;
     font-size: 18px;
}

/* GRID */
.g35-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  font-size: 18px;
}

/* BOX */
.g35-box {
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  background: #fff;
  color: #1b2a41;
  transition: 0.3s;
}

.g35-box:hover {
  border-color: #f4b400;
}

.g35-box span {
  border: 2px solid #f4b400;
  padding: 6px 10px;
  color: #f4b400;
  font-weight: 700;
}

/* OUTCOME */
.g35-outcome {
  background: #16243a;
  color: #ffffff;
  padding: 80px 0;
}

.g35-outcome h2 {
  font-size: 38px;
}

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

/* CARD */
.g35-card {
  width:100%;
  background: #ffffff;
  color: #000;
  padding: 25px;
}

.g35-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
  padding: 10px;
    background-color: #e7e7e7;
}

.g35-card .icon img{
  padding: 24px;
  /* background-color: #0b1f3a; */
}
.g35-card h4 {
  font-size:18px;
 color: #0b1f3a;
  margin-bottom: 10px;
}

.g35-card p {
  font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .g35-top {
    flex-direction: column;
  }

  .g35-grid {
    grid-template-columns: 1fr;
  }

  .g35-out-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .g35-out-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.g68-sec {
  background: #ffffff;
  padding: 80px 0;
}

.g68-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.g68-top {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.g68-img {
  width: 100%;
  /* max-width: 520px; */
}

.g68-img-box {
   width: 100%;
  height: 350px;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g68-img-box img{
 height: 100%;
  width: 100%;
  object-fit: cover;
}

/* CONTENT */
.g68-tag {
 color: #f4b400;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
  background-color: #0b1f3a;
    display: inline;
    padding:8px 6px;
    line-height: 50px;
    font-size: 18px;
}
.kg2-content{
  /* background-color: #1b2a41; */
  height: 100%;
  /* width: 100%; */
}
.g68-content h3 {
  font-size: 38px;
  color: #1b2a41;
  margin-bottom: 15px;
}

.g68-content h3 span {
  font-size: 18px;
  color: #666;
  margin-left: 10px;
}

.g68-desc {
  color: #666;
  line-height: 1.7;
 margin-bottom: 20px;
  font-size: 18px;
}

/* POINTS */
.g68-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}

.g68-points div {
 font-size: 18px;
  color: #1b2a41;
}

/* APPLY */
.g68-apply {
  margin-top: 80px;
}

.g68-apply h2 {
  font-size: 38px;
  color: #1b2a41;
}

.g68-sub {
  color: #ffffff;
  margin: 10px 0 40px;
   font-size: 18px;
}

/* GRID */
.g68-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
   font-size: 18px;
}

/* BOX */
.g68-box {
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  background: #fff;
  color: #1b2a41;
  transition: 0.3s;
}

.g68-box:hover {
  border-color: #f4b400;
}

.g68-box span {
  border: 2px solid #f4b400;
  padding: 6px 10px;
  color: #f4b400;
  font-weight: 700;
}

/* OUTCOME */
.g68-outcome {
  background: #16243a;
  color: #fff;
  padding: 80px 0;
}

.g68-outcome h2 {
  font-size: 38px;
}

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

/* CARD */

.g68-card {
  width: auto;
  background: #ffffff;
  color: #000;
  padding: 25px;
}

.g68-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
  padding: 10px;
    background-color: #e7e7e7;
}

.g68-card .icon img{
  padding: 24px;
  /* background-color: #0b1f3a; */
}
.g68-card h4 {
  font-size:18px;
 color: #0b1f3a;
  margin-bottom: 10px;
}

.g68-card p {
 font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .g68-top {
    flex-direction: column;
  }

  .g68-grid {
    grid-template-columns: 1fr;
  }

  .g68-out-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .g68-out-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.g912-sec {
  background: #ffffff;
  padding: 80px 0;
}

.g912-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.g912-top {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* CONTENT */
.g912-tag {
 color: #f4b400;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
  background-color: #0b1f3a;
    display: inline;
    padding:8px 6px;
    line-height: 50px;
    font-size: 18px;
}
.kg2-content{
  /* background-color: #1b2a41; */
  height: 100%;
  /* width: 100%; */
}

.g912-content h2 {
  font-size: 38px;
  color: #1b2a41;
  margin-bottom: 15px;
}

.g912-content h2 span {
  font-size: 18px;
  color: #666;
}

.g912-desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 18px;
}

/* POINTS */
.g912-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}

.g912-points div {
   font-size: 18px;
  color: #1b2a41;
}

/* IMAGE */
.g912-img {
  width: 100%;
  /* max-width: 520px; */
}

.g912-img-box {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g912-img-box img{
height: 100%;
  /* width: 100%; */
  object-fit: cover;
  /* background-color: #16243a; */
}

/* APPLY */
.g912-apply {
  margin-top: 80px;
}

.g912-apply h2 {
  font-size: 38px;
  color: #1b2a41;
}

.g912-sub {
  color: #ffffff;
  margin: 10px 0 40px;
  font-size: 18px;
}

/* GRID */
.g912-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  font-size: 18px;
}

/* BOX */
.g912-box {
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  background: #fff;
  color: #1b2a41;
  transition: 0.3s;
}

.g912-box:hover {
  border-color: #f4b400;
}

.g912-box span {
  border: 2px solid #f4b400;
  padding: 6px 10px;
  color: #f4b400;
  font-weight: 700;
}

/* OUTCOME */
.g912-outcome {
  background: #16243a;
  color: #fff;
  padding: 80px 0;
}

.g912-outcome h2 {
  font-size: 38px;
}

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

/* CARD */
.g912-card {
  width: auto;
  background: #ffffff;
  color: #000;
  padding: 25px;
}

.g912-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
  padding: 10px;
    background-color: #e7e7e7;
}

.g912-card .icon img{
  padding: 24px;
  /* background-color: #0b1f3a; */
}
.g912-card h4 {
  margin-bottom: 10px;
   font-size:18px;
 color: #0b1f3a;
  margin-bottom: 10px;
}

.g912-card p {
 font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .g912-top {
    flex-direction: column;
  }

  .g912-grid {
    grid-template-columns: 1fr;
  }

  .g912-out-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .g912-out-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.g12-sec {
  background: #ffffff;
  padding: 80px 0;
}

.g12-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.g12-top {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.g12-img {
  width: 100%;
  /* max-width: 520px; */
}

.g12-img-box {
   width: 100%;
  height: 350px;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g12-img-box img{
 height: 100%;
  width: 100%;
  object-fit: cover;
}

/* CONTENT */
.g12-tag {
 color: #f4b400;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
  background-color: #0b1f3a;
    display: inline;
    padding:8px 6px;
    line-height: 50px;
    font-size: 18px;
}
.kg2-content{
  /* background-color: #1b2a41; */
  height: 100%;
  /* width: 100%; */
}
.g12-content h3 {
  font-size: 38px;
  color: #1b2a41;
  margin-bottom: 15px;
}

.g12-content h3 span {
  font-size: 18px;
  color: #666;
  margin-left: 10px;
}

.g12-desc {
  color: #666;
  line-height: 1.7;
 margin-bottom: 20px;
  font-size: 18px;
}

/* POINTS */
.g12-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}

.g12-points div {
 font-size: 18px;
  color: #1b2a41;
}

/* APPLY */
.g12-apply {
  margin-top: 80px;
}

.g12-apply h2 {
  font-size: 38px;
  color: #1b2a41;
}

.g12-sub {
  color: #ffffff;
  margin: 10px 0 40px;
   font-size: 18px;
}

/* GRID */
.g12-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
   font-size: 18px;
}

/* BOX */
.g12-box {
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  background: #fff;
  color: #1b2a41;
  transition: 0.3s;
}

.g12-box:hover {
  border-color: #f4b400;
}

.g12-box span {
  border: 2px solid #f4b400;
  padding: 6px 10px;
  color: #f4b400;
  font-weight: 700;
}

/* OUTCOME */
.g12-outcome {
  background: #16243a;
  color: #fff;
  padding: 80px 0;
}

.g12-outcome h2 {
  font-size: 38px;
}

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

/* CARD */

.g12-card {
  width: auto;
  background: #ffffff;
  color: #000;
  padding: 25px;
}

.g12-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
  padding: 10px;
    background-color: #e7e7e7;
}

.g12-card .icon img{
  padding: 24px;
  /* background-color: #0b1f3a; */
}
.g12-card h4 {
  font-size:18px;
 color: #0b1f3a;
  margin-bottom: 10px;
}

.g12-card p {
 font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .g12-top {
    flex-direction: column;
  }

  .g12-grid {
    grid-template-columns: 1fr;
  }

  .g12-out-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .g12-out-grid {
    grid-template-columns: 1fr;
  }
}


.disc-layout {
  display: flex;
  align-items: center; /* vertical alignment */
  justify-content: space-between;
  gap: 40;
  /* padding: 0px 50px; */
}
.disc-left {
  flex: 1.2;
  background: #ffffff;
  padding: 0px 80px;
  padding-top: 50px;
  padding-bottom: 20px;
  /* padding-top: 30px; */
  border-radius: 4px;
}
/* .disc-right {
  flex: 1;
  position: relative;
} */
.disc-progress {
  position: absolute;
  left: -40px; /* adjust to align perfectly */
  top: 0;
  height: 100%;
}

.disc-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #d1d5db;
}

.disc-line-active {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 20%; /* dynamic via JS */
  background: #0f172a;
}
.disc-step {
  width: 40px;
  height: 40px;
  background: #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
  z-index: 2;
}

.disc-step.active {
  background: #0f172a;
  color: #fff;
}
.disc-question {
  margin-left: 40px; /* push content away from line */
}
.disc-label{
color: #f4b400;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: #0b1f3a;
    display: inline;
    padding: 8px 6px;
    line-height: 50px;
    font-size: 18px;
}
   .disc-header h1{
    font-size: 38px;
    color: #1b2a41;
    /* margin-bottom: 15px; */
   }
   .disc-header p{
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 18px;
   }


/* MAIN */
.disc-container {
    display: flex;
    width: 80%;
    margin: 50px auto;
  }
  
  /* PROGRESS BAR */
  .disc-progress {
    position: relative;
    width: 80px;
  }
  
  .disc-step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ccc;
    text-align: center;
    line-height: 42px;
    margin: 35px auto;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    font-weight: 600;
  }
  
  .disc-step.active {
    background: #0d1b2a;
    color: #fff;
  }
  
  /* LINE */
  .disc-line {
    position: absolute;
    left: 50%;
    top: 56px;
    width: 4px;
    height: calc(100% - 112px);
    background: #ccc;
    transform: translateX(-50%);
  }
  
  .disc-line-active {
    position: absolute;
    left: 50%;
    top: 56px;
    width: 4px;
    height: 0%;
    background: #0d1b2a;
    transform: translateX(-50%);
    transition: height 0.4s ease;
  }
  
  /* FORM */
  .disc-form {
    flex: 1;
  }
  
  /* QUESTIONS */
  .disc-question {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
  }
  
  .disc-question.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  
  .disc-question h2 {
    color: #d49a00;
    margin-bottom: 25px;
    font-size: 22px;
  }
  
  /* OPTIONS */
  .disc-option {
    background: #fff;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .disc-option:hover {
    border-color: #d49a00;
  }
  
  /* .disc-option.selected {
    border: 2px solid #1f5bd8;
    background: #1f5bd8;
    color: #fff;
  } */

  .disc-option-prefix {
    min-width: 32px;
    height: 32px;
    border: 2px solid #d49a00;
    color: #d49a00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    /* background: #fffaf0; */
  }

  .disc-option-text {
    flex: 1;
  }

  .disc-option.selected .disc-option-prefix {
    background: #d49a00;
    color: #fff;
    border-color: #d49a00;
  }
  
  /* RESULT */
  .disc-result {
    display: none;
    text-align: center;
    padding: 80px 20px;
  }
  
  .disc-result-title {
    font-size: 42px;
    font-weight: 700;
    color: #d49a00;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
  
  .disc-result-subtitle {
    font-size: 24px;
    font-style: italic;
    color: #1c1c1c;
    margin-bottom: 25px;
  }
  
  .disc-result-description {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .disc-result-footer {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
  }
  
  .disc-result-btn {
    padding: 12px 28px;
    border: 2px solid #d49a00;
    background: transparent;
    color: #1c1c1c;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
  }
  
  .disc-result-btn:hover {
    background: #d49a00;
    color: #fff;
  }
  /* Existing styles remain unchanged above... */

/* =========================
   RESPONSIVE OVERRIDES
========================= */

/* Tablet */
@media (max-width: 992px) {
  .hero-content { left: 30px; bottom: 80px; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 15px; }

  .kg2-top, .g35-top, .g68-top, .g912-top, .g12-top {
    flex-direction: column;
    gap: 30px;
  }

  .kg2-grid, .g35-grid, .g68-grid, .g912-grid, .g12-grid {
    grid-template-columns: 1fr;
  }

  .kg2-out-grid, .g35-out-grid, .g68-out-grid, .g912-out-grid, .g12-out-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .disc-layout { flex-direction: column; padding: 20px; }
  .disc-left { padding: 20px; }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-banner-core { height: 70vh; }
  .hero-content { left: 20px; right: 20px; bottom: 50px; text-align: center; }
  .hero-content h1 { font-size: 24px; }
  .hero-content p { font-size: 13px; }
  .hero-btn { font-size: 14px; padding: 10px 20px; }
  .floating-icons { right: 10px; bottom: 60px; }

  .kg2-content h3, .g35-content h3, .g68-content h3, .g912-content h2, .g12-content h3 {
    font-size: 26px;
  }
  .kg2-desc, .g35-desc, .g68-desc, .g912-desc, .g12-desc {
    font-size: 14px;
  }
  .kg2-points, .g35-points, .g68-points, .g912-points, .g12-points {
    grid-template-columns: 1fr;
  }

  .kg2-apply h2, .g35-apply h2, .g68-apply h2, .g912-apply h2, .g12-apply h2 {
    font-size: 26px;
  }

  .disc-header h1 { font-size: 26px; }
  .disc-header p { font-size: 14px; }
  .disc-result-title { font-size: 28px; }
  .disc-result-subtitle { font-size: 18px; }
  .disc-result-description { font-size: 14px; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 20px; }
  .hero-content p { font-size: 12px; }
  .hero-btn { font-size: 12px; padding: 8px 16px; }

  .kg2-tag, .g35-tag, .g68-tag, .g912-tag, .g12-tag,
  .disc-label { font-size: 14px; padding: 6px 4px; }

  .kg2-content h3, .g35-content h3, .g68-content h3,
  .g912-content h2, .g12-content h3 { font-size: 22px; }

  .kg2-out-grid, .g35-out-grid, .g68-out-grid,
  .g912-out-grid, .g12-out-grid { grid-template-columns: 1fr; }

  .disc-result-title { font-size: 22px; }
  .disc-result-subtitle { font-size: 16px; }
  .disc-result-description { font-size: 13px; }
}
