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

/* Google Fonts for futuristic look */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
  margin: 0;
  font-family: 'Times-new-roman', sans-serif;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}


/* Top Header with Indian Tricolor + Glass Look */
.top-header {
  background: linear-gradient(to bottom, #FF9933 0%, #FF9933 33.33%, white 33.33%, white 66.66%, #138808 66.66%, #138808 100%);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Logo Styling */
.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #000;
  background-color: #fff;
}

/* Title Styling */
.title h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #000080;
  margin: 0;
  text-shadow: 1px 1px 2px white;
}

/* Login link */
.login{
  color: #000;
  background: #ffea00;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.login a:hover {
  background-color: #eee;
  color: #000080;
}

.ad-space {
  position: fixed;
  right: 10px;
  top: 150px;
  width: 80px;
  height: 400px;
  border: 2px dashed gold;
  color: gold;
  writing-mode: vertical-rl;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        align-items: center;
        padding: 15px 20px;
    }
    .logo img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .top-header {
        flex-direction: column;
        font-size: 0.8rem; /* Smaller font size */
    }
    .title {
        font-size: 1.2rem; /* Smaller title font size */
    }
}
@media (max-width: 320px) {
    .top-header {
        font-size: 0.7rem; /* Even smaller font size */
    }
    .title {
        font-size: 1rem; /* Even smaller title font size */
    }
}
@media (max-width: 240px) {
    .top-header {
        font-size: 0.6rem; /* Very small font size */
    }
    .title {
        font-size: 0.8rem; /* Very small title font size */
    }
}
@media (max-width: 160px) {
    .top-header {
        font-size: 0.5rem; /* Extremely small font size */
    }
    .title {
        font-size: 0.6rem; /* Extremely small title font size */
    }
}
@media (max-width: 120px) {
    .top-header {
        font-size: 0.4rem; /* Minuscule font size */
    }
    .title {
        font-size: 0.5rem; /* Minuscule title font size */
    }
}
@media (max-width: 80px) {
    .top-header {
        font-size: 0.3rem; /* Almost unreadable font size */
    }
    .title {
        font-size: 0.4rem; /* Almost unreadable title font size */
    }
}
@media (max-width: 60px) {
    .top-header {
        font-size: 0.2rem; /* Nearly invisible font size */
    }
    .title {
        font-size: 0.3rem; /* Nearly invisible title font size */
    }
}
.footer {
  background: rgb(20, 30, 85);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 -4px 20px rgba(0, 255, 255, 0.1);
  position: relative;
  width: 100%;
  margin-top: 60px;
  border-radius: 20px 20px 0 0;
}

.footer .social-media {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.footer .social-media a {
  font-size: 1.5rem;
  color: #00f0ff;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 50%;
  transition: 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

.footer .social-media a:hover {
  color: #ffffff;
  background: #00f0ff;
  box-shadow: 0 0 20px #00f0ff;
  transform: scale(1.1);
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer .footer-links a {
  color: #aad8ff;
  font-size: 0.95rem;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer .footer-links a:hover {
  color: #ffffff;
  text-shadow: 0 0 5px #00f0ff;
}

.footer .footer-text {
  font-size: 0.85rem;
  color: #cccccc;
  margin: 5px 0;
}

.footer .brand-name {
  color: #00f9ff;
  font-weight: bold;
  letter-spacing: 1px;
}

.footer .designer {
  color: #fff;
  background: linear-gradient(to right, #00f0ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer {
  animation: glowFooter 5s infinite alternate;
}

@keyframes glowFooter {
  from {
    box-shadow: 0 -4px 15px rgba(0, 255, 255, 0.2);
  }
  to {
    box-shadow: 0 -4px 25px rgba(0, 255, 255, 0.5);
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 15px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #00ffe7;
  box-shadow: 0 -2px 10px rgba(0, 255, 231, 0.1);
  z-index: 999;
}

.cookie-banner p { margin: 0; }

.cookie-banner button {
  background: linear-gradient(90deg, #00f0ff, #0072ff);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 12px #00f0ff;
  transition: 0.3s ease;
}
.cookie-banner button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00f0ff;
}


.akash{
    text-decoration: none;
}

.akash:hover{
  color: #000000;
  background-color: #18647e;
  box-shadow: 0 0 20px #00f0ff;
  transform: scale(1.1);
}

/* Hover effect for all links */
a {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

a:hover {
    color: #00cfff; /* cyan hover color */
    transform: scale(1.05);
}

/* Hover effect for buttons */
button, .btn {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover, .btn:hover {
    background-color: #0099cc; /* darker cyan */
    transform: translateY(-2px);
}