/* General Styling */
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;
}

/* TRANSITION */ for Links and Buttons */
.nav-links
a,
.btn {
  transition: all 300ms ease;
}

/* Glass Navigation Container */
#desktop-nav {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    height: 12vh;
    padding: 0 4% 0 2%;
    position: relative;
}

/* Branding (Bishal Shrestha) */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  font-size: 2rem;
  margin-left: 0; 
  padding-left: 10px;
}

/* Nav Links Container */
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin-right: 25px;
}

/* Crystal Button Styling */
.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 12px; 
    
    /* Glass Button Base */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 127, 0.2); 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Glowing Button */
.nav-links a:hover {
    background: rgba(0, 255, 127, 0.15);
    color: #ffffff;
    border: 1px solid #00ff7f;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.4);
    transform: translateY(-3px);
}

/* Hide the mobile hamburger nav by default (on desktop) */
#hamburger-nav {
  display: none;
}

/* 2. Profile Section (Centered) */
#profile {
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding-top: 10px;
  height: auto;
}

/* Profile Picture Styling */
.section__pic-container img {
  width: 280px; 
  height: 280px;
  object-fit: cover;
  border-radius: 20px; 
  border: 2px solid rgba(0, 255, 127, 0.5);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

/* Optional: Slight zoom when you hover over your photo */
.section__pic-container img:hover {
  transform: scale(1.05);
  border-color: rgba(0, 255, 127, 1);
}
/* The main container for your text and buttons */
.Text {
  display: flex;
  flex-direction: column; 
  align-items: center;    
  justify-content: center; 
  text-align: center;     
  gap: 5px;       
  margin: 10px;       
}

/* Adjusting the specific elements */
.p1 {
  margin: 0;
  font-size: 1.2rem;
   color: white;
}

.title {
  margin: 0;         
  font-size: 3rem;
  line-height: 1;
}

 .p2 {
   margin: -40px;
   font-size: 1.5rem;
   font-weight: 600;
   color: white;
   margin-bottom:0;
} 

/* Center the button container */
.btn-container {
    display: flex;
    justify-content: center; 
    margin-top: 32px;
    gap: 1rem; 
}

/* Base Glassy Button Style */
.btn {
    text-decoration: none;
    font-weight: 600;
    transition: all 300ms ease;
    padding: 1rem 2rem;
    border-radius: 2rem;
    cursor: pointer;
    outline: none;
    font-size: 0.9rem;
    white-space: nowrap; 

    /* Crystal Look */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(0, 255, 127, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hover State: Glowing Effect */
.btn:hover {
    background: rgba(0, 255, 127, 0.15);
    border-color: #00ff7f;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.6);
    transform: translateY(-3px);
    color: #fff;
}
/* Social Media Icons Styling */
.icon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: all 0.3s ease;
    filter: grayscale(20%) opacity(0.8); 
}
/* Container for everything in the Overview section */
.about-details-container {
  display: flex;
  justify-content: center;
  align-items: stretch; 
  gap: 2rem;
  flex-wrap: wrap; 
  padding: 2rem 5%;
}

/* Wraps the TWO details containers (Experience & Education) */
.about-containers {
  display: flex;
  flex-direction: column; 
  gap: 1.5rem;
  flex: 1;
  max-width: 400px;
}

/* Glassy look for the two small cards */
.details-container {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 255, 127, 0.4); 
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.1);
}

/* The Large Rectangular Box for Bio Text */
.section-content {
  flex: 2; 
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 255, 127, 0.4); 
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.1);
  display: flex;
  align-items: center; 
  text-align: left;
  line-height: 1.8;
  scroll-margin-top: 100px; 
}

/* Styling the lists inside cards */
.details-container ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.details-container li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}
/* --- The Green Glassy Shine Box (for Details & Bio) --- */
.details-container, .section-content {
  background: rgba(255, 255, 255, 0.03); 
  backdrop-filter: blur(12px);          
  -webkit-backdrop-filter: blur(12px);
  
  /* The "Green Shining" Border */
  border: 1px solid rgba(0, 255, 127, 0.4); 
  border-radius: 20px;
  
  /* The Glow Effect (Internal and External) */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37),
              0 0 15px rgba(0, 255, 127, 0.2); 
              
  padding: 2rem;
  transition: all 0.4s ease;
  color: white;
}
.experience-sub-title {
  color: rgba(0, 255, 127, 1);
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
/* Hover effect to make it "Shine" more */
.details-container:hover, .section-content:hover {
  border: 1px solid rgba(0, 255, 127, 1); 
  box-shadow: 0 0 25px rgba(0, 255, 127, 0.5); 
  transform: translateY(-5px);
}
/* --- List Styling (One LI per line) --- */
.details-container ul {
  list-style: none;
  padding: 0;
  width: 100%;
}

.details-container li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left; 
}

.details-container li:last-child {
  border-bottom: none;
}
.section__subtitle {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1rem;
  text-align: center;    
  width: 100%;
  margin-top: -20px;
}

.title {
  font-size: 3rem;
  color: white;
  margin-bottom: 3rem;
  text-align: center;     
  width: 100%;
  text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

/* 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;
}