* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #7e7e7e;
  line-height: 1.6;
}

.navv{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background-color: #5b77b1;
   
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-left: 10%;
  padding: 20px 0;
  display: inline-block;
}

.navv ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 20px 10%;
  margin: 0;
 
  padding: 0; 
}

.navv a {
  margin-left: 20px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 600;
  transition: color 0.3s ease;
}

.main {
  display: flex;
  flex-wrap: wrap;
      align-items: center;

  padding: 60px 10%;
  background-color: #39506c;
  color: white;
}

span.name
{
    color: rgb(26 220 206 / 94%);

}


.content {
  flex: 1;
  width: 280px;
  width: 600px;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 550px;
}

.content button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  margin-right: 10px;
  background: white;
  color: #5a5506;
  font-weight: 600;
  cursor: pointer;
  
}

.content button:hover {
  background: #caf0f8;
  transform: scale(1.05);
}

.image {
  flex: 1;
  text-align: center;
}

.image img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-me {
  padding: 60px 10%;
  background-color: white;
  text-align: center;
}

.about-me h2 {
  font-size: 2rem;
  color: #5a5506;
  margin-bottom: 20px;
}

.about-me p {
  font-size: 1.1rem;
  color: #444;
  max-width: 800px;
  margin: auto;
  text-align: justify;
  line-height: 1.8;
}



@media (max-width: 768px) {
  .main {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .content button {
    margin: 10px 5px;
  }

  .image img {
    width: 200px;
    height: 200px;
  }
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #5b77b1;
    color: white;
    margin-top: 40px;
}

.contact-container {
  background: white;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-container h1 {
  color: #0077b6;
  margin-bottom: 15px;
}

.contact-container p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  text-align: left;
}

label {
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

input,
textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s;
}

input:focus,
textarea:focus {
  border-color: #0077b6;
  outline: none;
}

button {
  background-color: #0077b6;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #005f8a;
}