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

/* Background */
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HERO SLIDER */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* EACH SLIDE */
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* ACTIVE SLIDE */
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* VIDEO */
.hero-slide 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.65);
} */
/* ARROWS CONTAINER */
.hero-arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

/* ARROW STYLE */
.arrow {
  font-size: 30px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 13px 25px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
}

/* HOVER EFFECT */
.arrow:hover {
  background: #f4b400;
  color: #000;
}

/* 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;
}
/* CLICKABLE MARQUEE LINK */
.marquee-link {
  color: #fff;
  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; /* 🔥 CHANGE THIS */
  right: 20px;
  bottom: 30px;
  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: #ffffff;
  font-size: 20px;
  text-decoration: none;
}
.icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.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 */
.performance {
  /* background: #360202; */
  padding: 50px 80px;
  display: flex;
  gap: 50px;
}
.performance .img-container{
    height: auto;
    width: 50%;
}
.performance .img-container img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.performance .container{
  height: auto;
  width: 50%;
  /* background-color: #25d366; */
}

@media (max-width: 1024px) {
.performance {
   padding: 30px 30px;
display: flex;
flex-direction: column;
}
.performance .img-container{
  width: 100%;
}
.performance .container{
  width: 100%;
}


} 
@media (max-width: 443px) {
  .performance {
    gap: 20px;
  }
.performance .tagline{
  font-size: 14px;
}
.performance .container h2{
  font-size: 28px;
  /* background-color: #25d366; */
}
}

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

/* Heading */
.performance h2 {
  font-size: 38px;
    color: #1b2a41;
    margin-bottom: 15px;
}

/* Description */
.desc {
    max-width: 800px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 400;
}

/* Stats Layout */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* Box */
.stat-box {
  background: #16243a;
  color: #fff;
  padding: 40px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);

  /* REMOVE hover feel */
  cursor: default;

  /* ADD animation */
  animation: highlightLoop 8s infinite;
}

/* Remove last border */
.stat-box:last-child {
  border-right: none;
}

/* Number */
.stat-box h3 {
  font-size: 48px;
  margin-bottom: 10px;
}

/* Text */
.stat-box p {
  font-size: 13px;
  letter-spacing: 1px;
}

/* ❌ REMOVE ALL HOVER EFFECTS */
.stat-box:hover {
  transform: none;
}

.stat-box:hover h3,
.stat-box:hover p {
  color: inherit;
}

/* ✅ AUTO HIGHLIGHT ANIMATION */
.stat-box:nth-child(1) { animation-delay: 0s; }
.stat-box:nth-child(2) { animation-delay: 2s; }
.stat-box:nth-child(3) { animation-delay: 4s; }
.stat-box:nth-child(4) { animation-delay: 6s; }

/* Animation Keyframes */
@keyframes highlightLoop {
  0% {
    background: #16243a;
    color: #fff;
    transform: scale(1);
  }

  10% {
    background: #f4b400;
    color: #000;
    transform: scale(1.05);
  }

  20% {
    background: #16243a;
    color: #fff;
    transform: scale(1);
  }

  100% {
    background: #16243a;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.text-performance{
height: auto;
width: 100%;
/* background-color: #25d366; */
display: flex;
flex-direction: row;
padding: 30px 80px;
gap: 30px;
}

.text-performance .container{
  height: auto;
  width: 60%;
  /* background-color: #f4b400; */
}

.text-performance .img-container{
  height: 400px;
  width: 40%;
}
.text-performance .img-container img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.text-performance .container .tagline{
   color: #f4b400;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    /* background-color: #0b1f3a; */
    display: inline;
    padding: 8px 10px;
    line-height: 50px;
    font-size: 18px;
}

.text-performance .container h2{
   font-size: 38px;
    color: #1b2a41;
    margin-bottom: 15px;

}

.text-performance .container p{
 color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 400;
}


@media (max-width: 1024px) {
.text-performance {
   padding: 30px 30px;
display: flex;
flex-direction: column;
}
.text-performance .img-container{
  width: 100%;
}
.text-performance .container{
  width: 100%;
}


} 
@media (max-width: 443px) {
.text-performance .tagline{
  font-size: 14px;
}
.text-performance {
gap: 20px;
}
.text-performance .container h2{
  font-size: 28px;
  /* background-color: #25d366; */
}
.text-performance .container p{
  margin-bottom: 15px;
}
}




.about {

  padding: 50px 0px;
}

.about-wrapper {
height: auto;
  width: 100%;
  /* margin: auto; */
  display: flex;
  align-items: center;
  background-color: #25d366;
}

.about-text {
height:100% ;
width: 100%;
background-color: #1b2a41;
}

.text-img{
    height: 400px;
    width: auto;
    background-color: #f4b400;
}
.text-img img{
    height: 100%;
    width: 100%;
  object-fit: cover;
}

/* LEFT TEXT */
.about-text {
  flex: 1;
}

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

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

.about-text .desc {
 max-width: 800px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 400;
}

/* BUTTON */
.learn-btn {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid #f4b400;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.learn-btn:hover {
  background: #f4b400;
}

/* RIGHT IMAGE */


@media (max-width: 768px) {

  .about-wrapper {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 26px;
  }

  .about-text .desc {
    font-size: 14px;
  }

}


.academics {
  background: #ffffff;
  padding: 30px 0;
}

.container {
  width: 88%;
  margin: auto;
}

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

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

.intro {
  color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 400;
}

/* Row */
.acad-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px;
}

