:root {
    --primary: #003366;
    --accent: #ff9900; /* Gold/Orange accent for "flashy" feel */
    --text: #333;
    --bg: #ffffff;
}

body { font-family: 'Helvetica Neue', Arial, sans-serif; margin: 0; color: var(--text); }
.container { max-width: 1100px; margin: auto; padding: 40px 20px; }

/* Nav styling with Logo placeholder */
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: #fff; border-bottom: 2px solid #eee; }
.logo-space { font-weight: bold; color: var(--primary); border: 2px dashed #ccc; padding: 10px 20px; }
nav ul { display: flex; list-style: none; gap: 20px; }
nav ul li a { text-decoration: none; color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }

/* Professional UI Elements */
.btn { background: var(--primary); color: white; padding: 12px 25px; border: none; text-decoration: none; display: inline-block; border-radius: 4px; transition: 0.3s; cursor: pointer; }
.btn:hover { background: var(--accent); }

.hero { background: #003366 url('hero.jpg') center/cover no-repeat; height: 60vh; display: flex; align-items: center; color: white; text-align: center; justify-content: center; }
.hero-content { background: rgba(0,0,0,0.5); padding: 40px; border-radius: 10px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px; }
.service-card { border: 1px solid #eee; padding: 20px; border-radius: 10px; transition: 0.4s ease; background: #fff; }
.service-card img { width: 100%; border-radius: 8px; margin-bottom: 15px; }
.service-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.1); transform: translateY(-5px); }

/* Forms */
.pro-form input, .pro-form textarea, .pro-form select { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; }

footer { background: #222; color: #fff; text-align: center; padding: 40px 0; margin-top: 60px; }




/* Hero Slider Container */
.hero-container {
    position: relative;
    height: 90vh; /* Covers most of the screen */
    width: 100%;
    overflow: hidden;
    color: white;
}

/* The Background Slides */
.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: imageFade 15s linear infinite; /* 15 seconds total loop */
}

/* Staggering the start time for each image */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

@keyframes imageFade {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    33% { opacity: 1; }
    43% { opacity: 0; transform: scale(1.1); } /* Slight zoom effect for 'Flashy' look */
    100% { opacity: 0; }
}

/* Content Overlay */
.hero-overlay {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 5px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darkens images so text is readable */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.badge {
    background: var(--accent);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Buttons */
.hero-btns {
    margin-top: 30px;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    margin-left: 15px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}
