/* GENERAL */
body {
    margin: 0;
    padding-left: 5%;
    padding-right: 5%;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 130px;
    height: auto;
    width: auto;
    margin-right: 15px;
    display: block;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #005fa3;
}

/* NAVIGATION */
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #005fa3;
    font-weight: bold;
}

/* HERO */
.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero-bg {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: brightness(60%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #005fa3;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 15px;
}

/* SERVICES */
.services {
    padding: 60px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.service-card {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
}

/* WHY US */
.why {
    padding: 60px;
    background: #eef6ff;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.why-icon-box {
    width: 80px;
    height: 80px;
    background: #e3efff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* ABOUT */
.about {
    padding: 60px;
    text-align: center;
}

/* TESTIMONIALS */
.testimonials {
    padding: 60px;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    text-align: center;
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    background: #d9e6ff;
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

.testimonial-card h3 {
    margin-bottom: 10px;
    color: #005fa3;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* CONTACT */
.contact {
    padding: 60px;
    text-align: center;
}

form {
    width: 60%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

form input,
form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

form button {
    padding: 12px;
    background: #005fa3;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* SUCCESS & ERROR MESSAGES */
.form-success {
    font-size: 32px;
    font-weight: bold;
    color: #0077cc;
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: #f0f8ff;
    border-radius: 12px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.form-error {
    font-size: 28px;
    font-weight: bold;
    color: #cc0000;
    text-align: center;
    margin-top: 40px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #005fa3;
    color: white;
}
