/* Import Google Sans */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;700&display=swap');

/* General Styles */
body {
    font-family: 'Google Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #0B1F3B;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #C6A75E;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    padding-bottom: 6px;
}

.logo::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #C6A75E;
    border-radius: 2px;
}

nav a {
    margin-left: 20px;
    font-weight: 600;
}

/* CTA Buttons */
.cta-buttons a.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #FFB347, #FF7E5F); /* Attractive gradient for Call */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 10px 10px 0 0;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-buttons a.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* Official WhatsApp green */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 10px 10px 0 0;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-buttons a i {
    margin-right: 10px;
    font-size: 18px;
}

.cta-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #FFECD2, #FFB347); /* Softer gradient */
    color: #0B1F3B;
    border-radius: 10px;
    margin: 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
}

/* Section */
section {
    padding: 60px 20px;
    text-align: center;
}

/* Services */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.service-box {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    width: 280px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-box h2 i {
    color: #FF7E5F;
    margin-right: 10px;
    font-size: 22px;
    vertical-align: middle;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Contact */
.contact-box {
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #0B1F3B;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #C6A75E;
    font-weight: 600;
}

/* Responsive */
@media(max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 16px;
    }
    .cta-buttons a.call-btn,
    .cta-buttons a.whatsapp-btn {
        display: flex;
        width: 80%;
        margin: 10px auto;
        justify-content: center;
    }
}
