:root {
  --primary-gradient: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);
  --primary-color: #0066cc;
  --hover-color: #0059b3;
}

body {
  background: var(--primary-gradient);
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

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

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

.logo-container {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-login,
.btn-signup {
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-login {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-login:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-signup {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: white;
}

.btn-signup:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}

.contact-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
}

.contact-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #007bff, #00d2ff);
}

.contact-title {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #007bff, #00d2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  position: relative;
}

.contact-info-box {
  padding: 1.5rem;
  border-radius: 15px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-box i {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.contact-info-box h5 {
  color: #333;
  margin: 0.5rem 0;
  font-weight: 600;
}

.contact-info-box p {
  color: #666;
  margin: 0;
}

.contact-form input,
.contact-form textarea {
  border: none;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
  outline: none;
}

.contact-form button {
  background: linear-gradient(90deg, #007bff, #00d2ff);
  border: none;
  border-radius: 10px;
  padding: 1rem;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.contact-card .floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  opacity: 0.1;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #007bff;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 30px;
  height: 30px;
  background: #00d2ff;
  transform: rotate(45deg);
}

/* Footer Styles */
.footer {
  background: #1e293b;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  height: 150px;
  margin-bottom: 1rem;
}

.footer-links h5 {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links a {
  color: white;
  margin-right: 1rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid #334155;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .logo-container {
    width: 35px;
    height: 35px;
  }

  .navbar-brand {
    font-size: 0.9rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-section {
    margin-bottom: 2rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-info-box {
    margin-bottom: 1rem;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    margin: 0 0.3rem;
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.footer {
  background-size: 200% 200%;
  animation: gradientBG 15s ease infinite;
}