:root{
  --primary:#800000;
  --secondary:#000080;
  --text:#222;
  --radius:12px;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI,Arial,sans-serif;
}
body{
  color:var(--text);
  line-height:1.6;
}

/* HEADER */
.header-top{
  position:sticky;
  top:0;
  z-index:1000;
  background:linear-gradient(90deg,var(--primary),var(--secondary));
}

/* MAIN HEADER */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0.8rem 1.5rem;
}

.header-praise{
  color:#ffd700;
  text-shadow:
    0 0 6px #ffd700,
    0 0 12px rgba(255,215,0,0.8);
  animation: pulseLight 1.8s infinite;
}

@media(max-width:768px){

  header{
    flex-wrap:wrap;
  }

  .logo{
    flex:1 1 100%;
  }

  .menu-btn{
    position:absolute;
    right:15px;
    top:20px;
  }

  .header-praise{
    flex:1 1 100%;
    order:3;
    text-align:center;
    margin-top:5px;
    font-size:0.85rem;
  }

}

@keyframes pulseLight{
  0%,100%{opacity:1;}
  50%{opacity:0.6;}
}

.logo{
  display:flex;
  align-items:center;
  gap:0.6rem;
  color:#fff;
}
.logo img{
  width:40px;
  height:40px;
  border-radius:50%;
  border:2px solid #fff;
}

/* DESKTOP HEADER LOGO TEXT - Colorful & Glowing */
.logo-text {
  font-weight: 700;
  font-size: 1.2rem;

  animation: rainbowAnimation 5s linear infinite;

}

/* Animate gradient */
@keyframes rainbowAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media(max-width:768px){

  header{
    flex-wrap:wrap; /* allow items to stack */
    align-items:center;
    justify-content:flex-start;
    padding:0.5rem 1rem;
  }

  .logo{
    flex:1 1 100%;
    display:flex;
    align-items:center;
    gap:0.5rem;
  }

  .logo img{
    width:35px;
    height:35px;
  }

@media(max-width:768px){
  .logo-text {
    font-size: 1.1rem; /* smaller for mobile */
    text-shadow: 0 0 3px #fff, 0 0 6px #ff0; /* subtle glow */
  }
}
  .header-praise{
    flex:1 1 100%;
    order:2;
    margin-top:4px;
    text-align:center;
    font-size:0.8rem; /* smaller for mobile */
  }

  .menu-btn{
    position:absolute;
    right:10px;
    top:15px;
    font-size:1.8rem;
  }
  

  nav{
    width:100%;
    top:3.5rem;
  }
}

.logo img{
  animation: logoGlow 2.5s infinite alternate;
}

@keyframes logoGlow{
  from{
    box-shadow: 0 0 5px #fff, 0 0 10px #ffd700;
  }
  to{
    box-shadow: 0 0 15px #fff, 0 0 30px #ffd700;
  }
}


nav{
  display:flex;
  gap:1.3rem;
}
nav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
nav a:hover{
  color:#ffd700;
}

.menu-btn{
  display:none;
  font-size:1.9rem;
  color:#fff;
  cursor:pointer;
}

/* PRAISE TEXT */
.header-praise{
  text-align:center;
  color:#fff;
  font-size:0.9rem;
  font-weight:700;
  padding:0.35rem 0 0.5rem;
  border-top:1px solid rgba(255,255,255,0.25);
}

/* MOBILE NAV */
@media(max-width:768px){
  nav{
    position:absolute;
    top:4.5rem;
    left:0;
    right:0;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    flex-direction:column;
    display:none;
  }
  nav.show{
    display:flex;
  }
  nav a{
    padding:1rem;
    text-align:center;
  }
  .menu-btn{
    display:block;
  }
}

/* HERO */
.hero{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:1rem;
  max-width:900px;
}
.hero h1{
  font-size:3rem;
  font-weight:800;
  margin-bottom:1rem;
}
.hero h1 span{
  color:#ffd700;
}
.hero p{
  font-size:1.2rem;
  margin-bottom:2rem;
}

