.w-80{
    width: 80% !important;
}
.input-values{
        border: 2px solid #e1e8ed;
    background: #f8f9ff;
    padding: 15px;
    border-radius: 10px;
    color: #333;
}
/* Ensure all swiper-slides take full height */
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  height: auto !important;
}

/* Make blog-box2 take 100% height of its parent */
.blog-box2.style5 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Make content area fill remaining space if needed */
.blog-box2_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-preloader {
    text-align: center;
}

.preloader-logo {
    width: 180px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.progress-bar {
    width: 200px;
    height: 6px;
    background-color: #eee;
    margin: 0 auto;
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background-color: #007bff;
    animation: progressLoad 2.5s linear forwards;
}

.loading-text {
    margin-top: 15px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #555;
}

/* Animations */
@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
