* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f6f7;
    color: #333;
    text-align: center;
}

/* HERO */
.hero {
    height: 70vh;
    background: url('hero.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    color: white;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 25px;
    border-radius: 6px;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 25px;
    border-radius: 6px;
}

.btn {
    background: #0077ff;
    padding: 12px 25px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 18px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056cc;
}

/* SERVICES */
.services {
    padding: 60px 20px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap; /* Makes it responsive */
}

.service-card {
    background: white;
    padding: 15px;
    width: 260px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.service-card img {
    width: 100%;
    height: 160px;
    border-radius: 6px;
    object-fit: cover;
}

.service-card h3 {
    margin-top: 12px;
}

.service-card p {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* PRICING */
.pricing {
    background: white;
    padding: 60px 20px;
    margin-top: 30px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    padding: 20px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.pricing-card.popular {
    border: 2px solid #0077ff;
    position: relative;
}

.pricing-card.popular::before {
    content: "Most Popular";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0077ff;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.pricing-card h3 {
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0077ff;
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* WHY CHOOSE US */
.why-choose-us {
    background: white;
    padding: 60px 20px;
    margin-top: 30px;
}

.benefits-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.benefit {
    background: #e7eef5;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    border-left: 6px solid #0077ff;
    animation: fadeIn 1s ease-in-out;
}

/* REQUEST */
.request {
    background: white;
    padding: 50px 20px;
    margin-top: 30px;
}

.step-box {
    background: #e7eef5;
    width: 60%;
    margin: 10px auto;
    padding: 15px;
    border-left: 6px solid #0077ff;
    border-radius: 6px;
}

/* FOOTER */
footer {
    margin-top: 40px;
    padding: 25px;
    background: #0077ff;  /* Changed from #222 to match theme */
    color: white;
    position: relative;
}

.back-to-top {
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.back-to-top:hover {
    color: #0056cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .service-container, .benefits-container, .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .service-card, .benefit, .pricing-card {
        width: 90%;
    }
    .step-box {
        width: 90%;
    }
}
