/* General Container */
.container {
    text-align: center;
    padding: 50px 20px;
}

/* Construction Image */
.construction-image {
    width: 100%;
    max-width: 400px;
    margin: 20px 0;
}

/* Quick Links Section */
.quick-links {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Modern Tile */
.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tile-text {
    padding: 15px;
    text-align: center;
    color: #333;
}

.tile h2 {
    margin: 0;
    font-size: 22px;
    color: #2c3e50;
}

.tile p {
    font-size: 16px;
    margin-top: 5px;
    color: #555;
}

/* Hover Effect */
.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Modern Header Styling */
h1 {
    font-family: 'Poppins', sans-serif; /* Modern and sleek */
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    color: #000; /* Solid black text */
    
    /* Subtle but visible dark orange glow */
    text-shadow: 2px 2px 4px rgba(255, 87, 34, 0.4);
}


/* Construction Image with White Vignette Effect */
.construction-image {
    width: 100%;
    max-width: 500px; /* Increased size */
    display: block;
    margin: 20px auto;
    
    /* Apply a vignette effect */
    mask-image: radial-gradient(circle, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask-image: radial-gradient(circle, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0) 100%);
}
