*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:rgb(252, 251, 251);
  font-family: system-ui, sans-serif;
  color:#fff;
}

.navbar {
  background-color: #000;
  color: rgb(252, 251, 251);

  height: 64px;                /* FIXED height */
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 15px;             /* ONLY left-right */
  position: sticky;            /* ONLY ONE */
  top: 0;
  z-index: 1000;

  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.home-a{
    text-decoration: none;
    color: inherit;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 55px;
  margin-right: 8px;
  margin-bottom: 0;
}
.logo-text {
    font-size: 30px;
    font-weight: bold;
}
.input-style {
  padding: 1px;
  margin-left: 1rem;
  width: 13rem;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  color: #555;
  outline: none;
}
.input-style:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.search button {
    padding: 5px 5px;
    cursor: pointer;
    background: #ddd;
    border: none;
    border-radius: 4px;
    
}
.search{margin: 0px;
padding: 0px;
}
.search-box button:hover{
    background-color: blue;
    color:rgb(251, 251, 251);
}
/* Nav Links */
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-item {
    text-align: center;
    cursor: pointer;
    font-size: 12px;
}
.nav-item:hover {
    background-color: white;
    color: blue;
}
.nav-item i {
    font-size: 18px;
    display: block;
}
.right-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 3px;
}
.profile-icon {
    font-size: 40px;
    padding: 0px;
    margin-left: 5px;
}
.profile:hover{
    background-color: #FFFFFF42;
    color: blue;
    padding: 1px;
}
.profile-page{
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
.menu-toggle {
    display: none; /* Desktop par chhupa rahega */
    font-size: 22px;
    cursor: pointer;
    
}

#backBtn{
  position: fixed;

  /* 👇 header se neeche */
  top: 72px;      /* desktop header height */
  left: 14px;

  width: 34px;
  height: 34px;

  background: rgba(13, 11, 19, 0.099);
  backdrop-filter: blur(6px);

  border: 1px solid rgba(0, 102, 255, 0.45);
  border-radius: 50%;

  color: black;
  font-size: 16px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 200;   /* header se kam, content se upar */
}

/* 📱 Mobile */
@media (max-width: 768px){
  #backBtn{
    top: 69px;   /* mobile header height */
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

.temp-page{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}

.temp-card{
  width:95%;
  max-width:520px;
  padding:3rem;
  border-radius:22px;
  text-align:center;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 25px rgba(15, 3, 231, 0.6),
    0 0 45px rgba(6,182,212,0.4);
}

.temp-card h1{
  font-size:2.4rem;
  color: #007bff;
  background:linear-gradient(135deg,#2563eb,#06b6d4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  margin-bottom:1rem;
}

.temp-text{
  font-size:1rem;
  line-height:1.6;
  color:#d1d5db;
}

.status-box{
  margin-top:1.5rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#2908e5;
  font-size:0.95rem;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#4906f0;
  box-shadow:0 0 10px #1204e0;
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{opacity:0.4}
  50%{opacity:1}
  100%{opacity:0.4}
}

.temp-btn{
  margin-top:2rem;
  width:100%;
  height:3.4rem;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#2563eb,#3664eb);
  color:#fff;
  font-size:1.05rem;
  font-weight:600;
  opacity:0.8;
  cursor:not-allowed;
}
.site-footer{
  background:#020617;
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:4rem;
  color:#cbd5f5;
  font-family:system-ui, sans-serif;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  padding:3rem 1.5rem;
  display:flex;
  gap:3rem;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* Brand */
.footer-brand{
  max-width:320px;
}

.footer-logo{
  height:42px;
  margin-bottom:0.8rem;
}

.footer-brand p{
  font-size:0.95rem;
  color:#94a3b8;
}

/* Links */
.footer-links h4{
  font-size:1.1rem;
  margin-bottom:0.8rem;
  color:#e5e7eb;
}

.footer-links a{
  display:block;
  text-decoration:none;
  color:#93c5fd;
  font-size:0.95rem;
  margin-bottom:0.5rem;
  transition:color 0.3s;
}

.footer-links a:hover{
  color:#38bdf8;
}

/* Bottom bar */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:1.2rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:0.5rem;
  background:#020617;
  font-size:0.9rem;
}

.managed-by{
  color:#60a5fa;
  font-weight:600;
}

/* Mobile */
@media(max-width:600px){
  .footer-container{
    flex-direction:column;
    gap:2rem;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}


@media(max-width:600px){
  .temp-card{
    padding:2rem;
  }
  .temp-card h1{
    font-size:2rem;
  }
}
@media (max-width: 568px) {
    .logo-text {
        display: none;  }
    .input-style{
        margin-left: 1rem;
  width: 8rem;
    }
    .nav-links {
        display: none; /* Links ko menu ke andar daalenge */
        flex-direction: column;
        position: absolute;
        top: 55px;
        right: 0;
        background: #00000094;
        width: 90px;
        padding: 20px;
        text-align: left;
        gap: 20px;
    }
    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
    .search-box{
     max-width: 180px;
    }
    .main{ display: inline-block;
    }
    .main-page{
        width: 100%;
        height: 103rem;
        background-color: #FDFDFFD1
    }
    .right-icons:hover{
        background-color:rgba(213, 213, 213, 0.8) ;
        color: blue;
    }
    .profile-icon {
    font-size: 28px;
    padding: 0px;
    margin-left: 5px;
    }
    .profile:hover{
        background-color: rgba(213, 213, 213, 0.8);
        border-radius: 5px;
        color: blue;
        font-size: 28px;
        padding-right: 2px;
    }
