
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/c2.jpg') no-repeat center center/cover;
  /* background-color: black; */
  color: #333;
}
  /* Navbar Section */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: #032a58; */
    color: #fff;
    padding: 1rem 2rem;
    
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    
height: 50px;
width: auto;

}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

.navbar ul li {
    margin: 0;
}

.navbar ul li a {
    color:white;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color:white;
    /* box-shadow: 0px 4px 6px rgb(255, 94, 0); */
    text-shadow: 0 0 10px #f35e08,0 0 20px #b84807,0 0 30px #e44c06,0 0 40px #d65a12,0 0 50px #d65a12,0 0 60px #d83e17;
    border-radius:15px;
}

.navbar .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}


h1 {
  text-align: center;
  font-size: 2.5em;
  color: #e6e6e6;

  /* margin-bottom: 20px; */
  margin-top:-5%;
}
h1:hover{
  color: #d8a5e7;
}

p {
  text-align: center;
  color: #555;
  font-size: 1em;
  margin-bottom: 40px;
}


.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}


.contact-info {
  /* background: #ffffff; */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(29, 28, 29, 0.664);
}

.contact-info h2 {
  margin-bottom: 20px;
  color: #d8a5e7;
  font-size: 1.8em;
}

.contact-info p {
  margin: 10px 0;
  color: #e6e3e3;
  font-size: 1em;
  line-height: 1.5;
}

.contact-info .map {
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 250px;
}


.contact-form {
  background: #b9abab;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(85, 16, 214, 0.664);
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #53046b;
  font-size: 1.8em;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


input, textarea {
  width: 96%;
  padding: 10px;
  border: 2px solid #c568f0;
  border-radius: 5px;
  font-size: 1em;
  background: #dcdfe2;
  color: #333;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  border-color: #53046b;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 120, 215, 0.3);
}


button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #a500d7, #740496);
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  transition:background 0.3s;
}

button:hover {
  background: linear-gradient(135deg, #6f047e, #6b0594);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: #36033d;
    padding: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.navbar ul.active {
    display: flex;
}

.navbar .menu-toggle {
    display: block;
    color: #fff;
}
}
