/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #0c1f33;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 120px; /* adjust to your preference */
  width: auto;
  display: block;
}
  font-weight: 700;
  font-size: 24px;
  color: #0c1f33;
}

nav a {
  margin-left: 25px;
  font-weight: 600;
  color: #0c1f33;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff5a5f;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #f4f6f8 0%, #e9ecef 100%);
  padding: 120px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: #0c1f33;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
  background: #ff5a5f;
  transform: translateY(-3px);
}

.btn.light {
  background: white;
  color: #0c1f33;
}

.btn.light:hover {
  background: #f4f4f4;
}

/* ===== SERVICES ===== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 100px 0;
}

.card {
  padding: 40px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #555;
}

/* ===== CTA ===== */
.cta {
  background: #0c1f33;
  color: white;
  padding: 100px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  text-align: center;
  background: #0c1f33;
  color: #cbd5e1;
  font-size: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  nav a {
    margin-left: 15px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
  }
}
