body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

/* Header Start  */

header {
  background-color: #333;
  color: #fff;
  padding: 25px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav li {
  margin-left: 20px;
}

.a-style {
  color: rgb(62, 191, 246);
}

header a {
  color: #fff;
  font-size: 2rem;
  transition: color 0.3s ease-in-out;
}

nav a {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease-in-out;
}

nav a:hover,
header a:hover {
  color: rgb(62, 191, 246);
}

/* Header End  */

/* Main  */

/* Myself Start */
main {
  width: 70vw;
  margin: 0 auto;
}

section {
  margin: 100px 0 100px 0;
}

#myself {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 40px;
}

.left-content {
  flex: 1;
  text-align: left;
}



.right-content {
  flex: 1;
  text-align: right;
}

h1,
p {
  margin-bottom: 20px;
}

.right-content img {
  width: 100%;
  box-shadow: 10px 10px rgb(62, 191, 246);
  border-radius: 20px 10px 20px 10px;
  cursor: pointer;
}

.resume {
  padding: 10px 20px;
  border: 1px solid rgb(62, 191, 246);
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.resume:hover {
  color: white;
  background-color: black;
}

/* Myself End */

/* Skills Start  */

#skills {
  padding: 40px;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: rgb(185, 181, 181) 4px 4px;
}

.skills-container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.skill h2 {
  color: #1405b7;
}

.skill {
  flex: 1;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 0 10px;
}

/* Skill End  */

/* Form Start  */

#contact {
  background-color: #0a4d6a;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: #124457 4px 4px;
}

#contact h2 {
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
}

input,
textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
}

button {
  background-color: #fff;
  color: #1d0e8b;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

button:hover {
  background-color: #112032;
  /* Sky Blue background on hover */
  color: #fff;
  /* White text on hover */
}

/* Form End   */


/* Footer Start */

footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.social-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  margin-right: 15px;
  transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
  color: rgb(62, 191, 246);
  ;

}

.reserved {
  margin: 20px;
}

.reserved a {
  text-decoration: none;
  color: rgb(62, 191, 246);
}

@media screen and (max-width: 600px) {

  #myself,
  .skills-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }


}

/* Footer End */