.acad-row.reverse {
  flex-direction: row-reverse;
}

/* Image */
.acad-img {
  flex: 1;
  height: 500px;
}

.acad-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text */
.acad-text {
  flex: 1;
}

.acad-text {
  flex: 1;
}

/* FIX FOR EMPATHIZE TEXT COLOR */
.acad-text .small-tag {
 color: #f4b400;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: #0b1f3a;
    display: inline;
    padding: 8px 10px;
    line-height: 50px;
    font-size: 18px;
}


.acad-text h3 {
  font-size: 34px;
  color: #1b2a41;
  margin-bottom: 15px;
}

.acad-text h3 span {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

.acad-text p {
  color: #666;
    line-height: 1.6;
    /* margin-bottom: 50px; */
    font-size: 18px;
    font-weight: 400;
}

/* Bullet */
.acad-text ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  margin: 20px 0;
}

.acad-text ul li {
  position: relative;
  padding-left: 28px;
  font-size: 20px;
  color: #333;
}

.acad-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1b2a41;
  font-size: 14px;
}

/* Button */
.btn-outline {
  display: inline-block;
  border: 2px solid #f4b400;
  padding: 10px 20px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: 0.3s;
  margin-top: 10px;
}

.btn-outline:hover {
  background: #f4b400;
}

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

  .acad-row {
    flex-direction: column;
  }

  .acad-row.reverse {
    flex-direction: column;
  } */
@media (max-width: 992px) {
  .acad-row {
    flex-direction: column;
  }

  .acad-row.reverse {
    flex-direction: column;
  }
}

.acad-text ul {
  grid-template-columns: 1fr;
}

.academics h2 {
  font-size: 30px;
}

.acad-text h3 {
  font-size: 24px;
}


.core-values {
  background: #16243a;
  padding: 50px 0;
  color: #fff;
  font-weight: 600;
}

.core-values .container {
  width: 90%;
  margin: auto;
}

/* Heading */
.core-values h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.subtitle {
  width: 100%;
  color: #ececec;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card */
.value-card {
  background: #f3f3f3;
  color: #222;
  padding: 25px;
  border-radius: 4px;
  transition: 0.3s;
 
}
/* Icon hover effect */
.value-card:hover .icon-box {
  background: #f4b400; /* yellow background */
  transform: scale(1.1); /* slight zoom for effect */
}

/* Ensure icon stays visible on hover */
.icon-box img {
  transition: 0.3s;
}

.value-card:hover .icon-box img {
  filter: brightness(0) invert(1); /* makes icon white for contrast */
}
/* Icon Box */
.icon-box {
  width: 50px;
  height: 50px;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

/* Title */
.value-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b1f3a;
}

/* Text */
.value-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  font-weight: 400;
}

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

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

.icon-box i {
  color: #1b2a41;
  transition: 0.3s;
}

.value-card:hover .icon-box i {
  color: #fff;
}


.future-skills {
  background: #ffffff;
  padding: 10px 0;
}

.container {
  width: 88%;
  margin: auto;
}

/* Heading */
.future-skills h2 {
  font-size: 42px;
  color: #1b2a41;
  margin-bottom: 10px;
}

.subtitle {
  max-width: 100%;
  color: #c2c2c2;
  line-height: 1.6;
  margin-bottom: 50px;
}
.core-values {
  background: #16243a;
  padding: 50px 0;
  color: #fff; /* default text color */
  font-weight: 600;
}

