body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0b0f1a; 
  color: white;
  overflow-x: hidden; 
  position: relative;
  -webkit-text-size-adjust: 100%; 
}

html {
  scroll-behavior: smooth;
}

/* 1. General Section Centering */
#experience, #IT-skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 5%;
  text-align: center;
  min-height: 100vh;
}

.section__text__p1 {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  /* Optional: Add a subtle green text-shadow to match your theme */
  text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

/* 2. The Rectangular Glassy Container */
.details-container {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(15px);           
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 127, 0.4); 
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 1000px; 
  margin: 0 auto;
}

.experience-sub-title {
  color: rgba(0, 255, 127, 1); /* Highlighted Green Title */
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
/* Hover effect to make it "Shine" more */
.details-container:hover {
  border: 1px solid rgba(0, 255, 127, 1); 
  box-shadow: 0 0 25px rgba(0, 255, 127, 0.5); 
  transform: translateY(-5px);
}

/* 3. Skills Grid Alignment */
.article-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

article {
  display: flex;
  width: 200px; 
  justify-content: flex-start;
  gap: 1rem;
  text-align: left;
}

article .icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(0, 255, 127, 0.3)); 
}

article h3 {
  font-size: 1.1rem;
  margin: 0;
  color: white;
}

article p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
/* Container to push buttons to opposite corners */
.button {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 10px 40px;            
  margin-top: -20px;             
}

/* The Glassy Button Style */
.btn {
  text-decoration: none;
  font-weight: bold;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  
  /* Glass effect */
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  /* Shiny Green Border */
  border: 1px solid rgba(0, 255, 127, 0.6);
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.2);
  
  transition: all 0.3s ease;
}

/* Hover Effect for extra shine */
.btn:hover {
  background: rgba(0, 255, 127, 0.2);
  border-color: #00ff7f;
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
  transform: translateY(-2px); 
}
/* Footer Styling */
footer {
  display: flex;
  flex-direction: column; 
  align-items: center;   
  padding: 20px;
  width: 100%;
}

footer p {
  margin: 5px 0;        
  font-family: sans-serif;
}

/* Optional: Add a very thin glassy line above the footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}