/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* NAVBAR */
header {
    background-color: #0047ab;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* HERO */
.hero {
    background-color: #f4f4f4;
    padding: 70px 20px;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    color: #0047ab;
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
}

.hero-statement {
    font-weight: bold;
    color: #000;
    margin-top: 15px;
}

/* ABOUT */
.about {
    padding: 60px 20px;
    text-align: center;
    background-color: #e6e6e6;
}

.about h2 {
    color: #0047ab;
    margin-bottom: 20px;
}

.about p {
    max-width: 850px;
    margin: auto;
}

/* HOMEPAGE SERVICES */
.services-preview {
    padding: 60px 20px;
    text-align: center;
}

.services-preview h2 {
    color: #0047ab;
    margin-bottom: 15px;
}

.services-intro {
    max-width: 850px;
    margin: 0 auto 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.service-card {
    background-color: #f4f4f4;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeUp 0.8s ease forwards;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #0047ab;
    margin-bottom: 10px;
}

.view-all {
    background-color: #0047ab;
    text-decoration: none;
}

.view-all h3,
.view-all p {
    color: white;
}

/* SERVICES PAGE */
.services-hero {
    padding: 60px 20px;
    background-color: #e6e6e6;
    text-align: center;
}

.services-hero h1 {
    color: #0047ab;
    margin-bottom: 15px;
}

.services-cards {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.services-cards .card {
    background-color: #f4f4f4;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeUp 0.8s ease forwards;
}

.services-cards .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* =========================
   CONTACT PAGE FINAL
========================= */

/* HERO */
.contact-hero {
    background-color: #f4f4f4;
    padding: 70px 30px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    color: #0047ab;
    margin-bottom: 15px;
}

.contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* CONTACT CARD */
.contact-section {
    display: flex;
    justify-content: center;
    padding: 60px 30px;
}

.contact-card {
    background-color: #e6e6e6;
    padding: 45px;
    border-radius: 15px;
    max-width: 520px;
    text-align: center;
    animation: fadeInUp 1s ease forwards;
    transition: transform 0.4s, box-shadow 0.4s;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
}

/* CUSTOMER REMARKS */
.remarks {
    background-color: #e6e6e6;
    padding: 70px 30px;
    text-align: center;
}

.remark-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.remark-card {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 12px;
    animation: fadeInUp 1s ease forwards;
    transition: transform 0.3s, box-shadow 0.3s;
}

.remark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.remark-card span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #0047ab;
}

/* FOOTER */
footer {
    background-color: #0047ab;
    color: white;
    text-align: center;
    padding: 20px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }

    .remark-cards {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: absolute;
        right: 20px;
        top: 60px;
        background-color: #0047ab;
        flex-direction: column;
        padding: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}
/* CONTACT PAGE STYLES */

.header {
    background-color: #0047ab;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contact-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-card {
    max-width: 600px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    animation: fadeUp 0.8s ease forwards;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.whatsapp-btn:hover {
    opacity: 0.9;
}

/* TESTIMONIALS */

.testimonials {
    background-color: #f4f4f4;
    padding: 70px 20px;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    animation: fadeUp 1s ease forwards;
}

.testimonial-card h4 {
    margin-top: 12px;
    color: #0047ab;
}

/* FOOTER */

.footer {
    background-color: #0047ab;
    color: white;
    text-align: center;
    padding: 20px;
}

/* ANIMATION */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
