 
 :root {
      --primary-bg: #0C0C0C;              /* --primary-bg: #1D250E;
      --accent-green: #38451a;
      --olive-light: #859F3D;
      --cream: #F6FCDF;
      --white: #ffffff; */
      --Van-Cleef: #481E14;
      --Prairie-Sand: #9B3922;
      --Outrageous-Orange: #f2613f;
      --cream: #F6FCDF;
    }

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

    
/* Simple pulse animation */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}
    @keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}


    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--primary-bg);
      color: var(--cream);
      line-height: 1.6;
      margin: 0;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 30px 70px;
      background-color: var(--primary-bg);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
.logo {
  font-family: 'Pacifico', cursive; /* Stylish font */
  font-size: 40px;
  color: var( --Prairie-Sand);
  letter-spacing: 2px;
  text-transform: lowercase;
  font-weight: 700;
  
}

    .hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
}
    
    .navbar nav ul {
      list-style: none;
      display: flex;
      gap: 50px;
    }

    .navbar nav ul li a {
      text-decoration: none;
      color: var(--cream);
      font-weight: 500;
      transition: color 0.3s ease;
      font-size: 16px;
    }

    .navbar nav ul li a:hover {
      color: var(--Prairie-Sand);
    }

    .hire-btn {
       background-image: linear-gradient(to bottom right,#f2613f, #481E14);
      color: var(--primary-bg);
      padding: 10px 16px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 18px;
    }
    .hero {
      padding: 120px 350px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--primary-bg);
      
      
    }

    .hero-content {
     
      width: 1140px;
      padding: 10px 20px;
      border-left: 2px solid #f2613f;
      border-radius: 8px;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 30px;
      height: 400px;
    }

    .avatar {
      width: 350px;
      height: 350px;
      border-radius: 50%;
      object-fit: cover;
    }

    @keyframes typing {
  from { width: 0; }
  to { width: 100%; }
  }
  .typing {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--cream); /* blinking cursor */
  display: inline-block;
}

.typing-h1 {
  width: 0;
  animation: typing 2.0s steps(30, end) forwards;
  animation-fill-mode: forwards;
}

.typing-h2 {
  width: 0;
  animation: typing 2.0s steps(30, end) forwards;
  animation-delay: 2.0s; /* wait until h1 finishes */
  animation-fill-mode: forwards;
}
.no-cursor {
  border-right: none !important;
}




    .intro{
    
      padding-top: 40px;
      padding-bottom: 20px;
      height: 380px;
    }
 .intros h1 {
  font-size: 48px;
  font-weight: bold;
  color: var(--cream);
  margin: 0;
  text-align: left;
}

