* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
        
}

body {
    font-family: Arial, sans-serif;
    color: #1D347A;
    background: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1D347A;
    padding: 20px 50px;

}

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

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

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

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(29,52,122,0.8), rgba(29,52,122,0.8)),
    url('images/logo-image.png') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-overlay h1 {
    color: white;
    font-size: 4rem;
}

.hero-overlay p {
    color: #F4F2EA;
    margin: 20px 0;
    font-size: 1.2rem;
}

/* BUTTON */
.btn {
    background: #A9D5E2;
    color: #1D347A;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* SECTIONS */
section {
    padding: 80px 50px;
    text-align: center;
}

.about {
    background: #F5FAFC;
    size: 30px;
}

/* SERVICES SECTION WRAPPER */
.services {
    background: #ffffff;
    padding: 100px 50px;
}

.services h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1D347A;
    letter-spacing: 0.5px;
}

.services p {
    max-width: 650px;
    margin: 0 auto 50px auto;
    color: #35508f;
    font-size: 1.1rem;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* LINK WRAPPER */
.service-link {
    text-decoration: none;
}

/* CARD */
.card {
    background: linear-gradient(145deg, #F5FAFC, #ffffff);
    border: 1px solid rgba(29, 52, 122, 0.15);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: left;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* subtle top accent bar */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #A9D5E2;
}

/* TITLE */
.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1D347A;
}

/* TEXT */
.card p {
    font-size: 0.95rem;
    color: #35508f;
    line-height: 1.5;
}

/* HOVER EFFECT */
.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 30px rgba(29, 52, 122, 0.15);
    border-color: rgba(29, 52, 122, 0.3);
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
}
.dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.carousel {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px;
}

.slide {
    min-width: 360px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    scroll-snap-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 2px solid #A9D5E2;
}

.slide h3 {
    margin-bottom: 15px;
    color: #1D347A;
}

/* FULL IMAGE */
.slide img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 260px;
}

/* SIDE BY SIDE */
.dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/* ARROWS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1D347A;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.left { left: -20px; }
.carousel-btn.right { right: -20px; }

.cta {
    background: linear-gradient(135deg, #A9D5E2, #d8eef5);
    padding: 100px 40px;
    text-align: center;
    border-top: 4px solid #1D347A;
    border-bottom: 4px solid #1D347A;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1D347A;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: #35508f;
}

.cta .btn {
    display: inline-block;
    background: #1D347A;
    color: white;
    padding: 18px 38px;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 8px 18px rgba(29,52,122,0.25);
}

.cta .btn:hover {
    transform: translateY(-4px);
    background: #27449b;
}

/* QUOTE PAGE */
.quote-page {
    background: #F5FAFC;
    min-height: 100vh;
}

.quote-container {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-form input,
.quote-form textarea {
    padding: 14px;
    border: 2px solid #A9D5E2;
    border-radius: 8px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* FOOTER */
footer {
    background: #1D347A;
    color: white;
    padding: 50px;
    text-align: center;
}

/* NAVBAR SCROLL EFFECT */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
}

.navbar.scrolled {
    background: rgba(29, 52, 122, 0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* FADE IN */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {

    /* GENERAL SPACING */
    section {
        padding: 60px 20px;
    }

    /* NAVBAR */
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 12px;
        font-size: 0.9rem;
    }

    /* HERO */
    .hero-overlay h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    /* SERVICES GRID */
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 25px 20px;
    }

    /* CAROUSEL */
    .slide {
        min-width: 85%;
    }

    .carousel {
        padding: 10px;
        gap: 15px;
    }

    /* CTA */
    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1rem;
    }

    /* BUTTONS */
    .btn {
        width: 100%;
        text-align: center;
    }
}