/* HERO SECTION */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  color: #fff;
}

/* VIDEO BACKGROUND CONTAINER */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

/* IMAGE (fallback) */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 🔊 SOUND BUTTON (improved) */
.sound-btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 5;
  /* background: rgba(0, 0, 0, 0.6); */
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

/* hover effect */
.sound-btn:hover {
  background: #f4b400;
  color: #000;
}

/* DARK OVERLAY */
/* .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 50, 0.65);
  z-index: 2;
} */

/* ANNOUNCEMENT BAR */
.announcement {
  position: absolute;
  top: 0;
  width: 100%;
  background: #0b1f3a;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  text-align: center;
  z-index: 4;
   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 {
  position: absolute;
  bottom: 50px;
}
/* CONTENT */
.hero-content {
  position: absolute;
  bottom: 100px;
  left: 60px;
  max-width: 650px;
  z-index: 3;
}

/* TITLE */
.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;
}
.hero-content h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}

/* TEXT */
.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #e0e0e0;
}

/* 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;
}

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

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

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

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

  .sound-btn {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
/* 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 */
.journey-sec {
  width: 100%;
  height: auto;
  /* background: #ff0000; */
  padding: 30px 0;
}

/* WRAPPER */
.journey-wrap {
  width: 90%;
  margin: auto;
/* background-color: #25d366; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

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

/* TAGLINE */
.journey-mini {
    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;
  color: #f4b400;
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

/* TITLE */
.journey-title {
font-size: 38px;
    color: #1b2a41;
    margin-bottom: 15px;
  font-size: 46px;
  color: #1b2a41;
  margin-bottom: 15px;
}

/* TEXT */
.journey-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 18px;
  color: #666;
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 30px;
}

/* CARD */
.journey-card {
  background: #ffb70027;
  padding: 28px;
  border-left: 5px solid #f4b400;
}

.journey-card h3 {
  font-size: 20px;
  color: #1b2a41;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.journey-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

/* RIGHT */
.journey-right {
  height: auto;
  width: 50%;
}

.journey-right img {
  width: 100%;
  height: 100%;
  display: block;
  /* border-radius: 6px; */
}

@media (max-width: 1024px) {
.journey-wrap {
padding: 30px 30px;
display: flex;
flex-direction: column;
gap: 25px;
}
.journey-right{
  width: 100%;
}
}

@media (max-width: 443px) {
.journey-sec .journey-wrap .journey-left .journey-mini{
  font-size: 14px;
}
.journey-sec .journey-wrap .journey-left .journey-title {
font-size: 28px;
}
.journey-sec{
  padding: 15px 0;
}
.journey-wrap {
padding: 15px 10px;
}
}

.lf-sec {
  font-family: 'Segoe UI', sans-serif;
}

/* TOP */
.lf-top {
  background: #ffffff;
  padding: 90px 0 60px;
}

.lf-wrap {
  width: 88%;
  margin: auto;
}

.lf-title {
  font-size: 38px;
  font-weight: 700;
  color: #1b2a41;
  margin-bottom: 20px;
}

.lf-text {
  color: #777;
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 100%;
  font-size:20px ;
}

.lf-highlight {
  color: #1b2a41;
  font-weight: 600;
  margin: 25px 0;
  font-size: 18px;
}

/* PROMISE */
.lf-promise {
  display: flex;
  background:#ffb4001a;
  border: 1px solid #bfb7a5;
  margin-top: 20px;
}

.lf-p-left {
  width: 190px;
  padding: 27px 20px;
  font-size: 18px;
  font-weight: 700;
  border-right: 1px solid #bfb7a5;
  color:#0b1f3a
}

.lf-p-right {
  padding: 27px 25px;
  font-size: 18px;
}

/* BLOCK */
.lf-block {
  /* background: #e9e4d8; */
  /* padding: 60px 0; */
  padding-top:20px ;
  position: relative;
  z-index: 1;
}

.lf-block.alt {
  background: #ffffff;
}

/* FLEX BOX PANEL */
.lf-flex {
  /* width: 88%; */
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
  background:#ffb4001a;
  padding: 60px 90px;
}

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

/* IMAGE */
.lf-img {
  width: 300px;
  text-align: center;
  /* margin-top: -120px; */
  position: relative;
  z-index: 2;
}

.lf-img img {
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.136);
}

.lf-img h4 {
  margin-top: 15px;
  font-size: 18px;
  color: #1b2a41;
}

.lf-img span {
  font-size: 20px;
  color: #777;
  font-weight: 500;
}

/* CONTENT */
.lf-content {
  flex: 1;
  max-width: 100%;
}

.lf-content h3 {
  font-size: 36px;
  font-weight: 700;
  color: #1b2a41;
  margin-bottom: 20px;
}

.lf-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 20px;
  /* font-size: 18px; */
}

/* BUTTON */

.lf-btn {
  display: inline;
  /* margin-top: 10px; */
  border: 1.5px solid #f4b400;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
  margin-top: 20px;
}

.lf-btn:hover {
  background: #f4b400;
}
@media (max-width: 992px) {

  .lf-flex {
    flex-direction: column;
    padding: 30px;
  }

  .lf-img {
    margin-top: 0;
    width: 100%;
  }

  .lf-content {
    max-width: 100%;
  }

  .lf-promise {
    flex-direction: column;
  }

  .lf-p-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #bfb7a5;
  }
}
/* OVERLAY */
.pf-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* BOX */
.pf-box {
    width: 90%;
    height: 95%;
  background: #e9e4d8;
  padding: 40px;
  border-radius: 15px;
  position: relative;
}

/* CLOSE */
.pf-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
}

/* GRID */
.pf-grid {
  display: flex;
  gap: 20px;
}

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