.intros h2 {
  font-size: 36px;
   font-weight: 600;
   color: var(--Prairie-Sand);
  margin: 0;
  text-align: left;
}
.intro p {
      font-size: 16px;
      max-width: 400px;
  padding-bottom: 20px;
    }

   .social-links a {
  display: inline-block;
  min-width: 50px;
  text-align: center;
  padding: 10px 0;
  margin-right: 5px;
  text-decoration: none;
  color: var(--cream);
  font-size: 18px;
  font-weight: 500;
  border: 1px solid var(--Prairie-Sand);
  border-radius: 8px;
  transition: 0.3s ease;
    }

  .social-links a:hover {
  background-color: var(--Prairie-Sand);
  color: var(--primary-bg);
    }
  .bordered-text{
    width: 372px;
    align-items: center;

  }
  .border-wrapper {
  display: flex;
  justify-content: center;  /* ✅ centers the inline-block h2 */
  }
   .projects-grid {
  border-radius: 8px;
   
  padding-right: 50px;
  padding-left: 300px;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align:end;
  margin-right: 250px;
  margin-left: 0px;
}
.glass {
  background: linear-gradient(
    135deg,
    rgba(12, 12, 12, 0.4),  /* #0C0C0C with 40% opacity */
    rgba(72, 30, 20, 0.4)   /* #481E14 with 40% opacity */
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.projects-grid h2 {
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 40px;
  font-weight: 600;
  margin-left: 490px;
  border-bottom-style: solid;
  border-radius: 4px; 
  padding-bottom: 10px; 
  border-color: #f2613f;
   width: auto;                /* ✅ Let it fit text */
    display: inline-block;
}

.project-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-card {
 /* background-image: linear-gradient(to bottom right,#3c3737,#481E14);*/
 background-image: linear-gradient(to bottom right,#3c3737,#481E14);
  border-radius: 8px;
  padding: 20px;
  max-width: 400px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  object-fit: cover; 
    
  width: 100%;
  height: 250px;
  border-radius: 8px;
  margin-bottom: 2px;
}

.project-card h3 {
  color: var(--Outrageous-Orange);
  font-size: 20px;
  margin: 0px;
}

.project-card p {
  color: var(--cream);
  font-size: 14px;
  margin: 0px;
}
.about {
  display: flex;
  flex-direction: column;
  padding: 50px 250px;
  gap: 10px;
}

.about h2 {
  font-size: 28px;
  text-align: center;
  color: var(--cream);
  margin-bottom: 40px;
  border-bottom-style: solid;
  border-radius: 4px; 
  padding-bottom: 20px; 
  border-color: #f2613f;
  
}

/* Image and paragraph side by side */
.about .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.about .content {
  flex: 1;
  max-width: 600px;
}

.about img {
  width: 300px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about p {
  color: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  }
  .skills-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  border: 3px solid var(--Prairie-Sand);
  border-radius: 32px;
  padding: 60px 100px;
  margin-left: 200px;
  width: 1500px;
  margin-right: 0px;
  margin-top: 20px;

}
.skill h2{
 border-bottom-style: solid;
      border-radius: 4px; 
      padding-bottom: 10px; 
      border-color: #f2613f;
      
      align-items: center;
        margin: 30px 40px;
       color: var(--cream);
        display: inline-block;
     width: auto;  
     
  }
  
.skill{
    display: flex;
  justify-content: center;  /* ✅ centers the inline-block h2 */
  }

.tool-icons {
  display: flex;
  gap: 4rem;
}

.tool-icons img {
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease;
  border: 1px solid var(--Prairie-Sand);
  border-radius: 8px;
  padding: 10px;
}

.tool-icons img:hover {
  transform: scale(1.1);
}

.text-skills {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 1.5rem;
}

 .education, .experience {
      padding: 80px 60px;
      background-color: var(--primary-bg);
    }
    .education h2 {
       font-size: 28px;
      font-weight: 700;
      text-align: center;
      
      border-bottom-style: solid;
      border-radius: 4px; 
      padding-bottom: 10px; 
      border-color: #f2613f;
      width: 266px;
       color: var(--cream); 
      align-items: center;
        margin: 0 auto 40px;
    }

    .education-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
   background-image: linear-gradient(to bottom right,#9B3922,#230f0a);
    border: 1px solid #481E14;
  border-radius: 10px;
  padding: 20px 100px;
  margin-bottom: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.edu-content h3 , .exp-content h3{
  margin: 0;
  font-size: 20px;
  color:#ffffff;
}

.edu-content p , .exp-content p {
  margin: 4px 0 0;
  color: #F6FCDF;
  font-size: 14px;
}

.edu-year p, .exp-year p{
  margin: 0;
  font-weight: 600;
  color: #F6FCDF;
  font-size: 16px;
}

  .exp-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
 background-image: linear-gradient(to bottom right,#230f0a,#9B3922);
    border: 1px solid #481E14;
  border-radius: 10px;
  padding: 20px 100px;
  margin-bottom: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.Experience h2 {
       font-size: 28px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
      border-bottom-style: solid;
      border-radius: 4px; 
      padding-bottom: 10px; 
      border-color: #f2613f;
      width: 350px;
      align-items: center;
         margin: 0 auto 40px;
    }

    .contact-box h2{
        font-size: 28px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 30px;
      border-bottom-style: solid;
      border-radius: 4px; 
      padding-bottom: 10px; 
      border-color: #f2613f;
      width: 300px;
      align-items: center;
     
    }
    .contact-box{
      margin-top: 100px;
      margin-bottom: 80px;
      border: 3px solid var(--Prairie-Sand);
      border-radius: 32px;
      padding: 60px 250px;
      margin-left:  300px;
      margin-right: 300px;
      display: flex;
     flex-direction: column;
     align-items: center;   /* horizontal centering */
     justify-content: center; /* vertical centering */
     text-align: center;  
    
    }
 .contact-box p {
      font-size: 16px;
      margin-bottom: 20px;
      text-align: center;
      align-items: center;
     
    }
    .contact-links a { 
  display: inline-block;
  min-width: 60px;
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
  margin-right: 5px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 700;
  border: 1px solid var(--Prairie-Sand);
  border-radius: 8px;
  transition: 0.3s ease;
    }

  .contact-links a:hover {
  background-color: var(--Outrageous-Orange);
  color: var(--primary-bg);
    }

    

    .contact a:hover {
      background-color: var(--olive-light);
      color: var(--white);
    } 

    .footer {
  text-align: center;
  padding: 20px 10px;
  background-color: var(--primary-bg); /* or use a slightly darker shade */
  color: var(--cream);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
 
}

html {
  scroll-behavior: smooth;
} 



@media (max-width: 480px) {

  .hero,
.about,
.skills-section,
.projects-grid,
.education,
.Experience,
.contact-box {
  padding-left: 16px;
  padding-right: 16px;
}
  .navbar {
    padding: 16px 20px;
    flex-wrap: wrap;
     position: sticky;
      top: 0;
  z-index: 1000; /* make sure it stays on top of other content */
  }
    .navbar .logo {
      font-size: 26px;
      font-weight: 600;
      color: var(--Prairie-Sand);
    }
  .hamburger {
    display: block;
    font-size: 24px;
  }

  .nav-menu {
    width: 100%;
    display: none;
     position: absolute;     
     top: 40px;                       /* below the navbar */
    right: 0px;
    flex-direction: column;
    margin-top: 12px;
    background-color:var(--primary-bg);
     align-items: center; 
      opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  }

  .nav-menu.active {
    display: flex;
      opacity: 1;
  visibility: visible;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 8px;
     padding-right: 30px;
     padding-bottom: 20px;
    margin: 0;
    align-items:center;  
  }

  .hero {
    padding: 20px 20px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
     height: auto;  
      flex-wrap: wrap;
  }

  .avatar {
    width: 140px;
    height: auto;
    border-radius: 50%;
  }

  .intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    text-align: center; /* 👈 Ensures all text inside is centered */
     width: 100%;
      height: auto;
  }
  .intros{
     text-align: center; /* 👈 Ensures h1 and h2 are centered */
      width: 100%;  
      justify-content: center;
  }

  .intros h1 {
    font-size: 20px;
    margin: 0;
  }

  .intros h2 {
    font-size: 16px;
     color: var(--Prairie-Sand);
    margin: 0;
  }
 

  .intros h1,
  .intros h2 {
    text-align: center;
  }

  .intro p {
    font-size: 12px;
    max-width: 300px;
    margin: 0;
    padding-bottom: 5px;
  }

  .social-links {
    display: flex;
    gap: 4px;
  }

  .social-links a {
    font-size: 12px;
     font-weight: 400;
     min-width: 30px;
     color: var(--cream);
    text-decoration: none;
    border: 1px solid var(--Prairie-Sand);
    padding: 4px 0;
    border-radius: 4px;
   transition: 0.3s ease;
  }

  .social-links a:hover {
  background-color: var(--Outrageous-Orange);
  color: var(--primary-bg);
    }


  /* Section spacing and centering */
  .projects-grid {
  padding: 30px 16px;
 
  text-align: center;
  width: 100%;       /* ✅ Full width on mobile */
  max-width: 480px;  /* Optional: Limit width for readability */
  margin: 0 auto;    /* ✅ Center the section */
 
}
.border-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
  justify-content: center;
}
.projects-grid h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin: 0;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--Outrageous-Orange);
  display: inline-block; 
  text-align: center;     /* shrink to text width */
  line-height: 1;           /* avoid extra height from spacing */
}

/* ✅ Stack and center cards */
.project-container {
  display: flex;
  flex-direction: column;
  align-items: center;  /* ✅ This centers the cards */
  gap: 20px;
}

/* ✅ Clean and responsive card */
.project-card {
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  max-width: 300px;       /* ✅ Max width for each card */
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

.project-card h3 {
  color: var(--Outrageous-Orange);
  font-size: 16px;
  margin: 0px;
}

.project-card p {
  color: var(--cream);
  font-size: 14px;
  margin: 0px;
}

.project-card a {
  display: block;
} .about {
    padding: 30px 20px;
  }

  .about h2 {
     display: inline-block;       
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
     padding-bottom: 4px;    
  }
    .about-heading-wrapper {
  display: flex;
  justify-content: center;  /* ✅ centers the inline-block h2 */
}
  .about .content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .about img {
    width: 140px;
    margin-bottom: 10px;
  }

  .about p {
    font-size: 14px;
    text-align: center;
  } 
  .skills-section {
    padding: 20px 20px;
    text-align: center;
  }

  .skill h2 {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid var(--Outrageous-Orange);
    padding-bottom: 4px;
    margin: 0 auto 20px;
    display: inline-block;
     color: var(--cream);
  }

  .skills-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: none; /* Hide large border on mobile */
    border-radius: 16px;
    padding: 20px;
    margin: 0 auto;
    width: 100%;
  }
  .skill{
     display: flex;
  justify-content: center;  /* ✅ centers the inline-block h2 */
  }

  .text-skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ Two skills per row */
    gap: 6px;
    justify-items: center;
  }

  .text-skills span {
     
    color:var(--cream);
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
    width: 100px;           /* ✅ Set equal width */
  text-align: center;     /* ✅ Center the text inside */
  display: inline-block;  /* ✅ Prevent stretching */
  }

  .tool-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .tool-icons img {
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 1px solid var(--Prairie-Sand);
    border-radius: 8px;
    object-fit: contain;
  }

   .education, .experience {
    padding: 20px 20px;
  }

  .education h2 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #f2613f;
    padding-bottom: 4px;
    margin: 0 auto 24px;
     color: var(--cream);
    width: auto;                /* ✅ Let it fit text */
    display: inline-block;
  }
  .edu-wrap{
     display: flex;
  justify-content: center;  /* ✅ centers the inline-block h2 */
  }

  .education-box {
    display: flex;
    flex-direction: column;    /* ✅ Stack text and year */
    align-items: center;
    border-radius: 6px;
    padding: 14px;
    margin-bottom: 16px;
    width: 100%;
  }

  .edu-content h3,
  .exp-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
  }
