* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0b0d10;
  color: #f5f5f5;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color:black;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.logo-text span {
  color: #3893d2;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  padding-bottom: 4px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: #3893d2;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #3893d2;
}

.nav-link:hover::after {
  width: 100%;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("https://images.pexels.com/photos/4320464/pexels-photo-4320464.jpeg?_gl=1*q7vj4c*_ga*OTMwNzcxMDEyLjE3NDg5ODc4MjY.*_ga_8JE65Q40S6*czE3NjE4NjA3NjUkbzgkZzEkdDE3NjE4NjA3ODQkajQxJGwwJGgw")
    center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 0 1rem;
  animation: fadeIn 1.2s ease-in-out;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #3893d2;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #3893d2, #0077cc);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0095dd, #0066aa);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 170, 255, 0.4);
}

/* --- Footer --- */
/* --- Footer --- */
.footer {
  background: #090b0d;
  padding-top: 3rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  padding: 0 2rem;
  gap: 2rem;
}

.footer-left h3 {
  color: #3893d2;
  margin-bottom: 0.5rem;
}

.footer-left p {
  color: #ccc;
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-contact p {
  color: #ccc;
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

.footer-contact a {
  color: #3893d2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-right h4 {
  margin-bottom: 0.7rem;
  color: #f5f5f5;
}

.socials a {
  color: #3893d2;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #aaa;
}
/* --- Animations --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    gap: 1.2rem;
  }

  .nav-menu.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .hamburger {
    display: flex;
  }
}

.about {
  background: #0e1115;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2rem;
  color: #3893d2;
  margin-bottom: 1rem;
  position: relative;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #3893d2;
  margin-top: 0.5rem;
  border-radius: 2px;
}

.about-content p {
  color: #d0d0d0;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}

.stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-item h3 {
  font-size: 1.8rem;
  color: #3893d2;
  margin-bottom: 0.3rem;
}

.stat-item p {
  color: #ccc;
  font-size: 0.95rem;
}

/* Responsive layout */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }
}

/* --- Services Section --- */
.services {
  background: #0b0d10;
  padding: 6rem 2rem;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  color: #3893d2;
  margin-bottom: 1rem;
  position: relative;
}

.services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #3893d2;
  margin: 0.6rem auto;
  border-radius: 2px;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #111417;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 170, 255, 0.3);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.15);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #3893d2;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #c9c9c9;
  line-height: 1.6;
}

/* CTA Button */
.services-cta {
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .services h2 {
    font-size: 1.8rem;
  }
  .section-intro {
    font-size: 0.95rem;
  }
}

/* HOW WE WORK SECTION */
.how-we-work {
  background-color: #f8f9fc;
  padding: 80px 20px;
  text-align: center;
}

.how-we-work .container {
  max-width: 1100px;
  margin: 0 auto;
}

.how-we-work h2 {
  font-size: 2.4rem;
  color: #1e2a47;
  margin-bottom: 10px;
}

.how-we-work .subtitle {
  font-size: 1.1rem;
  color: #6c7a9c;
  margin-bottom: 50px;
}

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

.step {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #00b4d8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.step h3 {
  font-size: 1.2rem;
  color: #1e2a47;
  margin-bottom: 10px;
}

.step p {
  color: #6c7a9c;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .how-we-work {
    padding: 60px 15px;
  }

  .how-we-work h2 {
    font-size: 2rem;
  }

  .step {
    padding: 25px 20px;
  }
}

.step {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CONTACT SECTION */
.contact {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  text-align: center;
}

.contact .container {
  max-width: 700px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2.2rem;
  color: #1e2a47;
  margin-bottom: 10px;
}

.contact .subtitle {
  color: #6c7a9c;
  margin-bottom: 40px;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #ccd6e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #007bff, #00b4d8);
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0065d1, #0099c7);
}

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

  .contact h2 {
    font-size: 2rem;
  }
}