/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #0c444b;
  color: white;
  line-height: 1.6;
}

header {
    /* background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRwU6XX_4Gc4TSTgw_JLmRrkBhnygCrVpl8CQ&s');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; */


  background-color: #143247;
  padding: 15px 40px;
  position: top;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00f0ff;
}

.intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 180px 80px 100px;
  background-color: #0c444b;
  
    /* background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSyBKok3c76f_yNszlmR0HmGG9Bt7VKKHjfwA&s');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; */
}

.intro-text {
  max-width: 600px;
}

.intro-text h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.intro-text span {
  color: #00f0ff;
}

.intro-text p {
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.6;
  color: #c4c4c4;
}

.social-links a {
  margin-right: 15px;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.social-links a:hover {
  color: #00f0ff;
  transform: translateY(-3px);
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #00f0ff;
  color: #09131c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: 16px;
}

.btn:hover {
  background-color: #00c4ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 196, 255, 0.3);
}

.intro-image img {
  width: 350px;
  height: 350px;
  border-radius: 65%;
  object-fit: cover;
  border: 5px solid #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 80px;
  background-color: #16384b;
}

.about-text {
  max-width: 600px;
}

.about-text h2 {
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-text span {
  color: #00f0ff;
}

.about-text p {
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.6;
  color: #c4c4c4;
}

.about-image img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #00f0ff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.education {
  padding: 100px 80px;
background-color: #083845;
  text-align: center;
}

.education h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 50px;
}

.education h2 span {
  color: #00f0ff;
}

.education-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.education-item {
  background-color: #091314f1;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  transition: transform 0.3s ease;
}

.education-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.education-item h3 {
  font-size: 24px;
  color: #00f0ff;
  margin-bottom: 15px;
}

.education-item p {
  font-size: 16px;
  color: #c4c4c4;
  margin-bottom: 10px;
}

.skills-section {
  padding: 100px 80px;
  background-color: #112233;
}

.skills-section h2 {
  text-align: center;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 50px;
}

.skills-section h2 span {
  color: #00f0ff;
}

.skill-bar {
  margin: 30px 0;
}

.skill-bar p {
  margin-bottom: 10px;
  font-size: 18px;
}

.progress {
  background-color: #0c1a25;
  border-radius: 20px;
  position: relative;
  height: 25px;
  width: 100%;
}

.progress-done {
  background: linear-gradient(to left, #00f260, #0575e6);
  box-shadow: 0 3px 3px -5px #00f260, 0 2px 5px #0575e6;
  border-radius: 20px;
  color: #fff;
  height: 100%;
  width: 0;
  opacity: 0;
  transition: 1s ease 0.3s;
}

.circular-skills {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 30px;
}

.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(#0575e6 calc(var(--percent) * 1%), #0c1a25 0);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.inner-circle {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background-color: #112233;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

.circle p {
  position: absolute;
  bottom: -40px;
  text-align: center;
  width: 100%;
  font-size: 16px;
}

.projects-section {
  padding: 100px 80px;
  background-color: #0c1a25;
}

.projects-section h2 {
  text-align: center;
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 50px;
}

.projects-section h2 span {
  color: #00f0ff;
}

.projects-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.project-card {
  background-color: #101111c2;
  padding: 30px;
  border-radius: 15px;
  width: calc(33.333% - 20px);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.project-card h3 {
  font-size: 24px;
  color: #00f0ff;
  margin-bottom: 15px;
}

.project-card p {
  font-size: 16px;
  color: #c4c4c4;
  margin-bottom: 20px;
}

.training-section, .achievements-section {
  padding: 100px 80px;
  background-color: #112233;
  text-align: center;
}

.training-section h2, .achievements-section h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 50px;
}

.training-section h2 span, .achievements-section h2 span {
  color: #00f0ff;
}

.training-container, .achievements-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.training-item, .achievement-item {
  background-color: #181919ee;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  transition: transform 0.3s ease;
}

.training-item:hover, .achievement-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.training-item h3, .achievement-item h3 {
  font-size: 24px;
  color: #00f0ff;
  margin-bottom: 15px;
}

.training-item p, .achievement-item p {
  font-size: 16px;
  color: #c4c4c4;
  margin-bottom: 10px;
}

.achievements-section {
  background-color: #0c1a25;
}

.contact {
  padding: 100px 80px;
  background-color: #112233;
  color: #ffffff;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-info {
  max-width: 45%;
}

.contact-info h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-info h2 span {
  color: #00f0ff;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #c4c4c4;
}

.contact-info p strong {
  color: #ffffff;
}

.contact-form {
  max-width: 45%;
  width: 100%;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  background-color: #171a1c;
  color: #ffffff;
  font-size: 16px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form .btn {
  width: 100%;
  padding: 15px 20px;
  background-color: #00f0ff;
  color: #09131c;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
  background-color: #00cce7;
}

@media (max-width: 768px) {
  .intro, .about {
    flex-direction: column;
    padding: 120px 20px 60px;
  }
  
  .intro-text, .about-text {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .education-container, .projects-container, 
  .training-container, .achievements-container {
    flex-direction: column;
    align-items: center;
  }
  
  .education-item, .project-card, 
  .training-item, .achievement-item {
    width: 100%;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info, .contact-form {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 10px;
  }
}
