html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa; /* fallback background tone */
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/images/logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 400px auto;
  background-blend-mode: multiply;
  background-color: transparent;
  opacity: 1; /* Adjust for subtlety */
  z-index: -1;
  pointer-events: none;
}



h2 {
  font-size: 2rem;
  font-weight: 700;
}


/* Layout */
.container,
.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  background-color: transparent;
}

main {
  flex: 1;
}

section {
  padding: 4rem 0;
  background-color: transparent;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
}

/* Navbar */
.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.nav-link {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Buttons */
.btn-outline-light:hover {
  background-color: white;
  color: black;
  transition: 0.3s ease;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('/images/photo1.JPG') center top 10% / cover no-repeat;
  height: 100vh;
  min-height: 500px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Services Section */

.services-section .card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-section .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #222;
}

.services-section .card-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.services-section ul li {
  font-size: 0.95rem;
  color: #333;
  padding: 0.25rem 0;
}


/* Gallery */
.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-section .swiper-slide img {
  object-fit: cover;
  object-position: center 5%; /* Move image focus down */
  height: 500px; /* or whatever height you need */
  width: 100%;
  border-radius: 10px;
}


/* Contact Section */
.contact-section-modern {
  padding: 5rem 0;
  background: #f8f9fa;
}

.contact-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  width: 100%;
}

.contact-card h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-icon {
  font-size: 1.2rem;
  color: #7c3aed; /* Violet */
  margin-right: 0.5rem;
}

.contact-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #7c3aed;
  text-decoration: underline;
}

.location-text {
  font-size: 0.95rem;
  color: #666;
}

/* Footer */
.custom-footer {
  background-color: #ffffff;
  padding: 2rem 0;
  border-top: 1px solid #eaeaea;
  font-size: 0.9rem;
  color: #333;
}

.custom-footer a {
  color: #555;
  text-decoration: none;
}

.custom-footer a:hover {
  text-decoration: underline;
  color: #7c3aed;
}

.designer-credit {
  font-size: 0.6rem;
  color: #777;
}

@media (max-width: 768px) {
  body::before {
    background-size: 300px auto;
    background-position: center top;
  }
}


/*Page 2*/

/* About Section */
.about-section {
  color: #333;
  background-color: #f8f9fa;
  opacity: .9;
}

.about-section h2 {
  font-weight: 700;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-gallery img {
  max-width: 400px;
  width: 100%;
  height: auto;
}


.about-main-img {
  width: 100%;
  max-width: 550px;   
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}
