body{
    transition: filter 0.3s ease;
}
.cta-button {
	font-family: "Lato", sans-serif;
	letter-spacing: 1px;
	font-size:12px;
	padding: 11px 19px;
	background-color: #090f16;
	border: 1px solid #d48d1c ;
	color: white;
	text-transform: uppercase;
	transition: all 0.3s ease;
	border-radius: 0px;
	
}

.cta-button:hover {
	background-color: #d48d1c;
	border-color: #d48d1c;
	box-shadow: 0 3px 3px 0 rgba(255, 255, 255, 0.15), 0 3px 1px -2px rgba(255, 255, 255, 0.2), 0 1px 5px 0 rgba(255, 255, 255, 0.15);

}


.slider {
    display: flex;
    transition: transform 1s ease-in-out;
    will-change: transform;
}

.image-slide {
    opacity: 0;
    transform: scale(1.2);
    transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;
}

.text-animation {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fullscreen-view {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .fullscreen-view img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #fff;
    border-radius: 8px;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border: none;
    padding: 15px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    color: #000;
  }

  .fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}
.fade-out {
    animation: fadeOut 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .image-slide {
        width: 100vw; /* Full-width on mobile */
        height: auto;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.active .image-slide {
    opacity: 1;
    transform: scale(1);
}

.active .text-animation {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Buttons */
.prev-button, .next-button {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.prev-button {
    left: 20px;
    transform: translateY(-50%);
}

.next-button {
    right: 20px;
    transform: translateY(-50%);
}

.prev-button:hover, .next-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}