* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .08);
    z-index: 1000;
}

.logo img {
    height: 75px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    font-weight: 500;
    color: #222;
    transition: .3s;
}

nav a:hover {
    color: #0057D9;
}

.quote-btn {
    background: #0057D9;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    min-height: 100vh;

    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
}

.hero-content {
    position: relative;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
}


.hero p {
    font-size: 22px;
    margin-bottom: 35px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary {
    background: #0057D9;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #003f9c;
    box-shadow: 0 15px 35px rgba(0, 87, 217, .35);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.btn-secondary:hover {
    background: #f2f2f2;
}

.services {
    padding: 100px 8%;
    background: #f7f9fc;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    color: #0B1F3A;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    border-top: 5px solid #0057D9;
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .5s ease;
}

.card:hover img {
    transform: scale(1.08);
}

.card h3 {
    color: #0B1F3A;
    margin: 25px 20px 15px;
}

.card p {
    color: #666;
    line-height: 1.6;
    padding: 0 25px 25px;
}

.service-btn {
    display: inline-block;
    margin-bottom: 30px;
    padding: 12px 28px;
    background: #0057D9;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.card {
    transition: .35s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 87, 217, .15);
}

.card i {
    font-size: 45px;
    color: #0057D9;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: #0B1F3A;
}

.card p {
    color: #666;
    line-height: 1.6;
}

.card {
    overflow: hidden;
    padding: 0;
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.card:hover img {
    transform: scale(1.08);
}

.card h3 {
    padding: 25px 25px 10px;
}

.card p {
    padding: 0 25px;
    margin-bottom: 25px;
}

.service-btn {
    display: inline-block;
    margin: 0 25px 30px;
    padding: 12px 28px;
    background: #0057D9;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}

.service-btn:hover {
    background: #003f9c;
}

.hero-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    margin-bottom: 25px;
    font-weight: 600;
}

/* WHY US */

.why-us {
    padding: 100px 8%;
    background: white;
}

.container-why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.why-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #0B1F3A;
}

.why-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.feature i {
    color: #0057D9;
    font-size: 22px;
}

/* =========================
   GALLERY PAGE
========================= */

.page-hero {
    height: 60vh;
    margin-top: 105px;
    background: url("../images/gallery-hero.jpg") center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.page-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
}

.page-hero-content {
    position: relative;
    color: white;
    padding: 20px;
}

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
}


/* GALLERY SECTION */

.gallery-section {
    padding: 100px 8%;
    background: #f7f9fc;
}

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 18px;
    background: #ddd;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 87, 217, .80);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: .4s ease;
}

.gallery-overlay i {
    font-size: 35px;
    margin-bottom: 15px;
}

.gallery-overlay h3 {
    font-size: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* GALLERY CTA */

.gallery-cta {
    padding: 90px 20px;
    text-align: center;
    background: #0B1F3A;
    color: white;
}

.gallery-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.gallery-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}


/* MOBILE RESPONSIVE DESIGN */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .page-hero {
        height: 50vh;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .page-hero-content p {
        font-size: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 260px;
    }

    .gallery-cta h2 {
        font-size: 28px;
    }

}

/* Why Us Section */

.why-us {
    padding: 80px 5%;
    background: #F5F7FA;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: white;
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
}

.icon {
    width: 55px;
    height: 55px;
    background: #0057D9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 28px;
    font-weight: bold;
}

.why-card h3 {
    margin: 20px 0 10px;
    color: #0B1F3A;
}

.why-card p {
    color: #555;
    line-height: 1.6;
}


/* Mobile Responsive */

@media(max-width: 900px) {

    .why-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 600px) {

    .why-container {
        grid-template-columns: 1fr;
    }

}

/* Testimonials Section */

.testimonials {
    padding: 80px 5%;
    background: white;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: #f5f7fa;
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #0057D9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
}

.testimonial-card h3 {
    margin-top: 20px;
    color: #0B1F3A;
    font-size: 16px;
}


/* Mobile */

@media(max-width:900px) {

    .testimonial-container {
        grid-template-columns: 1fr;
    }

}

/* CTA Section */

.cta {
    padding: 80px 5%;
    background: #0057D9;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 850px;
    margin: auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0057D9;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background: #0B1F3A;
    color: white;
}


/* Mobile */

@media(max-width:600px) {

    .cta h2 {
        font-size: 26px;
    }

    .cta p {
        font-size: 16px;
    }

}

/* Gallery Preview */

.gallery-preview {
    padding: 80px 5%;
    background: #f5f7fa;
}


.gallery-container {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;

}


.gallery-item {

    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 12px;

}


.gallery-item img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;

}


.gallery-item:hover img {

    transform: scale(1.1);

}


.gallery-overlay {

    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent,
            rgba(0, 0, 0, 0.8));

    color: white;

}


.gallery-overlay h3 {

    font-size: 18px;

}


.gallery-button {

    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 14px 35px;
    background: #0057D9;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;

}


.gallery-button:hover {

    background: #0B1F3A;

}



/* Responsive */

@media(max-width:1000px) {

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:600px) {

    .gallery-container {
        grid-template-columns: 1fr;
    }

}