.se{
    width: 100%;
}
.s{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
/* Number,Email */
.s1,.s2
{

font-size: 15px;
color: white;
font-weight: 800;

}
.s1{
    /* width: 450px; */
    text-align: end;
}

.s2{
    width:auto;
  margin-right:0;
}


.top-left {
 
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.fire-glow {
  color: #ff6a00; /* base fire orange */
  text-shadow:
    0 0 5px #ff9100,
    0 0 10px #ff4800,
    0 0 20px #ff0000;
  animation: fire-flicker 2s infinite ease-in-out alternate;
}

@keyframes fire-flicker {
  0% {
    text-shadow:
      0 0 5px #00f,      /* Dark Blue glow */
      0 0 15px #00ccff,
      0 0 25px #0099ff,
      0 0 50px #0066cc;
    transform: scale(1);
    color: #00ccff; /* Base text color */
  }
  50% {
    text-shadow:
      0 0 10px #ff0,    /* Yellow glow */
      0 0 20px #ff9900,
      0 0 30px #ff3300,
      0 0 60px #ff0000;
    transform: scale(1.2);
    color: #ffcc00;
  }
  100% {
    text-shadow:
      0 0 5px #00f,     
      0 0 15px #00ccff,
      0 0 25px #0099ff,
      0 0 50px #0066cc;
    transform: scale(1);
    color: #00ccff;
  }
}

/* Apply to your text */
.flicker-text {
  font-size: 4rem;
  font-weight: bold;
  animation: fire-flicker 1s infinite alternate;
}

/* neethu font */

.heading1{
  font-weight: 500;
  font-size: 30px;
  color: whitesmoke;
  margin: 20px;
  margin-bottom: -25px;
}
    

.highlight{
  color: white;
  font-weight: 900;
  font-size: 60px;
  margin-left: 20px;
  margin-bottom: -20px;
  font-style: oblique;
}
 .buttons {
  margin-top: 1.5rem;
}
.apply {
  background: #ff9800;
  color: white;
  padding: 0.8rem 1.5rem;
  margin-right: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
 .visit {
  background: white;
  color: #3c81e9;
  padding: 0.8rem 1.5rem;
  border: none ;
  border-radius: 10px;
  cursor: pointer;
  width: 150px;
}
.hero-quote-box {
  position: absolute;
  bottom: 80px;
  left: 40px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 1rem 1.5rem;
  border-left: 4px solid #ff9800;
  border-radius: 8px;
  max-width: 350px;
  z-index: 2;
}
.hero-quote {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 500;
  font-style: italic;
  transition: opacity 0.5s ease;
}
.hero-quote.fade-out {
  opacity: 0;
}
.hero-quote span {
  opacity: 0;
  display: inline-block;
  animation: letterFade 0.05s forwards;
}
@keyframes letterFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Apply animation to each element */
.hero-text h1,
.hero-subtext,
.animated-quote,
.hero-text .buttons {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  color: white;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  margin-left: 20px;
}

/* neethu */
.fontsize{
  font-size: 1700px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Delay for staggered effect */
.hero-text h1 {
  animation-delay: 0.3s;
  font-size: 70px;
}

.hero-subtext {
  animation-delay: 0.6s;
}

.animated-quote {
  animation-delay: 0.9s;
}

.hero-text .buttons {
  animation-delay: 1.2s;
}




/* ===================================== */
/* ✅ RESPONSIVE FIX - HERO + TOP BAR */
/* ===================================== */

@media (max-width: 1024px) {

  .highlight {
    font-size: 45px;
  }

  .hero-text h1 {
    font-size: 50px;
  }

}


@media (max-width: 768px) {

  /* Top Contact Bar */
  .s {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .s1,
  .s2 {
    width: 100%;
    text-align: center;
    margin: 0;
    font-size: 18px;
  }

  /* Hero Text */
  .hero-text h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-left: 0;
    text-align: center;
  }

  .highlight {
    font-size: 34px;
    margin-left: 0;
  }

  .hero-subtext,
  .animated-quote {
    text-align: center;
    margin-left: 0;
    font-size: 14px;
  }

  .hero-text .buttons {
    text-align: center;
    margin-left: 0;
  }

  .apply,
  .visit {
    width: fit-content;
    margin: 10px 0;
  }

  /* Quote Box */
  .hero-quote-box {
    position: static;
    max-width: 100%;
    margin: 20px auto;
  }

}


@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 26px;
  }

  .highlight {
    font-size: 28px;
  }

  .hero-subtext {
    font-size: 13px;
  }

}