.pf-left h2 {
  font-size: 28px;
  color: #1b2a41;
}

.pf-desc {
  color: #666;
  margin: 15px 0;
  font-size: 14px;
}

.pf-degree {
  font-weight: 600;
  margin-bottom: 15px;
}

/* TAGS */
.pf-tags span {
  background: #0b2a47;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  margin-right: 10px;
  font-size: 13px;
}

/* SECTION */
.pf-section {
  margin-top: 25px;
}

.pf-section h4 {
  margin-bottom: 10px;
  color: #1b2a41;
}

.pf-section ul {
  padding-left: 18px;
}

/* RIGHT */
.pf-right {
  width: 650px;
}
.pf-right .img-con{
    width: 210px;
    height: 230px;
     margin-bottom: 20px;
    }

.pf-right .img-con img {
  width: 100%;
  height:100%;
  object-fit: cover;
  border-radius: 10px;
 
}

/* CARD */
.pf-card {
  background: #dcd6c8;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
   border-left: 4px solid #0b1f3a;
}

/* FOOT */
.pf-footer {
  /* margin-top: 30px; */
  padding: 15px;
  background: #d3cec2;
  border-radius: 8px;
  /* text-align: center; */
  font-weight: 500;
 border-left: 4px solid #0b1f3a;
}


/* SECTION */
.ms-sec {
  background: #16243a;
  padding: 90px 0;
}

/* WRAP */
.ms-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.ms-title {
  font-size: 38px;
  color: #fff;
  margin-bottom: 10px;
}

.ms-sub {
  color: #cfcfcf;
  margin-bottom: 50px;
  font-size: 18px;
}

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

/* CARD */
.ms-card {
  background: #f2f2f2;
  padding: 25px;
  /* border-radius: 2px; */
  transition: 0.3s;
}
/* Icon hover effect */
.ms-card:hover .ms-icon {
  background: #f4b400; /* yellow background */
  transform: scale(1.1); /* slight zoom for effect */
}

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

.ms-card:hover .ms-icon img {
  filter: brightness(0) invert(1); /* makes icon white for contrast */
}
/* ICON BOX */
.ms-icon {
  width: 50px;
  height: 50px;
  background: #e4e4e4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
}

/* TITLE */
.ms-card h4 {
  font-size: 16px;
  color: #1b2a41;
  margin-bottom: 10px;
}

/* TEXT */
.ms-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* HOVER */
.ms-card:hover {
  transform: translateY(-6px);
}

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

@media (max-width: 600px) {
  .ms-grid {
    grid-template-columns: 1fr;
  }
}
/* 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; }

  .journey-wrap { flex-direction: column; gap: 30px; padding: 20px; }
  .journey-right { width: 100%; }

  .lf-flex { flex-direction: column; padding: 30px; gap: 30px; }
  .lf-img { width: 100%; margin-top: 0; }
  .lf-content h3 { font-size: 28px; }
  .lf-content p { font-size: 16px; }

  .lf-promise { flex-direction: column; }
  .lf-p-left { width: 100%; border-right: none; border-bottom: 1px solid #bfb7a5; }

  .pf-grid { flex-direction: column; }
  .pf-right { width: 100%; }
  .pf-box { height: auto; }
}

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

  .journey-title { font-size: 26px; }
  .journey-text { font-size: 14px; }
  .journey-card h3 { font-size: 18px; }
  .journey-card p { font-size: 14px; }

  .lf-title { font-size: 26px; }
  .lf-text { font-size: 14px; }
  .lf-highlight { font-size: 14px; }
  .lf-content h3 { font-size: 22px; }
  .lf-content p { font-size: 14px; }
  .lf-btn { font-size: 14px; padding: 8px 16px; }

  .pf-left h2 { font-size: 22px; }
  .pf-desc { font-size: 13px; }
  .pf-tags span { font-size: 12px; padding: 6px 12px; }

  .ms-title { font-size: 26px; }
  .ms-sub { font-size: 14px; }
  .ms-grid { grid-template-columns: 1fr; }
}

/* 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; }

  .journey-mini { font-size: 12px; }
  .journey-title { font-size: 22px; }
  .journey-text { font-size: 12px; }

  .lf-title { font-size: 22px; }
  .lf-content h3 { font-size: 20px; }
  .lf-content p { font-size: 12px; }

  .pf-left h2 { font-size: 18px; }
  .pf-desc { font-size: 12px; }
  .pf-degree { font-size: 14px; }

  .ms-title { font-size: 22px; }
  .ms-sub { font-size: 12px; }
}
/* Mobile Popup Fix */
@media (max-width: 768px) {
  .pf-box {
    width: 95%;       /* shrink width */
    height: auto;     /* let content decide height */
    padding: 20px;    /* reduce padding */
    overflow-y: auto; /* scroll if content too long */
  }

  .pf-grid {
    flex-direction: column; /* stack left/right vertically */
    gap: 15px;
  }

  .pf-right {
    width: 100%; /* full width on mobile */
  }

  .pf-right .img-con {
    width: 150px;
    height: 160px;
    margin: auto; /* center image */
  }

  .pf-close {
    top: 10px;
    right: 15px;
    font-size: 22px; /* smaller close button */
  }
}

/* Small Mobile Popup Fix */
@media (max-width: 480px) {
  .pf-box {
    width: 95%;
    height: auto;
    padding: 15px;
  }

  .pf-left h2 {
    font-size: 18px;
  }

  .pf-desc {
    font-size: 12px;
  }

  .pf-tags span {
    font-size: 11px;
    padding: 4px 10px;
  }

  .pf-right .img-con {
    width: 120px;
    height: 130px;
  }
}
