/* top-menu*/
 .nav{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #7a71;
    border-bottom: 1px solid #00d4ff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    z-index: 1000;
  }

  .nav .logo img{
    margin-left: 96px;
    width: 25%;
  }

  .nav-menu a{
    color: #ffffff;
    text-decoration: none;
    margin: 18px;
    padding: 10px 10px;
    
  }

/* Contact page*/

body {
  margin-top: 8%;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(#1b2735 0%, #090a0f 100%);
  color: #fff;
}

.contact-hero {
  text-align: center;
  padding: 80px 20px;
  background: #050517;
}

.contact-hero h1 {
  font-size: 3rem;
  color: #ff6600;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.contact-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 60px 20px;
  gap: 40px;
  background: #0d0d2b;
}

.contact-form, .contact-info {
  background: #1e1e2e;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 0 10px #00d4ff33;
}

.contact-form h2, .contact-info h2 {
  color: #00d4ff;
  margin-bottom: 20px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: #0d0d2b;
  border: 1px solid #00d4ff;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px 24px;
  background-color: #ff6600;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.social-media {
  text-align: center;
  padding: 40px 20px;
  background-color: #0d0d2b;
  color: #fff;
}

.social-media h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00d4ff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.social-icons a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px #00d4ff);
}


.contact-form button:hover {
  background-color: #ff8533;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
  color: #ccc;
}
.contact-form-section {
  padding: 80px 20px;
  background: #050517;
  color: #ffffff;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background: #0d0d2b;
  border: 2px solid #00d4ff;
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form button.btn {
  background-color: #ff6600;
  border: none;
  cursor: pointer;
  padding: 14px 30px;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form button.btn:hover {
  background-color: #ff8533;
}


.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  margin-top: -5px;
}

/* Footer */

.footer {
  padding: 60px 20px;
  background: #ff6600;
  color: #00d4ff;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 50%;
  margin-bottom: 20px;
}

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

.footer-links ul li {
  margin: 20px;
}

.footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00d4ff;
}

.footer-contact {
  color: #ddddff;
}

.footer-contact h3 {
  color: #00d4ff;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ddddff;
  font-size: 1rem;
}

.footer-contact p img {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-contact p:hover img {
  transform: scale(1.2);
}

.footer-contact p span {
  color: #ffffff;
}

/* footer-bottom*/

.footer-bottom-2 {
  grid-column: 1 / -1; 
  text-align: center;
  padding-top: 20px;
  color: #ddddff;
  border-top: 1px solid #ffcc5b;
  font-size: 0.9rem;
  margin-bottom: -70px;
}

@media (max-width: 768px) {
  /* Top Navigation */
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .nav .logo img {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-menu a {
    margin: 8px 0;
    padding: 8px;
  }

  /* Contact Section */
  .contact-section {
    grid-template-columns: 1fr;
    padding: 40px 10px;
  }

  .contact-form, .contact-info {
    padding: 30px 20px;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-contact p img {
    margin-right: 10px;
  }

  .footer-bottom-2 {
    font-size: 0.8rem;
    padding-top: 15px;
  }

  /* Contact Form Section */
  .contact-form-section h2 {
    font-size: 2rem;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .map iframe {
    height: 300px;
  }
}
