/* White + Gold Premium Theme */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.btn-gold {
    background: #D4AF37;
    color: #000;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero */
.hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #D4AF37 !important;
}

.section-title {
    color: #D4AF37;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-card img {
    height: 130px;
    width: 100%;
    object-fit: cover;
    border: 3px solid #D4AF37;
    border-radius: 12px;
    padding: 4px;
    background: white;
}

/* Footer */
footer {
    background: #111;
    color: #ddd;
    padding: 60px 0 30px;
    text-align: center;
}

.gold-border {
    border: 3px solid #D4AF37;
    padding: 4px;
    background: white;
}

/* Marquee for Clients */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 0;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: marquee 35s linear infinite;
}

.client-name {
    font-size: 1.35rem;
    font-weight: 500;
    color: #fff;
    padding: 12px 30px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #D4AF37;
    border-radius: 50px;
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}