/* 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 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;
}
/* 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: #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 */
.pillars-sec {
  background: #ffffff;
  padding: 50px 0;
}

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

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

.pillars-sec h2 {
  font-size: 38px;
  color: #1b2a41;
}

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

/* GRID */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.pillar-card {
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

/* ICON */
.pillar-icon {
  width: 50px;
  height: 50px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  border-radius: 5px;
}

/* TEXT */
.pillar-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1b2a41;
}

.pillar-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* HOVER */
.pillar-card:hover {
  transform: translateY(-5px);
  border-color: #f4b400;
}

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

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

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

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

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

.value-sec h2 {
  font-size: 38px;
  color: #1b2a41;
}

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

/* ROW */
.value-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

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

/* IMAGE */
.value-img {
  width: 100%;
  max-width: 500px;
  background-color: #f4b400;
}

.value-img-box {
  height: 300px;
  width: 100%;
  /* background: #ddd; */
  /* border: 2px dashed #bbb; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

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

.value-content h3 {
  font-size: 38px;
  color: #1b2a41;
}

.value-content p {
  color: #000; 
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 18px;
}

  .value-content p{
  color: #f4b400;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 18px;
}

/* POINTS */
.value-points {
  color: #5d5d5d;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 30px;
}

.value-points div {
  font-size: 18px;
  color: #5d5d5d;
}

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

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

  .value-points {
    grid-template-columns: 1fr;
  }
}
/* Tablet */
@media (max-width: 992px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .value-row, .value-row.reverse { flex-direction: column; gap: 30px; }
  .value-points { grid-template-columns: 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; }

  .pillars-sec h2, .value-sec h2, .value-content h3 { font-size: 28px; }
  .pillars-desc, .value-desc, .value-content p, .value-points div { font-size: 14px; }
}

/* Small Mobile */
@media (max-width: 600px) {
  .pillars-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; }
}