/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f2f2f2;
  line-height: 1.6;
  scroll-behavior: smooth;
}

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.hero {
  min-height: 100vh;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: #111;
  position: relative;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(31, 28, 44, 0.8);
}

.logo img {
  height: 60px;
  width: auto;
  border-radius: 15px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #00ffd9;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

.content {
  margin-top: 80px;
  padding: 20px;
}

.title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: #00ffd9;
}

.content h1 {
  font-size: 48px;
  margin: 10px 0;
}

.content h1 span {
  color: #00ffd9;
}

.content p {
  font-size: 18px;
  color: #e0e0e0;
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 60px 20px;
  background-color: #fff;
  color: #111;
  text-align: center;
}

section:nth-of-type(even) {
  background-color: #f7f7f7;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.project {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 40px);
  max-width: 400px;
}

.project img {
  width: 100px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.project h3 {
  margin: 10px 0;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 25px;
  background: #00ffd9;
  color: #111;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
}

.btn:hover {
  background: #00ccaa;
}

footer {
  text-align: center;
  padding: 20px;
  background: #1f1c2c;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .projects-grid {
    flex-direction: column;
    align-items: center;
  }

  .content h1 {
    font-size: 32px;
  }

  .content p {
    font-size: 16px;
  }
}
/* WebApps Section */
#webapps {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: #fff;
  text-align: center;
}

.webapps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.webapp {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  flex: 1 1 calc(33.333% - 40px);
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
}

.webapp:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.webapp img {
  width: 1s%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.webapp h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #00ffd9;
}

.webapp p {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 15px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .webapp {
    flex: 1 1 100%;
  }

  .webapp img {
    height: 180px;
  }
}
