/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #fefefe;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0077b6;
  padding: 15px 30px;
}

.navbar .logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Logo Styling */
.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0056b3; /* Deep blue */
  letter-spacing: 1px;
}

.logo span {
  font-weight: 400;
  color: #f4b400; /* Attractive golden yellow */
}


.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #ffd60a;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  background: #ffd60a;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #ffb703;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 50px 20px;
  background: #f0f8ff;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0077b6;
}

/* Grid Layout (Features / Categories) */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 15px 0;
  color: #0077b6;
}

.card p {
  padding: 0 10px 15px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Contact Section */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.contact-form {
  width: 100%;
  max-width: 500px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
}

.contact-form button {
  background: #0077b6;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #005f8c;
}

/* Contact Info Cards */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1000px;
}

.contact-card {
  background: #fff;
  border: 2px solid #0077b6;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease-in-out, background 0.3s;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #0077b6;
}

.contact-card p {
  font-size: 1rem;
  color: #444;
}

.contact-card:hover {
  transform: scale(1.05);
  background: #f0f8ff;
}

.footer {
  background: #0077b6;   /* Same as navbar */
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 15px;
  margin-top: 40px; /* Space above footer */
}
