body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  background-color: #f2f2f2;
  color: #333;
}

.sidebar {
  width: 220px;
  background-color: #1b1f3b;
  color: white;
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  position: fixed;
}

.sidebar h2 {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
}

.sidebar nav a {
  display: block;
  font-size: 18px;
  color: rgb(81, 223, 223);
  text-decoration: none;
  margin: 20px 0;
  font-weight: bold;
}

.sidebar nav a:hover {
  color: #6c6ec0;
  transition: 0.3s ease;
}

.content {
  margin-left: 240px;
  padding: 40px;
  flex-grow: 1;
  animation: fadeIn 1.2s ease-in-out;
  background-color: #473d4e5e; /* Soft warm beige */
  min-height: 100vh;
}

.banner {
  background: url("images/home.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
  font-family: 'Playfair Display', serif;
}

.overlay h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.overlay p {
  font-size: 18px;
}

.hero-img {
  width: 100%;
  max-width: 650px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}
.logo-watermark {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  z-index: 1;
}

.logo-watermark img {
  max-width: 400px;
  height: auto;
}
.banner-with-logo {
  background: url('images/logo.jpg') no-repeat center center;
  background-size: contain;
  height: 85vh;
  background-color: #f0f0f0; /* fallback if image doesn't load */
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}




.overlay-bottom {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 30px;
  width: 100%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.full-image-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background-color: #f0f0f0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  animation: borderPulse 6s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% {
    border-image: linear-gradient(to bottom, #ff914d, #1e3a8a) 1;
  }
  50% {
    border-image: linear-gradient(to bottom, #1e3a8a, #ff914d) 1;
  }
}



.full-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-family: 'Poppins', sans-serif;
}
.company-section {
  background: linear-gradient(to right, #ff914d, #1e3a8a);
  padding: 20px;
  text-align: center;
}

.company-section h1 {
  color: #fff;
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  margin: 0;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


