/* --- Reset & Base --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}
a {
    text-decoration: none;
}

/* --- Header --- */
header {
    background-color: #0b2c4d; /* Deep blue */
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
header h1 {
    font-size: 28px;
}
header img {
    height: 50px;
}
nav {
    margin-top: 10px;
}
nav a {
    color: #ffa500; /* Orange */
    margin-right: 20px;
    font-weight: bold;
    transition: 0.3s;
}
nav a:hover,
nav a.active {
    text-decoration: underline;
    color: #ffffff;
}

/* --- Hero Slideshow --- */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 1;
}
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active {
    opacity: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #ffffff;
}
.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
.hero p {
    font-size: 18px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* --- Container Sections --- */
.container {
    padding: 60px 40px;
    max-width: 1100px;
    margin: auto;
}
.container h2 {
    color: #0b2c4d;
    border-bottom: 3px solid #ffa500;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 25px;
}
.container p {
    margin-bottom: 15px;
}

/* --- Services Section --- */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service {
    background-color: #ffffff;
    border: 2px solid #0b2c4d;
    border-left: 8px solid #ffa500;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service h3 {
    margin-top: 0;
    color: #0b2c4d;
}
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* --- Section Images --- */
.section-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}

/* --- Contact Form --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin-top: 20px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #0b2c4d;
    font-size: 16px;
    width: 100%;
}
.contact-form button {
    padding: 12px;
    background-color: #0b2c4d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
}
.contact-form button:hover {
    background-color: #ffa500;
    color: #0b2c4d;
}

/* --- Google Map --- */
.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
}
.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* --- Footer --- */
footer {
    background-color: #0b2c4d;
    color: white;
    text-align: center;
    padding: 20px;
}
footer p {
    margin: 5px 0;
    font-size: 14px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h2 { font-size: 32px; }
    .hero p { font-size: 16px; }
    header {
        flex-direction: column;
        text-align: center;
    }
    nav {
        margin-top: 10px;
    }
    .container {
        padding: 40px 20px;
    }
}
/* --- Primary Button (Hero CTA) --- */
.btn-primary {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background-color: #ffffff;   /* White background */
    color: #000000;               /* Black text */
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* Hover effect */
.btn-primary:hover {
    background-color: #ffa500;   /* Orange hover */
    color: #0b2c4d;              /* Blue text */
    border-color: #ffa500;
}
