* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f8f9fb;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #1c1c1c;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #0a3d62;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(10,61,98,0.85), rgba(10,61,98,0.85)),
                url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #f39c12;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #d68910;
}

/* SECTIONS */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #0a3d62;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    margin-bottom: 15px;
    color: #0a3d62;
}

/* TESTIMONIALS */
.testimonials {
    background: #f1f4f8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
}

.testimonial-box p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-box h4 {
    color: #0a3d62;
    margin-bottom: 5px;
}

.testimonial-box span {
    font-size: 14px;
    color: #888;
}

/* CONTACT */
.contact-info {
    text-align: center;
    font-size: 18px;
}

/* FOOTER */
.footer {
    background: #0a3d62;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer h3 {
    font-family: 'Playfair Display', serif;
}