/* Reset */

html{
    scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth; 
}


body, h1, h2, h3, p, ul { margin: 0; padding: 0; scroll-behavior: smooth;}
body { font-family: 'Helvetica Neue', Arial, sans-serif; background: #0d0d0d; color: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* Navbar */
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;          /* ensure it starts from left edge */
  width: 100%;      /* full width */
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  box-sizing: border-box; /* prevents padding from shrinking width */
}

.navbar .logo { font-size: 1.5rem; font-weight: bold; color: #3a86ff; }
.navbar ul { list-style: none; display: flex; gap: 1.5rem; }
.navbar a:hover { color: #3a86ff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #111, #1e1e2f);
  padding: 10rem 2rem 6rem; text-align: center;
}
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero p { max-width: 700px; margin: 0 auto 2rem; color: #bbb; }
.btn { background: #3a86ff; padding: 0.8rem 1.5rem; border-radius: 30px; font-weight: bold; }
.btn:hover { background: #265dbe; }

/* Slider */
.slider { background: #181818; padding: 5rem 2rem; text-align: center; }
.slide { display: none; }
.slide.active { display: block; animation: fadeIn 1s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* About */
.about { padding: 5rem 2rem; background: #0f0f0f; text-align: center; }
.about h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.about p { max-width: 800px; margin: 0 auto; color: #ccc; }

/* USPs */
.usps { padding: 5rem 2rem; background: #1a1a1a; }
.usps h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.usp { background: #222; padding: 2rem; border-radius: 12px; }
.usp h3 { margin-bottom: 1rem; color: #3a86ff; }

/* CTA */
.cta { padding: 6rem 2rem; background: linear-gradient(135deg, #3a86ff, #1e1e2f); text-align: center; }
.cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta p { margin-bottom: 2rem; }

/* Footer */
footer { text-align: center; padding: 2rem; background: #111; color: #777; }


/* About Us Section */
.about {
  padding: 6rem 2rem;
  background: white;
  color: black;
  text-align: center;
}

.about .intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #ccc;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

.team-card {
  border-radius: 16px;
  max-width: 400px;
  text-align: center;
}

.avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
 
}

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-card .role {
  color: #3a86ff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card .bio {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 1.5rem;
}

.contact {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.contact a {
  color: #3a86ff;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.contact a:hover {
  color: #265dbe;
}

.contact .linkedin i {
  font-size: 1.4rem;
}
