/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(135deg, #1a73e8, #0c4b8e);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Navigation */
nav {
  background: #0c4b8e;
  padding: 0.8rem;
  text-align: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero {
  background: url('banner.jpg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Services */
.services {
  padding: 4rem 2rem;
  background: #f5faff;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0c4b8e;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service h3 {
  padding: 1rem;
  font-size: 1.3rem;
  color: #1a73e8;
  text-align: center;
}

.service p {
  padding: 0 1rem 1.5rem;
  text-align: center;
  font-size: 1rem;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Contact Section */
.contact {
  background: #1a73e8;
  color: #fff;
  padding: 3rem 2rem;
  text-align: center;
}

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

.contact a {
  display: inline-block;
  margin: 0.5rem 1rem;
  color: #fff;
  background: #0c4b8e;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.contact a:hover {
  background: #ffd700;
  color: #0c4b8e;
}

/* Footer */
footer {
  background: #0c4b8e;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}