html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f6fa; /* or your preferred color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

#preloader img {
  width: 500px;
  height: auto;
}


body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.75;
  color: #1e1e1e;
  background: #f9f9f9;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #113d6b;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: #777; }
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  letter-spacing: 0.8px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}


P {
  font-size: 1rem;
  margin-bottom: 1em;
  color: #444;
}
.btn {
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
.hero-image {
  will-change: transform;
}