.edu-content{
  margin: bottom 0px;;
}
  .edu-content p,
  .exp-content p {
    font-size: 13px;
    color: #F6FCDF;
    margin-bottom: 12px;
  }

  .edu-year p,
  .exp-year p {
    font-size: 13px;
    color: #F6FCDF;
    font-weight: 600;
  }
   .Experience {
    padding: 20px 20px;
    text-align: center;
  }

  .Experience h2 {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #f2613f;
    padding-bottom: 4px;
    margin: 0 auto 24px;
    display: inline-block;
     width: auto;  
     color: var(--cream);
  }
  .exp-wrap{
    display: flex;
  justify-content: center;  /* ✅ centers the inline-block h2 */
  }

  .exp-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
    width: 100%;
    text-align: center;
  }


  .contact-box {
    margin-top: 20px;
    margin-bottom: 60px;
    margin-left: 18px;
    margin-right: 18px;
    padding: 10px 20px;
    border: 2px solid var(--Prairie-Sand);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-box h2 {
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #f2613f;
    padding-bottom: 6px;
    margin-bottom: 20px;
    width: auto;
    display: inline-block;
  }

  .contact-box p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--cream);
  }

  .contact-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-links a {
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    min-width: 70px;
    border: 1px solid var(--Prairie-Sand);
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
  }

  .contact-links a:hover {
    background-color: var(--Outrageous-Orange);
    color: var(--primary-bg);
  }
   .footer {
    font-size: 8px;
    padding: 12px 8px;
  }
  [data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

}

@media (max-width: 768px) {
  /* Global Section Padding */
  .hero,
  .about,
  .skills-section,
  .projects-grid,
  .education,
  .Experience,
  .contact-box {
    padding-left: 24px;
    padding-right: 24px;
  }

  .navbar {
    padding: 16px 24px;
  }

  .hero {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    display: flex;
    align-items: center;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 0;
  }

  .projects-grid {
    padding: 40px 24px;
    margin: 0 auto;
  }

  .project-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .project-card {
    width: 100%;
    max-width: 350px;
  }

  .skills-container {
    padding: 30px 24px;
    width: 100%;
    margin: 0 auto;
  }

  .text-skills {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-items: center;
  }

  .education-box,
  .exp-box {
    flex-direction: column;
    padding: 20px;
    width: 100%;
    text-align: center;
  }

  .contact-box {
    margin: 40px 24px;
    padding: 20px;
  }
}
