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. Center the entire section */
#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 4rem 5%;
}

.section__text__p1 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  
  /* 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: 3rem;
  /* Optional: Add a subtle green text-shadow to match your theme */
  text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

/* 2. Main Outer Container (The Row) */
.contact-info-upper-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; 
  width: 100%;
  max-width: 900px;
}

/* 3. The Rectangular Glassy Contact Boxes */
.contact-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  
  /* Glassy Background */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  
  /* Green Sparkling Border */
  border: 2px solid rgba(0, 255, 127, 0.6);
  border-radius: 15px; 
  
  /* Glow Effect */
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
  transition: all 0.3s ease;
  flex: 1; 
  min-width: 300px;
}

/* Spark more on hover */
.contact-info-container:hover {
  border-color: rgba(0, 255, 127, 1);
  box-shadow: 0 0 30px rgba(0, 255, 127, 0.5);
  transform: translateY(-5px);
}

/* 4. Contact Text & Links */
.contact-info-container p, 
.contact-info-container a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-info-container a:hover {
  text-decoration: underline;
  color: rgba(0, 255, 127, 1);
}

.icon.contact-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
}
/* 1. Reset Footer List */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem; 
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-wrap: wrap; 
}

/* 2. Glassy Rectangular Shape for Each Link */
.nav-links li a {
  display: inline-block;
  text-decoration: none;
  color: white;
  padding: 10px 25px; 
  
  /* Glassy Background */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  /* Green Spark Border */
  border: 1px solid rgba(0, 255, 127, 0.4);
  border-radius: 8px; 
  
  /* Subtle Glow */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 
              0 0 5px rgba(0, 255, 127, 0.1);
              
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* 3. Hover Effect (The Spark) */
.nav-links li a:hover {
  background: rgba(0, 255, 127, 0.1); 
  border-color: rgba(0, 255, 127, 1); 
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.4); 
  transform: translateY(-3px);
  color: #fff;
}
/* Container to push buttons to opposite corners */
.button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;            
  margin-top: -20px;  
  box-sizing: border-box;           
}

/* 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;
}