/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0b1b2b, #0d2f46, #124e66);
  color: #E2E8F0;
  line-height: 1.6;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  opacity: 1;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #12A4D9;
}

.logo span {
  color: #14B8A6;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #E2E8F0;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0E7490;
}

/* === HERO === */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  flex-wrap: wrap;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #12A4D9;
}

.hero-text h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #14B8A6;
}

.hero-text p {
  max-width: 500px;
  margin-bottom: 20px;
  color: #E2E8F0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn,
.btn-outline {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s;
}

.btn {
  background: #14B8A6;
  color: #fff;
}

.btn:hover {
  background: #0E7490;
}

.btn-outline {
  border: 2px solid #12A4D9;
  color: #12A4D9;
}

.btn-outline:hover {
  background: #12A4D9;
  color: #fff;
}

.hero-img img {
  width: 200px;
  border-radius: 10px;
}

/* === ABOUT === */
.about {
  padding: 60px 40px;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  color: #12A4D9;
}

.about h3 {
  margin: 10px 0;
  color: #14B8A6;
}

.about-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.highlight {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 600;
}

/* === SKILLS === */
.skills {
  padding: 60px 40px;
}
    #first-display{
             font-size: 16px;
          color: rgb(9, 113, 193);
         padding: 0.5%;
         text-align: center;
         background-color: rgb(2, 36, 62);
         width: 33%;
         border-radius: 20px;
         margin-left: 15%;
         font-weight: bold;
         margin-top: 80px;

        }

.skills h2 {
  text-align: center;
  color: #12A4D9;
  margin-bottom: 30px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.skill-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
}

.skill-card h3 {
  margin-bottom: 15px;
  color: #14B8A6;
}

/* Progress Bars */
.skill-bar {
  margin: 10px 0;
}

.skill-bar span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #E2E8F0;
}

.progress {
  background: #0b1b2b;
  border-radius: 20px;
  overflow: hidden;
  height: 10px;
}

.progress-fill {
  background: #12A4D9;
  height: 100%;
  width: 0%;
  transition: width 2s ease;
}

/* === PROJECTS === */
.projects {
  padding: 60px 40px;
  text-align: center;
}

.projects h2 {
  margin-bottom: 30px;
  color: #12A4D9;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
}

.project-card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

/* === CONTACT === */
.social-links {
  display: block;
  justify-content: center;
  gap: 1rem;
  margin: 20px 0;
  text-align: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #E2E8F0;
}

.social-btn i {
  font-size: 1.2rem;
}

.social-btn.email { background: #12A4D9; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.linkedin { background: #0A66C2; }

.social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.contact {
  padding: 60px 40px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
  color: #12A4D9;
}

.contact-options {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-options a {
  color: #14B8A6;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-options a:hover {
  color: #0E7490;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.contact-form button {
  background: #14B8A6;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

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

/* === FOOTER === */
.footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
}

.footer p {
  margin-bottom: 10px;
}

.socials a {
  margin: 0 10px;
  color: #12A4D9;
  text-decoration: none;
}

.socials a:hover {
  color: #14B8A6;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-img img {
    margin-top: 20px;
  }

  .about-highlights {
    flex-direction: column;
  }

  .contact-options {
  
      display: flex;
      flex-wrap: wrap;
      padding: 0;
      margin-right: 5px ; 
  }

  #show{
 margin-right: 20%;
 margin-top: -20px;
  }

  .contact-options a{
    color:#14bba6;
    text-decoration: none;
    transition: color 0.3s;
    margin-top: 50px;
  }

  .contact-options a:hover{
    color: #0E7490;
  }

  .nav-links{
    display: none;
  }

.btn,
.btn-outline {
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s;
  font-size: 15px;
}
  
.hero-text h1 {
  font-size: 2.0rem;
  color: #12A4D9;
}

.hero-text h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #14B8A6;
}


#con{
margin-left:35px;
}

.hero-text p {
  max-width: 480px;
  margin-bottom: 20px;
  color: #E2E8F0;
}

     #first-display{
          font-size: 12px;
          color: rgb(5, 45, 74);
         padding: 0.5%;
         text-align: center;
         background-color: rgb(4, 74, 128);
         width: 90%;
         border-radius: 20px;
         margin-left: 5%;
         font-weight: bold;
         margin-top: 80px;

        }
    #icon{
      margin-left: 45%;
      margin-top: 5px;
    }

}