body {
  background-image: url("./images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
}

header {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 15px;
}
/* Navigation */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

nav a:hover {
  color: #00adb5;
}
section {
  padding: 80px 20px; 
  min-height: 100vh;  
  box-sizing: border-box;
  text-align: center;
  }
/* home */
#home {
display: flex;
align-items: center;
justify-content: space-between;
}

.home-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 20px;
  max-width: 900px;
  margin: auto;
  gap: 40px;
}

/* my image styling*/
.image-container {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}


.profile-img {
  width: 203px;
  height: 261px;
  border-radius: 5px;
  border: 1.5px solid white;
  margin-right: 20px;
}

.home-text {
  flex: 2;
  max-width: 600px;
}
/* about*/
.about-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.about-box {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #00adb5;
  width: 250px;
  text-align: left;
}

.about-box h3 {
  margin-bottom: 10px;
  color: #00adb5;
}

.about-box ul {
  padding-left: 20px;
  list-style-type: square;
}
/* Project */
.project-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}


.project-card {
  width: 60%;
  max-width: 800px;
  background: #f8f8f8;            
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card h3 {
  color: #4d1a1e;
  font-size: 28px;
  margin-bottom: 15px;
}

.project-card p {
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 18px;
  color: white;
  background: #28a745;           
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}


.btn:hover {
  background: #218838;
}
/* contacts */
#contact {
padding: 100px 20px;
color: #fff;                            
text-align: center;
background: none;                      
}

.social-accounts {
display: flex;
flex-direction: column;       
align-items: center;          
gap: 20px; 
margin-top:20px;                    
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: 0.3s;
  background: #292929;                     
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}
.social-btn img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
  transition: transform 0.3s;
}
.social-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.9);
}
/* footer*/
footer {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}

@media (max-width: 600px) {
  nav ul {
      flex-direction: column;
      align-items: center;
  }
  .home-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .profile-img {
      margin-right: 0;
      margin-bottom: 15px;
  }
  .about-boxes {
      flex-direction: column;
      align-items: center;
  }
}
