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

body {

    font-family: Arial, sans-serif;

    background: #ffffff;

    color: #17375e;

    overflow-x: hidden;

}

/* NAVIGATION */

nav {

    width: 100%;

    padding: 35px 60px;

    display: flex;

    justify-content: flex-end;

}

.nav-links a {

    text-decoration: none;

    color: #17375e;

    margin-left: 40px;

    font-size: 15px;

    letter-spacing: 1px;

}

/* HERO */

.hero {

    min-height: 40vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    position: relative;

    padding-top: 0px;

}

.logo {

    width: 1050px;

    max-width: 100%;

    margin-top: 0px;

    margin-bottom: 20px;

}

.hero h1 {

    font-size: 32px;

    font-weight: 500;

}

.hero p {

    font-size: 22px;

    color: #666;

    margin-bottom: 40px;

}

/* BUTTONS */

.buttons {

    display: flex;

    gap: 20px;

}

.primary-btn {

    background: #0d7fd1;

    color: white;

    padding: 18px 40px;

    border-radius: 40px;

    text-decoration: none;

}

.secondary-btn {

    border: 2px solid #0d7fd1;

    color: #0d7fd1;

    padding: 18px 40px;

    border-radius: 40px;

    text-decoration: none;

}

/* SCROLL */

.scroll {

    margin-top: 10px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    color: #777;

}

/* BUSINESS CARD SHAPES */


.services {
    padding: 20px 50px 40px;
    background: #f2f8fc;
    text-align: center;
}

.services h3 {
    color: #0d7fd1;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-align: center;
}

.services h2 {
    font-size: 42px;
    color: #1f3556;
    margin-bottom: 35px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    overflow: visible;
}
.service-card::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(13,127,209,0.08);
    border-radius: 50%;
    top: -15px;
    left: -15px;
    z-index: 0;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(13,127,209,0.12);
    border-radius: 50%;
    bottom: -10px;
    right: -10px;
    z-index: 0;
}
.service-card img,
.service-card h4,
.service-card p {
    position: relative;
    z-index: 1;
}
.service-card h4 {
    color: #1f3556;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 20px;
}

.quote-section {
    padding: 50px 40px;
    text-align: center;
    background: white;
}

.quote-section h2 {
    font-size: 42px;
    color: #1f3556;
    margin-bottom: 20px;
}

.quote-section p {
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.quote-form {
    max-width: 700px;
    margin: auto;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
}

.quote-form textarea {
    min-height: 150px;
}

.quote-form button {
    background: #0d7fd1;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 40px;
    font-size: 18px;
    cursor: pointer;
}
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #1f3556;
    font-weight: 600;
    font-size: 15px;
}

.trust-bar span {
    display: flex;
    align-items: center;
}
/* GALLERY PAGE */

.gallery-hero {
    text-align: center;
    padding: 120px 50px 60px;
}

.gallery-hero h1 {
    font-size: 48px;
    color: #1f3556;
    margin-bottom: 20px;
}

.gallery-hero p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 50px 80px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);

}
.contact-details {
    text-align: center;
    margin: 25px 0;
}

.contact-details p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-details a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
} 

.contact-details p {
    margin: 8px 0;
}
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer p {
    margin: 10px 0;
}
.about-section {
    background: #f3f8fc;
    padding: 80px 20px;
    text-align: center;
}

.about-section .container {
    max-width: 900px;
    margin: 0 auto;
}


.contact-details {
    text-align: center;
    margin-bottom: 25px;
}

.contact-details p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-details a {
    color: #0d2d62;
    text-decoration: none;
    font-weight: bold;
}

.quote-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    text-align: center;
}

.contact-details p {
    margin: 8px 0;
    font-size: 1.1rem;
}

.contact-details a {
    color: #17396b;
    font-weight: 600;
    text-decoration: none;
}

.quote-intro {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}