/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #0d47a1;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

nav ul.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav ul.menu li {
  position: relative;
}

nav ul.menu li a {
  color: #fff;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  font-weight: 600;
}

nav ul.menu li:hover {
  background: #1565c0;
}

/* Dropdown */
nav ul.submenu {
  display: none;
  position: absolute;
  background: #1565c0;
  list-style: none;
  min-width: 180px;
  z-index: 1000;
}

nav ul.menu li:hover .submenu {
  display: block;
}

nav ul.submenu li a {
  padding: 10px;
  color: #fff;
}

/* Hero Section */
.hero {
  padding: 60px;
  text-align: center;
  background: url('../assets/images/banner.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background: #ff9800;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e68900;
}

/* Services Grid */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  height: 60px;
  margin-bottom: 15px;
}

/* Trust Signals */
.trust {
  display: flex;
  justify-content: space-around;
  padding: 30px;
  background: #eee;
}

.signal {
  font-weight: 600;
  color: #0d47a1;
}

/* Testimonials */
.testimonials {
  padding: 40px;
  background: #fafafa;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 20px;
  color: #0d47a1;
}

/* Footer */
footer {
  background: #0d47a1;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-links a {
  color: #ff9800;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social a {
  color: #fff;
  margin: 0 5px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul.menu {
    flex-direction: column;
  }
  .trust {
    flex-direction: column;
    text-align: center;
  }
}
