body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    scroll-behavior: smooth;
}

header {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #fff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

header .logo-text {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #c69d66;
}

header nav a {
    color: #fff;
    font-weight: 500;
    margin-left: 20px;
    transition: color 0.3s;
}

header nav a:hover {
    color: #c69d66;
}

section.hero {
    background: url('https://images.unsplash.com/photo-1554224154-22dec7ec8818?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 180px 15px;
    position: relative;
}

section.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.7);
}

section.hero .content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

section.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: #c69d66;
    font-weight: 700;
}

section.hero p {
    font-size: 1.1rem;
    color: #f1f1f1;
    margin-top: 15px;
}

section.hero .btn-primary {
    background: #c69d66;
    border: none;
    color: #fff;
    font-weight: 600;
    margin-top: 25px;
    padding: 12px 30px;
    transition: background 0.3s;
}

section.hero .btn-primary:hover {
    background: #d9b372;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 80px 0;
}

h2.section-title {
    font-family: 'Merriweather', serif;
    color: #0d1b2a;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.services .card {
    border: none;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.services .card i {
    font-size: 2.5rem;
    color: #c69d66;
    margin-bottom: 15px;
}

.testimonials {
    background: #f8f9fa;
}

.testimonial-card {
    border-left: 4px solid #c69d66;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact {
    background: linear-gradient(135deg, #1b263b, #0d1b2a);
    color: #fff;
}

.contact input, .contact textarea {
    border: none;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.contact button {
    background: #c69d66;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    transition: background 0.3s;
}

.contact button:hover {
    background: #d9b372;
}

footer {
    background: #0d1b2a;
    color: #fff;
    text-align: center;
    padding: 25px 15px;
    font-size: 0.9rem;
}

footer span {
    color: #c69d66;
    font-weight: 600;
}

/* Logo adjustments */
.logo-img {
    height: auto;
    max-height: 180px;     /* Desktop height */
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .logo-img {
        max-height: 70px;   /* Tablet */
    }
}

@media (max-width: 576px) {
    .logo-img {
        max-height: 60px;   /* Mobile */
        margin: 0 auto;
        display: block;
    }

    header .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    header nav {
        margin-top: 10px;
    }
}
