/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #222;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #0a023e;
  padding: 20px 40px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    background-color: #0a023e;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
  }

  .nav ul.show {
    display: flex;
  }

  .nav ul li {
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid #1a1a1a;
  }

  .nav ul li:last-child {
    border-bottom: none;
  }
}


.hero-classic {
  background-color: #1a1a1a;
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero-classic h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.hero-classic p {
  font-size: 1.2rem;
  color: #dcdcdc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-link-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #f5c518;
  color: #000;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-link-btn:hover {
  background-color: #fff;
  color: #1a1a1a;
}


/* Services Grid */
.services-grid {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
}

.service-box {
  background-color: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.service-box h2 {
  margin-bottom: 15px;
  color: #0a023e;
  font-size: 1.6rem;
}

.service-box p {
  color: #555;
  font-size: 1.05rem;
  padding: 0 10px;
}

.custom-solution {
  background-color: #f2f2f2;
  padding: 100px 20px;
  text-align: center;
}

.custom-inner {
  max-width: 750px;
  margin: auto;
}

.custom-solution h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 20px;
}

.custom-solution p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
}

.custom-btn {
  display: inline-block;
  background-color: #1a1a1a;
  color: #fff;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.custom-btn:hover {
  background-color: #333;
}


/* Footer */
.footer {
  background-color: #0a023e;
  color: white;
  padding: 4rem 2rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-logo {
  width: 80px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 250px;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 1.2rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 1px solid #222;
  padding-top: 1rem;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .services-grid {
    padding: 0 20px;
  }
}
