body{
    margin: 0;
    padding: 0;
   
    font-family:Arial, sans-serif ;
    background: linear-gradient(to bottom right, #0F172A, #1E1B4B);
  color:#F8FAFC;
}

.navigation{
    background-color: rgba(15, 23, 42, 0.9)	;
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

.nav-item {
  margin: 0 20px;
}

.nav-item a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.nav-item a:hover {
  color: #00bcd4;
}

.content {
    display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full screen */
  padding: 140px;
  gap: 80px;
  margin-top: -180px;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    text-align: center;
    padding: 20px; */

  /* display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 40px;
   flex-wrap: wrap; /* stacks on small screens */
  
  
  /* max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  height: 100%; */
 
}

h1, h2, h3 {
  color: #444;
}

.profile-photo {
  flex: 1;
  text-align: right;
  max-width: 400px;

  padding: 15px;
  background: rgba(15, 23, 42, 0.6); /* Translucent background card */
  border-radius: 15px;
}

.profile-photo img {
 
width: 90%;
height: 100%;
max-width: 320px;
/* height: auto; */
border-radius: 10px;
object-fit: cover;
 border: 2px solid #00bcd4; /* Teal border to match your theme */
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.2); /* Soft glow effect */
  background-color: #0f172a; /* fallback background for transparency in photos */
/* border: 0px solid; */
 
}
.text-content {
  flex: 1;
text-align: left;
  /* min-width: 300px; */
}
.text-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #38BDF8;;
}
.text-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #D1D5DB;
  /* color:#E2E8F0; */
}
.hire-button{
    background-color: #00BCD4;
    border-radius: 7px;
    
    cursor: pointer;
    border: none;
    font-size: 1rem;
    color: white;
    transition: background 0.3s;
    padding: 10px 20px;
    margin-right: 15px;

}
.hire-button:hover{
  background-color: #0097a7;
    /* background-color:#0288a8; */
}


.resume-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #38BDF8; /* same as Hello text */
  color: white;
  border-radius: 7px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.resume-button:hover {
  background-color: #0ea5e9; /* a darker blue */
}


















@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .text-content, .profile-photo {
    width: 100%;
  }

  .profile-photo img {
    max-width: 80%;
  }
}
