
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0f172a;
  color: #fff;
}
header {
  background: #1e293b;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-size: 1.8rem;
   color: #38bdf8;
   text-transform: uppercase;
   font-weight: 700;
   
   text-shadow: 0 0 10px #38bdf8;
}
.menu-toggle {
  font-size: 2rem;
  color: white;
  display: none;
  cursor: pointer;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  text-decoration: none;
  color: #94a3b8;
  font-weight: bold;
}
.nav-links li a:hover {
  color: #38bdf8;
}
.nav-links .close-menu {
  display: none;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background: #1e293b;
    width: 200px;
    height: 100vh;
    padding: 20px;
  }
  nav.open {
    display: block;
  }
  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
  .nav-links .close-menu {
    display: block;
    font-size: 2rem;
    color: red;
    cursor: pointer;
  }
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 50px;
}
.content h1 {
  font-size: 3rem;
}
.highlight {
  color: #38bdf8;
}
.socials a {
  margin: 0 10px;
  color: #38bdf8;
  font-size: 1.5rem;
}
.btn {
  padding: 10px 20px;
  background: #38bdf8;
  color: #fff;
  border-radius: 5px;
  margin-top: 20px;
  margin-bottom: 19px;
  text-decoration: none;
  display: inline-block;
}
.profile-pic {
  width: 250px;
  border-radius: 20px;
  box-shadow: 0 0 20px #38bdf8;
}
#contact {
  padding: 40px 20px;
  background-color: #0f172a;
}
/* Contact Section Layout */
#contact {
  padding: 60px 20px;
  background-color: #0f172a;
  color: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

/* Left Info Panel */
.contact-info {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-info h3 {
  font-size: 1.1rem;
  color: #38bdf8;
  margin-bottom: 8px;
}

.contact-info h3 i {
  margin-right: 8px;
  color: #38bdf8;
}

.contact-info p {
  margin-bottom: 20px;
  color: #cbd5e1;
}

/* Right Form Panel */
.contact-form {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background-color: #1e293b;
  color: #fff;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 12px;
  background-color: #38bdf8;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

/* Responsive for Mobile */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    flex: 1 1 100%;
  }
}

footer {
  text-align: center;
  padding: 20px;
  background: #1e293b;
  color: #94a3b8;
}
