/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Background Image */
body {
  background: url('images/banner.jpeg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

/* Dark Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark effect */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Content */
.content {
  z-index: 2;
  max-width: 600px;
  padding: 20px;
}

.logo {
  width: 150px;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

/* Contact Button */
.contact-btn {
  padding: 12px 25px;
  background: #FFD700;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #FFC107;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  .logo {
    width: 120px;
  }
}
/* Top-left logo */
.logo-top {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;       /* Set a fixed width */
  height: auto;       /* Keep aspect ratio */
  max-width: 120px;   /* Prevent oversized image */
  z-index: 10;
}
/* Animation keyframes */
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(50px); /* Start below */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Slide up */
  }
}

/* Apply animation to the heading */
.content h1 {
  animation: fadeSlide 1.5s ease-out forwards;
}