/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #1c1c1c;
  line-height: 1.6;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* =========================
   LAYOUT
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER & NAV
========================= */
.header {
  background: #0a2a66;
  color: #ffffff;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  image-rendering: auto;

}

nav a {
  color: #ffffff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  opacity: 0.85;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  height: 80vh;
  background: linear-gradient(rgba(10,42,102,0.7), rgba(10,42,102,0.7)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  width: 100%;
  color: #ffffff;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.hero-btn-wrapper {
  margin-top: 40px;
}

.btn {
  background: #d4af37;
  padding: 14px 36px;
  color: #0a2a66;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 80px 0;
  text-align: center;
}

.section h2 {
  color: #0a2a66;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.gray {
  background: #f5f7fb;
}

/* =========================
   SERVICES
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 45px;
}

.card {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  font-weight: 600;
}

/* =========================
   GALLERY
========================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 35px;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  background-color: #f0f0f0;
}

/* =========================
   CONTACT
========================= */
.contact-box p {
  margin: 12px 0;
  font-size: 1rem;
}

.contact-box a {
  color: #0a2a66;
  text-decoration: none;
  font-weight: 500;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #0a2a66;
  color: #ffffff;
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.2rem;
  }

  nav {
    display: none;
  }
}
/* =========================
   LOCATION SECTION
========================= */
.location-box {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.location-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* =========================
   LOCATION HERO SECTION
========================= */
.location-hero {
  min-height: 80vh;
  width: 100%;
  background:
    linear-gradient(
      rgba(10, 42, 102, 0.75),
      rgba(10, 42, 102, 0.75)
    ),
    url("assets/location.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.location-overlay {
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.location-hero h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.location-hero p {
  font-size: 1.15rem;
  max-width: 720px;
  margin: 0 auto 35px;
  opacity: 0.95;
}
/* =========================
   REVIEWS
========================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.review-card {
  background: #ffffff;
  padding: 36px 30px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.15);
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.review-stars i {
  color: #f5b301;
  font-size: 16px;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.review-card h4 {
  color: #0a2a66;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 20px auto;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 20px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.1);
}

.social-links i {
  line-height: 1;
}
.review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.review-stars i {
  color: #f5b301; /* gold */
  font-size: 16px;
}
.section p,
.section h2,
.section h4,
.card,
.review-card {
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.section p:hover,
.section h2:hover,
.section h4:hover,
.card:hover,
.review-card:hover {
  background-color: rgba(212, 175, 55, 0.08); /* soft gold */
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  cursor: default;
}
