:root {
    --primary-blue: #384474;
    --primary-gold: #fac307;
    --hover-blue: #2d355d;
    --light-blue: #eef0f7;
}

.pattern-bg {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23384474' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Popup notification styles */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

#popup {
    transition: all 0.3s ease;
}

#popup:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#popupName {
    font-size: 10px; /* Change this value to any size you want */
}

.slider-container {
    aspect-ratio: 16/9;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.floating-arrow {
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.feature-card {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.city-message {
    animation: fadeIn 0.5s ease-in;
}

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

.main-btn {
    background-color: var(--primary-gold);
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.main-btn:hover {
    background-color: #e8b506;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blue-bg {
    background-color: var(--primary-blue);
}

.gold-text {
    color: var(--primary-gold);
}

.blue-text {
    color: var(--primary-blue);
}

.hero-cta-bg {
    position: relative;
}

.hero-cta-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: -2;
}

.hero-cta-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    opacity: 0.85;
    z-index: -1;
}

/* Add this to main.css to make the slider images appear clickable */
.slider-container > a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    z-index: 1;
}

/* Ensure buttons still appear above the link */
.slider-container button {
    z-index: 2;
}