
/* 🎨 Add spacing for better readability */
.text-center h2 {
    margin-bottom: 10px;
}

/* ✅ Gradient Text Effect */
.gradient-text {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    background: linear-gradient(135deg, #003092, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ✅ Adds spacing between the customDate elements */
.customDate {
    display: inline-block;
    font-size: 1rem;
    font-weight: 570;
    background: transparent;
    padding: 5px 0;
    border-radius: 5px;
    text-align: center;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* 💫 Underline Animation on Hover */
.customDate::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #003092, #ff8c00);
    position: absolute;
    left: 0;
    bottom: -2px;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

/* 🎯 On Hover - Highlight & Underline */
.customDate:hover {
    color: #000435;
}

.customDate:hover::after {
    transform: scaleX(1);
}

/* Navigation Buttons */
.navigation-buttons {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease-in-out; /* Smooth fade */
}

.navigation-buttons.visible {
    opacity: 1; /* Visible when scrolling */
}

.fixed-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    background-color:#052c65 ;
    color: white;
    border: none;
    border-radius: 5px;
    z-index: 1000;
    pointer-events: auto;
}

.left-btn {
    left: 20px;
}

.right-btn {
    right: 20px;
}

@media screen and (max-width: 1024px){
    .fixed-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #052c65;
    color: white;
    border: none;
    border-radius: 5px;
    z-index: 1000;
    pointer-events: auto;
}

.left-btn {
    left: 4px;
}

.right-btn {
    right: 4px;
} 
}

@media screen and (max-width: 768px){
    .fixed-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
    font-size: 16px;
    cursor: pointer;
    background-color: #052c65;
    color: white;
    border: none;
    border-radius: 5px;
    z-index: 1000;
    pointer-events: auto;
}

.left-btn {
    left: 2px;
}

.right-btn {
    right: 2px;
} 
}


@media screen and (max-width: 480px){
    .fixed-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px;
    font-size: 16px;
    cursor: pointer;
    background-color: #052c65;
    color: white;
    border: none;
    border-radius: 5px;
    z-index: 1000;
    pointer-events: auto;
}

.left-btn {
    left: 2px;
}

.right-btn {
    right: 2px;
} 
}

@media screen and (max-width: 375px){
    .fixed-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px;
    font-size: 16px;
    cursor: pointer;
    background-color: #052c65;
    color: white;
    border: none;
    border-radius: 5px;
    z-index: 1000;
    pointer-events: auto;
}

.left-btn {
    left: 2px;
}

.right-btn {
    right: 2px;
} 
}

@media screen and (max-width: 320px){
    .fixed-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px;
    font-size: 16px;
    cursor: pointer;
    background-color:#052c65;
    color: white;
    border: none;
    border-radius: 5px;
    z-index: 1000;
    pointer-events: auto;
}

.left-btn {
    left: 2px;
}

.right-btn {
    right: 2px;
} 
}