body {
  margin:0;
  background-image: url(space.png);
  background-size: cover;
  background-position: center;
  background-attachment:fixed;

  color:#f5f5f5;
  font-family:Arial, sans-serif;
}
header {
    text-align: center;
    padding: 20px;
}

.about {
  font-family: Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1.8;
} 
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
  background: rgba(10, 20, 40, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px; 
  backdrop-filter: blur(10px);
}
nav a {
 color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 10px;
  transition: color 0.2s ease,
              background 0.2s ease,
              transform 0.2s ease;
}
nav a:hover {
  color: #ffb347;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}
section{
  margin-top: 80px;
  width: 80%;
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(10, 20, 40, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  box-sizing: border-box;
}
section h2 {
  color: #c99a5b;
  font-family: verdana, sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 0;
}
section h3 {
  font-family: verdana, sans-serif;
  font-size: 1.5rem;
}
section p {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
.interest {
  flex: 1 1 40%;
  min-width: 240px;
  padding: 25px;

  background: rgba(20, 30, 50, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  transition: transform 0.2s ease;
}
@media (max-width: 700px) {
    .interest-container {
        flex-direction: column;
    }
}
.interest:hover {
  transform: translateY(-5px);
}

#hero {
  text-align: center;
  padding: 20px;
  width: auto;
  max-width: 800px;
  margin:100px auto 120px;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
}
#hero .hero-tag{
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: #8fd3ff;
  margin-bottom: 20px;
  font-weight: 600;
}
#hero .hero-text {
  font-size: 1.2rem;
  margin: 25px auto;
  max-width: 650px;
  line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.hero-buttons a {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.hero-buttons .btn:first-child {
    background: #ffb347;
    color: #111;
}

.hero-buttons .btn:last-child {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-buttons a:hover {
    transform: translateY(-3px);
}

.hero-buttons .btn:first-child:hover {
    box-shadow: 0 8px 25px rgba(255, 179, 71, 0.3);
}

.hero-buttons .btn:last-child:hover {
    background: rgba(255, 255, 255, 0.15);
}
#hero h2 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 0;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  margin:10px 0 20px;
}
#hero h2 span {
  color: #ffb347;
  text-shadow: 0 0 20px rgba(255, 179, 71, 0.25);
}
.interest-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}
.project-card {
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  transition: transform 0.25s ease, 
              background 0.25s ease,
              border-color 0.25s ease;
}
.project-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 179, 71, 0.5);
}
.project-card h3 {
  margin-top: 0;
  color: #ffb347;
}
.project-card p {
margin-bottom: 0;
}
.project-status {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 12px;
  background: rgba(143, 211, 255, 0.12);
  color: #8fb3ff;
  font-size: 0.8rem;
  border-radius: 20px;
}
.contact-link {
  display: inline-block;
  margin-top: 15 px;
  padding: 12px 20px;
  background: #ffb347;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: background 0.2s ease,
              border-shadow 0.2s ease;
  
}
.contact-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 179, 71, 0.25);
}
footer {
  text-align: center;
  padding: 20px 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 50px;
}