* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f9f6f6ec;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: white;
}
.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;
    
}

.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;
  }
}


#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;
  }
}

/* Center Layout */
.coming-soon {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card */
.coming-card {
  background: rgba(77, 35, 174, 0.248);
  border-radius: 20px;
  padding: 3rem;
  max-width: 520px;
  text-align: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(121, 9, 240, 0.722);
  box-shadow: 0 0 20px rgba(3, 191, 243, 0.682);
}

/* Title */
.coming-card h1 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #320eea, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

/* Tagline */
.tagline {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #0c0c0d;
}

/* Description */
.desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #f26871;
}

/* Badge */
.badge {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #3722ada3, #2d21d6);
  color: #000;
  font-weight: 600;
}


/* Mobile */
@media (max-width: 568px) {
  .coming-card {
    padding: 2rem;
    margin: 1rem;
  }

  .coming-card h1 {
    font-size: 2rem;
  }
}
