* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111111;
}

.hero {
    max-width: 1100px;
    margin: 60px auto 30px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 120px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}

.hero-image img {
    width: 450px;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        margin: 50px auto;
    }

    .hero-image img {
        width: 100%;
        max-width: 300px;
    }

    .hero-text h1 {
        font-weight: 600;
        font-size: 36px;
        margin-bottom: 30px;
    }

    .subtitle {
        font-size: 16px;
    }
     .about-container {
    flex-direction: column;
    text-align: center;
  }
}
.work {
    max-width: 1100px;
    margin: 50px auto;
    background-color: #f8f8f8;
    padding: 20px 20px;
}

.work h2 {
    font-size: 32px;
    margin-bottom: 60px;
}

.project {
   margin-bottom: 80px;
   padding-bottom: 40px;
   border-bottom: 1px solid #e5e5e5;
   opacity: 0;
   transform: translateY(40px);
   transition: opacity 0.8s ease, transform 0.8s ease;
}
.project.show {
    opacity: 1;
    transform: translateY(0);
}
.project:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.project h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
      transition: color 0.3s ease, transform 0.3s ease;
}

.project h3:hover {
    transform: translateY(-5px);
}

.role {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.project p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 8px;
}
.project strong {
    font-weight: 600;
}
.result {
    font-weight: 500;
    margin-bottom: 25px;
}

.video {
    margin: 40px auto 0px auto;
    max-width: 800px;
}
.video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
}
/* ================= CONTACT SECTION ================= */

.contact {
    padding: 120px 20px;
    background-color: #f8f8f8;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 16px;
    color:#555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.contact-links a {
    font-size: 18px;
    color: #111;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-links a:hover {
    text-decoration: underline;
     color: #1a73e8;
}
.contact-links a {
  display: inline-block;
}
.section-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 80px;
}

.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  background:  rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e5e5;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  color: #333;
}

.nav-logo:hover {
  color: #0077ff;
}

.nav-links a {
  margin-left: 25px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #0077ff;
  transition: width 0.25s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: #0077ff;
}

html {
  scroll-behavior: smooth;
}
.about {
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 18px;
  line-height: 1.6;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
}