/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px #00f7ff;
}
header h1 {
  font-size: 2.5rem;
  color: #00f7ff;
}
nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #ffa500;
  font-weight: bold;
  transition: 0.3s;
}
nav a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-top: 30px;
}
.hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 25px #00f7ff;
}
.hero-content h2 {
  font-size: 2rem;
  color: #ff3333;
  margin-top: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Buttons */
button, .btn {
  padding: 12px 25px;
  background: #ffa500;
  border: none;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6);
  transition: 0.4s ease;
}

button:hover, .btn:hover {
  background: #00ffff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffff;
}

button:hover, .btn:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 15px #00ffff;
}

/* Section Styles */
section {
  margin: 40px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
}
h2 {
  color: #ffa500;
  margin-bottom: 20px;
}

/* Form */
form input, form select {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: #2c2c2c;
  color: #fff;
}
form button {
  width: 100%;
}

/* Select Section */
.select-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.select-section select {
  padding: 10px;
  border-radius: 8px;
  border: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00f7ff;
}
footer h4 {
  color: #3399ff;
  text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero, section, footer {
  animation: fadeInUp 1s ease-in-out;
}
.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ffa500;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
  transition: all 0.3s ease;
  border: none;
}

.cta-btn:hover {
  background: #00ffff;
  color: #000;
  box-shadow: 0 0 25px #00ffff;
  transform: scale(1.05);
}
.blink {
  animation: blinkEffect 1s infinite;
  color: #9aff03; /* Red ya koi bhi vibrant color */
  font-weight: bold;
}

@keyframes blinkEffect {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.profile-menu {
  position: relative;
  display: inline-block;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
  color: white;
  padding: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #1f1f1f;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
  border-radius: 8px;
  z-index: 1000;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 1px solid #333;
}

.dropdown-content a:hover {
  background-color: #333;
}

.profile-pic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  color: #00ffff;
  font-weight: bold;
  margin-left: 8px;
}

.profile-menu:hover .dropdown-content {
  display: block;
}
/* Existing desktop styles remain same */

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .nav-links a {
    display: block;
    margin-left: 0;
  }

  .logo {
    flex-direction: column;
  }
}
