/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f6f8;
  color: #0a1f44;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Navbar */
.navbar {
  background-color: rgba(0, 31, 63, 0.85); /* Semi-transparent dark */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
}



.navbar .logo img {
  height: 50px;
}

.navbar .logo span {
  color: #00b1f2;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #00b1f2;
}

/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../images/bg.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 150px 20px 100px; /* Extra top padding to clear navbar */
  color: #fff;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.floating-social-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-social-icons .icon {
  color: rgb(192, 188, 205);
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.8rem;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.floating-social-icons .icon:hover {
  transform: scale(1.15);
  color: #fff;
}

.floating-social-icons .instagram:hover {
  background-color: #E4405F;
}
.floating-social-icons .linkedin:hover {
  background-color: #0077b5;
}
.floating-social-icons .facebook:hover {
  background-color: #4267B2;
}
.floating-social-icons .whatsapp:hover {
  background-color: #25D366;
}
.btn {
  background-color: #00b1f2;
  padding: 0.8rem 1.5rem;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s;
}
.btn:hover {
  transform: scale(1.05);
}

/* Features */
.features {
  background-color: white;
  padding: 4rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.feature {
  background-color: #f4f6f8;
  padding: 2rem;
  border-radius: 12px;
}

/* About */
.about {
  padding: 4rem 0;
  color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.about-img img {
  width: 100%;
  border-radius: 12px;
}

/* CTA */
.cta {
  background-color: #0072ce;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}
.cta .btn {
  margin-top: 1rem;
}

/* Footer */
.footer {
  background-color: #0a1f44;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0072ce;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
  }
  .nav-links.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
