/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
 
  body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #000;
    height: 100vh;
    overflow-x: hidden;
  }

  a {
    text-decoration: none;
    color: #000;
  }

  /* LOADER */
  /* Loader Styling */
  .loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0d0d0d;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
    visibility: visible;
  }
  

.loader {
  border: 6px solid #fff;
  border-top: 6px solid #ea6e30; /* Match your theme color */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 12px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.loader-wrapper.hide {
  opacity: 0;
  visibility: hidden;
}

/* Initially hide main content */
.main-content {
  display: none;
}

  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 10;
    top: 0;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
  
  nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: opacity 0.3s;
  }
  
  nav a:hover {
    opacity: 0.7;
  }
  
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-top: 4rem;
    text-align: left;
   margin-left: -400px;
  }
  
  .hero-content {
    max-width: 700px;
    padding: 0 2rem;
  }
  
  .hero h1 {
    font-size: 5rem;
    line-height: 1.2;
    overflow: hidden;
  }

  .hero-img{
    top: -100px;
    left: 900px;
  position: absolute;
    width: 600px;
    z-index: 2;
  }
  
  .cta {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.1rem;
    text-decoration: none;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 4px;
    transition: all 0.3s ease;
    opacity: 1;
  }
  
  .cta:hover {
    opacity: 0.7;
  }
  /* PROJECTS */

  .projects {
    padding: 6rem 2rem;
    background-color: #fafafa;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    
  }
  
  .projects-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .project-card {
    background-color: #fff;
    padding: 1.5rem;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  }
  
  .project-image {
    background-color: #ccc;
    height: 200px;
    margin-bottom: 1rem;
  }
  
  .project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  
  .project-card p {
    color: #555;
  }
  .status {
    font-size: 0.7rem;
    padding: 3px 8px;
    background: #eee;
    color: #333;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
  }
  
  .status.approved {
    background: #007b55;
    color: #fff;
  }
/* ABOUT ME */
/* 
.bg-img-aboutme {
  position: absolute;
 top: 2070px;

} */

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

    .about {
      /* background: url(./img/background-aboutMe.png);
      background-repeat: no-repeat; */
        padding: 6rem 2rem;
      
      }
      
      .about-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
      }
      
      .about-image img {
       margin-top: -50px;
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #eee;
      }
      
      .about-text {
        max-width: 600px;
        text-align: center;
      }
      
      .about-text p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        color: #333;
      }
      
      .about-buttons {
        margin-top: 2rem;
        display: flex;
        gap: 1rem;
        justify-content: center;
      }
      
      .btn {
        text-decoration: none;
        background: #000;
        color: #fff;
        padding: 0.75rem 1.5rem;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .btn:hover {
        background: #333;
      }
      
      .btn.secondary {
        background: #eee;
        color: #000;
      }
      
      .btn.secondary:hover {
        background: #ddd;
      }
      /* CONTACT ME */
      .contact {
        padding: 6rem 2rem;
        background-color: #fafafa;
        text-align: center;
      }
      
      .contact-form {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      
      .contact-form input,
      .contact-form textarea {
        padding: 1rem;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-family: inherit;
        width: 100%;
      }
      
      .contact-form button {
        align-self: center;
      }
      .form-status {
        margin-top: 1.5rem;
        font-size: 1rem;
        color: #007b55;
        text-align: center;
      }
            
      /* SKILLS */

      /* .skills {
        padding: 6rem 2rem;
        background-color: #fff;
        text-align: center;
      }
      
      .skills-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        max-width: 800px;
        margin: 2rem auto 0;
      }
      
      .skill-card {
        padding: 1rem 1.5rem;
        border: 1px solid #eee;
        border-radius: 8px;
        font-weight: 600;
        background-color: #f9f9f9;
        transition: transform 0.3s, box-shadow 0.3s;
      }
      
      .skill-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      } */

      .skills-section {
        background: #ffffff;
        color: #000000;
        padding: 60px 20px;
        border-radius: 30px;
        max-width: 710px;
        margin: auto;
        box-shadow:  10px solid #ccc;
      }
      
      .skills-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 40px;
      }
      
      .skills-container {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
      }
      
      .skills-column {
        /* flex: 1; */
        display: flex;
        flex-direction: row;
        min-width: 20px;
      }
      
      .skill {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 30px;
        gap: 20px;
      }
      
      .skill img {
        width: 45px;
        margin-bottom: 5px;
      }
      
      .skill span {
        font-weight: 600;
        margin-bottom: 8px;
        width: 110px;
      }
      
      .progress {
        height: 10px;
        background: #b4b4b4;
        border-radius: 50px;
        overflow: hidden;
        display: none;
      }
      
      .progress-bar {
        height: 100%;
        background: #ea6e30; /* your theme primary color */
        transition: width 0.5s ease-in-out;
      }
      
 /* FOOOTER  */

 .footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 1rem 0;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-top: 1rem;
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {

  /* HERO SECTION */
  .hero {
    flex-direction: column;
    margin-left: 0;
    /* margin-top: 20px; */
    padding: 2rem 1rem;
    height: auto;
    text-align: center;
    position: relative;
  }

  .hero-content {
    padding: 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .hero-img {
    position: relative;
    width: 90%;
    max-width: 300px;
    left: 0;
    top: 0;
    margin-top: 2rem;
  }

  /* SKILLS SECTION */
  .skills-section {
    padding: 3rem 1rem;
    max-width: 100%;
    border-radius: 20px;
  }

  .skills-title {
    font-size: 2rem;
  }

  .skills-container {
    gap: 20px;
  }

  .skills-column {
    flex-direction: column;
    align-items: center;
  }

  .skill {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .skill span {
    width: auto;
  }

  .skill img {
    width: 40px;
  }

  .progress {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px; /* Add space for fixed header */
  }
}