/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #004080;
  padding: 5px 30px;   /* reduced padding so blue bar isn’t too thick */
  color: #fff;
  height: 90px;        /* fixed height for header */
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none; /* remove underline on link */
  color: inherit;        /* keeps the white header text */
}

.logo-container img {
  max-height: 70px;  /* logo auto fits inside header */
  width: auto;
  margin-right: 10px;
  object-fit: contain;
  background: transparent;
  padding: 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #ffcc00;
}

/* Hero Section */
.hero {
  color: white;
  text-align: center;
  padding: 120px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #ffcc00;
  color: #333;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #e6b800;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #004080;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Cards */
.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.price {
  font-size: 1.2rem;
  color: #ff6600;
  font-weight: bold;
}

/* Testimonials */
.testimonials .review {
  background: #fff;
  border-left: 5px solid #ffcc00;
  padding: 15px;
  margin: 15px auto;
  max-width: 600px;
  border-radius: 5px;
  font-style: italic;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

form button {
  background: #004080;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #003366;
}

/* Footer */
footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer .socials {
  margin-top: 10px;
}

footer .socials a img {
  width: 30px;
  margin: 0 8px;
  transition: transform 0.3s;
}

footer .socials a img:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    height: auto;
  }

  nav {
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .logo-container img {
    max-height: 100px;
  }
}
.contact {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
  border-top: 2px solid #ddd;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.contact-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 220px;
}

.contact-item h3 {
  margin-bottom: 10px;
  color: #333;
}

.contact a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}
.hero {
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-contact .btn {
  display: inline-block;
  margin: 8px;
  padding: 12px 24px;
  background: #0077cc;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-contact .btn:hover {
  background: #005fa3;
}
