/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Fullscreen Video Background */
#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.8; /* adjust brightness */
}
@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-20%, -20%); }
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color:  rgba(255, 255, 255, 0.05) ;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: White;
  font: bolder;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 4rem;
}

.nav-links li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: gold;
}

/* Hero Section */
/*
.hero-text {
  text-align: center;
  max-width: 700px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
  font-size: 3rem;
  color: gold;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: #eee;
}*/
.hero-section {
  padding: 100px 50px;
  color: white;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left h1 {
  margin-top: 100px;
  font-size: 8em;
  margin-bottom: 1px;
}

.hero-left p {
  font-size: 1.4em;
  color: #ccc;
}
.animated-text {
  margin-left: 350px;
  font-size: 6em;
  font-weight: bold;
  color: #FFD700;
  min-width: 20px;
  white-space: nowrap;
  border-right: 2px solid #FFD700;
  overflow: hidden;
  animation: typing 4s steps(50, end) infinite, blink 0.75s infinite step-end alternate;
}

@keyframes typing {
  0% { width: 0 }
  50% { width: 100% }
  100% { width: 0 }
}

@keyframes blink {
  0%, 100% { border-color: transparent }
  50% { border-color: #FFD700 }
}



.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-left p {
  font-size: 1.2em;
  color: #ccc;
}

.hero-logo {
  max-width: 180px;
  height: auto;
  border-radius: 10px;
}
.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-box {
  margin-top: 200px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.intro {
  margin-top: 350px;
  padding: 4rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}
.section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 60px;
      gap: 40px;
      flex-wrap: wrap; /* allows wrapping on smaller screens */
    }

    .text-block {
      flex: 1;
      max-width: 600px;
    }

    .image-block {
      flex: 1;
      display: flex;
      justify-content: flex-end;
    }

    .image-block img {
      margin-right: 100px;
      margin-bottom: 100px;
      width: 400px;
      height: auto;
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

/* About Section */
.about {
  padding: 4rem 2rem;
  max-width: 10000px;
  margin: auto;
}

.about h1 {
  font-size: 2.5rem;
  color: gold;
  margin-left: 200px;
}

.about p {
  font-size: 1.1rem;
  margin-left: 1rem;
}

/* Footer */
footer {
  background: #1a1a1a;
  padding: 1rem;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}
/* Projects Grid */
.projects, .team, .contact {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.projects h1, .team h1, .contact h1 {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 2rem;
  text-align: center;
}

.project-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.project-card, .team-member {
  background-color: #1f1f1f;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.project-card img, .team-member img {
  width: 100%;
  border-radius: 8px;
}

.project-card:hover, .team-member:hover {
  transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

.contact-form input, .contact-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 5px;
  background: #2a2a2a;
  color: #fff;
  font-size: 1rem;
}

.contact-form button {
  padding: 1rem;
  border: none;
  border-radius: 5px;
  background: gold;
  color: #121212;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #e0c000;
}

.contact-info {
  text-align: center;
  margin-top: 2rem;
  color: #ccc;
}
.floating-projects-bar {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  z-index: 999;
}

.projects-scroll a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.projects-scroll a:hover {
  color: #FFD700; /* gold hover */
}

.project-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
}

.project-card {
  background: #111;
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background: linear-gradient(-45deg, #111, #1f1f1f, #2c2c2c, #111);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  min-height: 100vh;
  overflow-x: hidden;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
