/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #000;
      color: #fff;
      line-height: 1.6;
    }
  
  /* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #030303;
  padding: 1rem 3rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
  /* background: transparent; */
}

/* Logo section */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  
}

.logo img {
  height: 25px;
  width: auto;
  object-fit: contain;
  border-radius: 4%;
}

/* Navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #fafdfd;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #ffffff;
}

/* .login-button {
  display: flex;
  min-width: 84px;
  max-width: 480px;
  height: 40px;
  padding: 0 1rem;
  background-color: #2c3035;
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.015em;
}

.login-button:hover {
  background-color: #3a3f45;
} */

/* HERO */
/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

/* Background video styles */
header.hero {
      position: relative;
      height: 90vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #ffffff;
    }

    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }

    .hero p {
      font-size: 1.2rem;
    }
    
/* all section */
section {
      padding: 0rem 6rem;
      /* padding-left: 1%; */
      /* max-width: 1100px; */
      margin: 2%;
      border-radius: 3%;
      
    }


/* ABOUT */
/* Section container */
.section-1 {
  padding: 80px 20px;
  background: linear-gradient(to right, #575757, #040404);
  color: #ffffff;
  text-align: center;
  border-color: #14c3c3;
  
   
}

/* Section heading */
.section-1 h2 {
  font-size: 2.8rem;
  color: #00ffff;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-1 h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto 0;
  opacity: 0.7;
  border-radius: 5px;
}

/* Paragraph styling */
.section-1 .textbig {
  max-width: 900px;
  margin: 0 auto 2rem auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #cccccc;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-1 {
    padding: 60px 15px;
  }

  .section-1 h2 {
    font-size: 2.2rem;
  }

  .section-1 .textbig {
    font-size: 1.05rem;
  }
}

/* section-2 */
.section-2 {
  padding: 80px 40px;
  background: linear-gradient(to right, #575757, #040404);
  color: #ffffff;
  text-align: center;
}

.section-2 h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00ffff;
}

.section-2 p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #cccccc;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background-color: #1c1f2b;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.3);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #00ffff;
}

.card p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #aaaaaa;
}

.card a {
  text-decoration: none;
  color: #00ffff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #ffffff;
}

/* section -3 */
.team {
  padding: 80px 40px;
  background: linear-gradient(to right, #575757, #040404);
  color: #ffffff;
  text-align: center;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00ffff;
}

.team p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 40px;
}

.team .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: #1a1d2b;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 255, 255, 0.1);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.25);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2px solid #00ffff;
}

.team-member h4 {
  font-size: 1.25rem;
  color: #00ffff;
  margin-bottom: 8px;
}

.team-member p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cccccc;
}



/* footer */
 /* Footer Styles */
.modern-footer {
  background-color: #000;
  color: #ccc;
  padding: 100px 40px 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  border-bottom: 1px solid #222;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 150px;
}

.logo-col {
  flex: 2 1 250px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-social {
  margin: 15px 0;
}

.footer-social a {
  margin-right: 10px;
  font-size: 16px;
  color: #ccc;
}

.footer-social a:hover {
  color: white;
}

.footer-btn {
  background-color: #ff2b84;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.footer-btn:hover {
  background-color: #e61c72;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
}

.divider {
      height: 1px;
      background: #222;
      margin: 10px 5;
    }

    /* Section heading */
.section-1 h2 {
  font-size: 2.8rem;
  color: #f7f7f7;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-1 h2::after {
  background-color: #ffffff;
}

/* section-2 */
.section-2 h2 {
  color: #ffffff;
}

.card {
  box-shadow: 0 4px 12px rgba(241, 236, 236, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.card h3 {
  color: #ffffff;
}

.card a {
  color: #ffffff;
}

/* section-3 */
.team h2 {
  color: #ffffff;
}

.team-member {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

.team-member h4 {
  color: #ffffff;
}

.team-member img {
  border: 2px solid #ffffff;
}