/* BUTTON */
/* ===== PREMIUM GRAND BUTTON ===== */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.6rem;
  padding:1rem 2.6rem;
  font-size:1rem;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  border:none;
  border-radius:50px;
  cursor:pointer;
  overflow:hidden;
  background:linear-gradient(135deg,#800000,#000080);
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
  transition:all 0.4s ease;
}

/* Hover Effect */
.btn:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(0,0,0,0.45);
}

/* Shine Animation */
.btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition:0.6s;
}

.btn:hover::before{
  left:100%;
}

/* Click Effect */
.btn:active{
  transform:scale(0.96);
}

@media(max-width:768px){
  .hero h1{
    font-size:2rem;
  }
  .hero p{
    font-size:1rem;
  }
}

/* MOTTO */
.motto-wrapper{
  display:flex;
  justify-content:center;
  padding:3rem 1rem;
}
.motto-box{
  max-width:600px;
  width:100%;
  background:#fff;
  border:2px solid var(--secondary);
  border-radius:14px;
  padding:2rem;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,0.15);
}
.motto-box h3{
  color:var(--primary);
  margin-bottom:1.2rem;
}
.motto-box p{
  margin:0.4rem 0;
  font-weight:500;
}
.motto-title{
  text-align:center;
  font-size:30px;
  font-weight:800;
  margin:40px 0;
  color:#444;
}

.motto-title span{
  color:#28a745;
  font-weight:900;
}

/* VIDEO CENTER */
.video-center{
  display:flex;
  justify-content:center;
  padding:3rem 1rem;
}
.video-center video{
  width:100%;
  max-width:880px;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

/* FOOTER */
footer{
  background:#f7f7f7;
  padding:2rem 1rem 1rem;
}
.footer-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  justify-content:space-between;
}
.footer-col h3,
.footer-col h4{
  margin-bottom:0.75rem;
}
.footer-col ul{
  list-style:none;
}
.footer-col ul li{
  margin-bottom:0.5rem;
}
.footer-col ul li a{
  text-decoration:none;
  color:#222;
}
.footer-col ul li a:hover{
  color:var(--primary);
}

.footer-gstin a{
  color:var(--primary);
  font-weight:700;
  text-decoration:none;
}

.social-links a{
  margin-right:0.75rem;
  opacity:0.7;
  text-decoration:none;
  color:#222;
  cursor:default;
}
.social-links a:hover{
  opacity:1;
  color:var(--primary);
}

.footer-bottom{
  text-align:center;
  margin-top:1.5rem;
  font-size:0.9rem;
}



@media(max-width:768px){
  .footer-container{
    flex-direction:column; /* stack columns vertically */
    gap:1.5rem;
    align-items:center;
  }

  .footer-col{
    text-align:center; /* center text and links */
    width:100%;
  }

  .footer-col ul{
    padding:0;
  }

.social-links a{
  padding:0.4rem 0.6rem;
  border-radius:6px;
  transition:0.3s;
}
.social-links a:hover{
  background:var(--primary);
  color:#fff;
  opacity:1;
}
  .footer-bottom{
    font-size:0.85rem; /* slightly smaller text */
    padding-top:1rem;
  }
}


/* NOTIFY POPUP */
.notify-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}

.notify-box{
  background:#fff;
  width:90%;
  max-width:420px;
  border-radius:16px;
  padding:1rem;
  position:relative;
  animation:popupZoom 0.4s ease;
}

@keyframes popupZoom{
  from{transform:scale(0.7);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

.notify-box h3{
  text-align:center;
  color:#800000;
  margin-bottom:0.6rem;
}

.notify-box iframe{
  width:100%;
  height:420px;
  border:none;
  border-radius:12px;
}

.notify-close{
  position:absolute;
  top:8px;
  right:12px;
  font-size:1.6rem;
  cursor:pointer;
  color:#333;
}
.notify-close:hover{
  color:#800000;
}

