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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0d1b2a;
  color: #fff;
  padding-top: 90px;
}

/* Navbar Styles */
.navbar {
  background: rgba(10, 25, 47, 0.9);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}

.navbar-toggler {
  position: absolute;
  top: 12px;
  right: 20px;
  padding: 6px 10px;
  font-size: 1.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  height: 44px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: background 0.3s ease;
}

.navbar-toggler .fas {
  font-size: 1.4rem;
  color: #dbeafe;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.1);
}

.navbar-nav .nav-item {
  margin-left: 15px;
}

.navbar-nav .nav-link {
  color: #dbeafe !important;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: #ffae42 !important;
}

.dropdown-menu {
  background: #1f2937;
  border: none;
  border-radius: 8px;
}

.dropdown-item {
  color: #dbeafe !important;
  font-weight: 500;
  transition: background 0.3s ease-in-out;
}

.dropdown-item:hover {
  background: #374151;
  color: #ffae42 !important;
}

.social-icon {
  font-size: 20px;
}

.social-icon i {
  transition: transform 0.3s ease-in-out;
}

.social-icon i:hover {
  transform: scale(1.2);
}

/* Contact Form Styles */
.contact-container {
  background-color: #1b263b;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  max-width: 500px;
  width: 100%;
  margin: 40px auto;
  animation: fadeIn 0.6s ease-in-out;
}

.contact-container h1 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #e0e1dd;
}

.contact-container p {
  margin-bottom: 30px;
  font-weight: 300;
  color: #adb5bd;
}

.none {
  display: none !important;
}

.pop {
  position: absolute;
  bottom: 60px; /* adjust this value to control how low it appears */
  left: 50%;
  transform: translateX(-50%);
  background: #1b263b;
  padding: 1rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.4px);
  z-index: 1000;
  transition: all 0.3s ease;
}

.response {
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.input {
  width: 100%;
  padding: 14px 12px 14px 12px;
  font-size: 16px;
  background: transparent;
  border: 2px solid #495057;
  border-radius: 8px;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.input:focus,
.input:not(:placeholder-shown) {
  border-color: #00f2fe;
}

label {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #bbb;
  font-size: 16px;
  pointer-events: none;
  transition: 0.2s ease all;
  background-color: #1b263b;
  padding: 0 6px;
}

.input:focus + label,
.input:not(:placeholder-shown) + label {
  top: -10px;
  left: 12px;
  font-size: 12px;
  color: #00f2fe;
}

input,
textarea {
  width: 100%;
  padding: 12px 15px;
  background: transparent;
  border: 2px solid #495057;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: #00f2fe;
}

textarea {
  resize: none;
}

button {
  width: 100%;
  padding: 14px;
  background: #00f2fe;
  border: none;
  border-radius: 8px;
  color: #0d1b2a;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease-in-out;
  box-shadow: 0 0 12px #00f2fe, 0 0 24px #00f2fe;
  z-index: 1;
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #00f2fe 0%, transparent 70%);
  animation: pulse 2s infinite;
  z-index: -1;
  opacity: 0.15;
}

button:hover {
  background: #3a86ff;
  color: #fff;
  box-shadow: 0 0 16px #00f2fe, 0 0 32px #00f2fe;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.6; }
  100% { transform: scale(1); opacity: 0.3; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

label {
  position: absolute;
  left: 10px;
  top: 12px;
  color: #777;
  transition: all 0.3s ease;
  pointer-events: none;
}

.input:focus + label,
label.selected {
  top: -10px;
  font-size: 12px;
  color: #3498db;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}