* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
/* Header container */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 80px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

/* Logo section */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
  border-radius: 8px;
}

.logo h1 {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}

/* Navigation menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f36aff;
  text-shadow: 0 0 8px #f36aff;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 15px 30px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}


/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: linear-gradient(to right, #3a003f, #11010f);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black; /* Or your header text color */
}

header .logo img {
  height: 50px;
  width: 50px;
  margin-right: 10px;
}

header .logo span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}


nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff4bff;
}

/* HERO SECTION */
.contact-hero {
  position: relative;
  height: 60vh;
  background: url('contactbg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.contact-title {
  position: relative;
  z-index: 2;
}

.contact-title h1 {
  font-size: 3rem;
  text-transform: uppercase;
  text-shadow: 0 0 15px #ff4bff;
}

.contact-title p {
  color: #ddd;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* CONTACT SECTION */
.contact-section {
  background: #0e0e0e;
  color: white;
  padding: 80px 100px;
}

.container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-form,
.contact-info {
  flex: 1;
  min-width: 350px;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff4bff;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #1a1a1a;
  color: white;
}

.contact-form button {
  background: linear-gradient(90deg, #ff4bff, #9a00ff);
  border: none;
  color: white;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  box-shadow: 0 0 20px #ff4bff;
}

.info-item {
  margin: 20px 0;
}

.info-item h4 {
  color: #ff4bff;
  margin-bottom: 5px;
}

/* FOOTER */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer Styling */
footer {
  background-color: #0d0012;
  color: #fff;
  padding: 50px 30px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 200px;
}

.logo-section img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-section h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.contact-section p {
  margin: 6px 0;
  color: #ccc;
}

.contact-section a {
  color: #ccc;
  text-decoration: none;
}

.contact-section a:hover {
  color: #fff;
}

.social-section a {
  color: #ccc;
  font-size: 20px;
  margin-right: 15px;
  transition: 0.3s;
}

.social-section a:hover {
  color: #fff;
}

footer {
  background: #120013;
  color: white;
  padding: 60px 80px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 50px;
  border-radius: 10px;
}

.footer-logo p {
  margin-top: 10px;
  color: #aaa;
}

.footer-links ul {
  list-style: none;
  margin-top: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ff4bff;
}

.footer-contact p {
  color: #aaa;
  margin-top: 8px;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #777;
}
/* 🌙 Responsive Navbar Design */
@media (max-width: 900px) {
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    position: relative;
  }

  /* Hide normal menu */
  nav ul {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    border-radius: 10px;
    padding: 15px 0;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease-in-out;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    text-align: center;
    padding: 10px 0;
  }

  nav ul li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
  }

  /* Hamburger icon */
  .menu-toggle {
    display: block;
    font-size: 25px;
    cursor: pointer;
    color: #fff;
  }
}

/* Hide hamburger for desktop */
@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }

  nav ul {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
  }
}
