@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

html, body{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.navbar-transparent {
	background-color: transparent !important;
	transition: background-color 0.5s ease;
}

.navbar-scrolled {
	background-color: #ffffff !important;
	transition: background-color 0.5s ease;
}

.navbar .logo-black { display: none; }
.navbar-scrolled .logo-white { display: none; }
.navbar-scrolled .logo-black { display: inline-block; }

.navbar .nav-link {
	color: #ffffff !important;      
	transition: color 0.3s ease;
}

.navbar-scrolled .nav-link {
  color: #000000 !important;      
}

.navbar .title {
	color: #ffffff;                  
	transition: color 0.3s ease;
}

.navbar-scrolled .title {
  color: #000000;                
}

@media (max-width: 991px) {
	.navbar-nav {
			text-align: center;
	}
}

.landing-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: #212429;
}

.responsive-container {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  min-height: 100vh; 
  padding: 2rem 1rem;
  z-index: 2;
  position: relative;
  text-align: center;
  gap: 2rem; 
}

.background-objects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.wave-container svg {
  display: block;
  width: 100%;
  height: 650px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wave-container svg {
    height: 200px;
  }

}

@media (max-width: 480px) {
  .wave-container svg {
    height: 150px;
  }
}

.main-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.overlay-img-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 200px;
  height: auto;
  z-index: 5;
  transform: translate(-20%, -10%);
}

.overlay-img-top-right {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 150px;
  height: auto;
  z-index: 5;
  transform: translate(-5%, 20%);
}

.main-img {
  position: relative;
  z-index: 4;
  max-width: 75%;        
  max-height: 500px;   
  width: auto;         
  border-radius: 0.5rem; 
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .main-img {
    max-width: 90%;
    max-height: 400px;

  }
}

@media (max-width: 576px) {
  .main-img {
    max-width: 100%;
    max-height: 200px;
  }
  .overlay-img-bottom-left {
    max-width: 120px;
    transform: translate(-40%, -5%);
  }
  .overlay-img-top-right {
    max-width: 100px;
    transform: translate(50%, 10%);
  }
}

.title {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  transition: color 0.5s ease;
}

.landing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* behind content */
}

.landing-page-first-page .container {
  position: relative;
  z-index: 1;
}

.lighterGradient-text {
  background: linear-gradient(180deg, #7f8285, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for non-webkit browsers that support it */
}

.darkergradient-text {
  background: linear-gradient(180deg, #313639, #FFFFFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for non-webkit browsers that support it */
}

/* Product Card CSS*/
.card-container {
  position: relative;
  width: 600px;
  height: 300px;
  background-color: #f2f2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-container:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
} 

.card-title{
  font-size: 13px;
}