@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background-color: #e6f4f1;
  display: flex;
  align-items: start;
  justify-content: center;
  color: #1e1e1e;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

.content-section {
  min-height: 100vh;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
  /* Enables pseudo-element positioning */
  z-index: 0;
  /* Base layer for body */
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Ensures the overlay is above the image */
  pointer-events: none;
  /* Prevents overlay from blocking user interactions */
}

.all-contents {
  position: relative;
  z-index: 2;
  /* Places content above the overlay */
  color: #00353c;
}


.landing-container {

  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Ensures the overlay stays within the container */
}

.landing-container .row {
  position: relative;
  z-index: 2;
  /* max-width: 800px; */
  margin: auto;
  text-align: center;
  /* Ensures content is above the overlay */
}


.image-wrapper img {
  max-width: 100%;
  max-height: 600px;
  /* or adjust as needed */
  object-fit: cover;
  /* makes sure content fills the area without distortion */
  border-radius: 8px;
  margin: auto;
  transition: transform 0.3s ease-in-out;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100%;
  /* helps align vertically */
}

.image-wrapper img:hover {
  transform: scale(1.05);
}

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  /* Will be changed to flex in JS */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 9999;
}

.transition-overlay.show {
  opacity: 1;
}

.quote-text {
  position: relative;  
  color: #666;    
}