* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color:#09101A;
  color:#ffffff;
  line-height: 1.6;
}

/* Links */
a {
  color: var(--white);
  text-decoration: none;
}

a:hover {
  color: var(--green);
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background-color:# ;
}

.logo {
  height: 60px;
}

/* Nav */
.site-header nav a {
  margin-left: 2rem;
  font-weight: 500;
  opacity: 0.85;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  max-width: 750px;
}

.hero-text {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text span {
  color: var(--green);
}

.hero-text p {
  max-width: 420px;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Hero Image */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Work Section */
.work {
  padding: 5rem 3rem;
}

.work h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.project h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color:#25BF76;
}

.project p {
  opacity: 0.7;
}

.project-detail {
  padding: 5rem 3rem;
  max-width: 900px;
}

.project-detail h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.project-intro {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 3rem;
}

.project-detail img {
  width: 100%;
  margin-bottom: 3rem;
}

.process h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
/* About */
.about {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  padding: 5rem 3rem;
  align-items: center;
}

.about img {
  width: 100%;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  padding: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.site-footer a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 600;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.project-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.project-card h3 {
  font-size: 1.2rem;
}

/* See More Button */
.see-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--green);
  font-weight: 600;
}

.projects-page {
  padding: 5rem 3rem;
}

.project-section {
  margin-bottom: 6rem;
}

.project-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Link fills card */
.project-link {
  display: block;
  position: relative;
  height: 100%;
  color: var(--white);
}

/* Image */
.project-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

/* Overlay */
.project-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(9, 16, 26, 0.85); /* your black */
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity 0.4s ease;
}

/* Text */
.project-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.project-overlay p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Hover + Focus */
.project-link:hover img,
.project-link:focus-within img {
  opacity: 0.3;
}

.project-link:hover .project-overlay,
.project-link:focus-within .project-overlay {
  opacity: 1;
}

.container {
  max-width: 400px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

h3 {
  color: #000;
}

.form-box {
  background: linear-gradient(to bottom right, #53ee98, #11913e);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  font-family: "Georgia", serif;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button {
  background-color: #09101A;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color:#25BF76;
}


/* Responsive */
@media (max-width: 1665px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 750px) {
  .hero {
    grid-template-columns: 1fr;
    max-max: width 600px;
    max-height: 600px;
  }