.core-values h2 {
  font-size: 38px;
  margin-bottom: 10px;
  color: #fff; /* ensure heading is white */
}

/* Subtitle for Core Values */
.subtitle {
  width: 100%;
  color: #fff; 
  margin-bottom: 50px;
  line-height: 1.6;
}

/* Subtitle for 7C Framework */
.future-subtitle {
  width: 100%;
  color: #000000;   
  margin-bottom: 50px;
  line-height: 1.6;
}

.core-values .box,
.core-values .box h3,
.core-values .box p {
  color: #fff;
}

/* Skill Box */
.skill-box {
  display: flex;
  border: 1px solid #ccc;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  background: #fff;
}

/* LEFT */
.skill-left {
  width: 180px;
  border-right: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-left span {
  font-size: 20px;
  letter-spacing: 2px;
  color: #1b2a41;
  position: relative;
}

/* underline line */
.skill-left span::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #1b2a41;
  display: block;
  margin-top: 6px;
}

/* RIGHT */
.skill-right {
  padding: 25px 30px;
  flex: 1;
}

.skill-right h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #0b1f3a;
}

.skill-right p {
  color: #666;
  font-size: 18px;
}

@media (max-width: 768px) {

  .skill-box {
    flex-direction: column;
  }

  .skill-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
  }

}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

.testimonials {
  padding: 50px 0;
  text-align: center;
}

.container {
  width: 90%;
  margin: auto;
}

h2 {
  font-size: 38px;
  color: #0b1f3a;
  margin-bottom: 40px;
}

/* Slider */
.slider {
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

/* Track */
.slides {
  display: flex;
  transition: transform 0.6s ease;
}

/* Each slide */
.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* Cards */
.card {
  background: #fff;
  padding: 25px;
  width: 100%;
  border-radius: 12px;
  border: 2px solid #1b2a41;
  /* opacity: 0.6; */
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.slide.active .card {
  opacity: 1;
  transform: scale(1);
}

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

.stars {
  color: #f4b400;
  margin: 10px 0;
  font-size: 24px;
}

.card span {
  font-weight: bold;
  font-size: 16px;
}

/* Buttons */
.controls {
  margin-top: 25px;
}

.controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  margin: 0 10px;
  background: #1b2a41;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.controls button:hover {
  background: #000;
}

/* Dots */
.dots {
  margin-top: 15px;
}

.dot {
  height: 10px;
  width: 10px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
  cursor: pointer;
}

.dot.active {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100%;
  }
}

.home-cta{
  background: #f5f5f5;
  /* Yellow */
  padding: 50px 0;
  text-align: center;
}

.home-cta .container {
  width: 90%;
  margin: auto;
}

/* Heading */
.home-cta h2 {
  font-size: 42px;
  color: #0b1f3a;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Subtext */
.home-cta p {
  font-size: 16px;
  color: #0b1f3a;
  margin-bottom: 30px;
}

/* Button */
.home-cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #0b1f3a;
  /* Dark Blue */
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

/* Hover */
.home-cta-btn:hover {
  background: #000;
}

/* Tablet */
@media (max-width: 1024px) {
  .performance, .text-performance { flex-direction: column; padding: 30px; }
  .performance .img-container, .performance .container,
  .text-performance .img-container, .text-performance .container { width: 100%; }
}

@media (max-width: 992px) {
  .acad-row, .acad-row.reverse { flex-direction: column; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content { left: 20px; right: 20px; bottom: 60px; text-align: center; }
  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 14px; }
  .hero-btn { font-size: 14px; padding: 10px 20px; }
  .floating-icons { right: 10px; bottom: 80px; }

  .stats { grid-template-columns: 1fr; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .about-wrapper { flex-direction: column; }
  .about-text h2 { font-size: 26px; }
  .about-text .desc { font-size: 14px; }

  .skill-box { flex-direction: column; }
  .skill-left { width: 100%; border-right: none; border-bottom: 1px solid #ccc; padding: 15px 0; }

  .slide { flex-direction: column; align-items: center; }
  .card { width: 100%; }

  .home-cta h2 { font-size: 28px; }
  .home-cta p { font-size: 14px; }
  .home-cta-btn { font-size: 14px; padding: 12px 24px; }
}

/* Small Mobile */
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .hero { height: 70vh; }
  .hero-content { bottom: 40px; }
  .hero-content h1 { font-size: 22px; }
  .hero-content p { font-size: 12px; }
  .hero-btn { font-size: 12px; padding: 8px 16px; }
}
