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

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #1a1a1a;
}

/* ================= HEADER (GLOBAL) ================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background: #0B1F3A;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
}

/* LOGO */
.logo {
  height: 70px;
  width: auto;
  flex-shrink: 0;
}

/* ================= DESKTOP NAV ================= */
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: #FF7A00;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

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

/* ================= HAMBURGER ================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #FF7A00;
  cursor: pointer;
}

/* ================= MOBILE MENU (UNIFORM ACROSS ALL PAGES) ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 80px;
    right: 10px;
    width: 200px;
    background: #0B1F3A;
    flex-direction: column;
    padding: 8px 0;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    margin: 2px 0;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    display: block;
  }
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #0A2540, #1c3d63);
  color: white;
  padding: 120px 10%;
  text-align: center;
}

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

/* ================= BUTTON ================= */
.btn {
  background: #FF7A00;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 10%;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* ================= SERVICES ================= */
.services {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= PRICING ================= */
.pricing {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 260px;
  padding: 40px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
}

.price {
  font-size: 28px;
  font-weight: bold;
}

.highlight {
  background: linear-gradient(135deg, #FF7A00, #ff9a3d);
  color: white;
}

/* ================= PORTFOLIO ================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.portfolio-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-content {
  padding: 20px;
  text-align: left;
}

/* ================= MOBILE GLOBAL LAYOUT ================= */
@media (max-width: 768px) {

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

  .services,
  .pricing,
  .portfolio-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

/* ================= FOOTER ================= */
footer {
  background: #0B1F3A;
  color: white;
  text-align: center;
  padding: 25px 15px;
  margin-top: 60px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer-links a {
  color: #FF7A00;
  text-decoration: none;
  font-weight: 600;
}

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