* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    line-height: 1.6;
    background: #ffffff;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* =========================
   TOP BAR
========================= */

.top-bar {
    background: #102a43;
    color: #ffffff;
    font-size: 14px;
}


.top-content {
    min-height: 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


.top-content i {
    margin-right: 6px;
}


/* =========================
   HEADER
========================= */

.header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 1000;
}

.header-content {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #102a43;
    flex-shrink: 0;
}

/* IMPORTANT - LARGE LOGO */

.logo img {
    width: 450px !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain;
    display: block;
}

/* =========================
   NAVIGATION
========================= */

nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

nav a {
    color: #222;
    text-decoration: none;
    padding: 12px 13px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

nav a:hover {
    color: #b8860b;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    z-index: 9999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 11px 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 25px;
    cursor: pointer;
}


/* =========================
   MOBILE
========================= */

@media(max-width: 1000px) {

    .header-content {
        min-height: 120px;
    }

    .logo img {
        width: 300px !important;
        height: auto !important;
    }

    nav {
        gap: 0;
    }

    nav a {
        padding: 10px 8px;
        font-size: 13px;
    }
}


@media(max-width: 768px) {

    .header-content {
        min-height: 90px;
    }

    .logo img {
        width: 230px !important;
        height: auto !important;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 90px;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 10px 20px rgba(0,0,0,.1);
        z-index: 9999;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 14px 20px;
        border-bottom: 1px solid #eeeeee;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: block;
    }
}


@media(max-width: 500px) {

    .header-content {
        min-height: 80px;
    }

    .logo img {
        width: 190px !important;
        height: auto !important;
    }

    nav {
        top: 80px;
    }
}

.hero {

    min-height: 530px;

    background:
        linear-gradient(
            rgba(10,30,50,.68),
            rgba(10,30,50,.68)
        ),
        url("images/banner1.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}


.hero-content {
    color: #ffffff;
}


.hero-small {
    font-size: 16px;
    letter-spacing: 1px;
}


.hero h2 {
    font-size: 52px;
    line-height: 1.15;

    max-width: 700px;

    margin: 15px 0;
}


.hero h2 span {
    color: #e2b13c;
}


.hero p {
    max-width: 600px;

    font-size: 18px;

    margin-bottom: 30px;
}


.hero-buttons {
    display: flex;
    gap: 12px;
}


.btn {
    display: inline-block;

    padding: 13px 25px;

    border-radius: 4px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;
}


.btn-primary {
    background: #b8860b;
    color: #ffffff;
}


.btn-primary:hover {
    background: #956e08;
}


.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
}


.btn-outline:hover {
    background: #ffffff;
    color: #102a43;
}


/* =========================
   QUICK SERVICES
========================= */

.quick-services {
    margin-top: -45px;
    position: relative;
}


.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.service-card {
    background: #ffffff;

    padding: 25px;

    text-align: center;

    text-decoration: none;

    color: #222;

    box-shadow:
        0 8px 30px rgba(0,0,0,.10);

    transition: .3s;
}


.service-card:hover {
    transform: translateY(-6px);
}


.service-icon {
    width: 60px;
    height: 60px;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f3ead0;

    color: #b8860b;

    border-radius: 50%;

    font-size: 23px;
}


.service-card h3 {
    margin: 12px 0 5px;

    font-size: 18px;
}


.service-card p {
    color: #777;

    font-size: 13px;
}


/* =========================
   SECTIONS
========================= */

.about-section,
.notice-section,
.products-section,
.services-section {

    padding: 85px 0;

}


.about-section {
    background: #f8fafc;
}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;
}


.about-image img {

    width: 100%;

    height: 400px;

    object-fit: cover;

    border-radius: 5px;
}


.section-label {

    color: #b8860b;

    font-weight: 700;

    font-size: 13px;

    letter-spacing: 1.5px;
}


.about-content h2,
.section-heading h2 {

    font-size: 36px;

    line-height: 1.2;

    margin: 10px 0 20px;

    color: #102a43;
}


.about-content p {

    color: #666;

    margin-bottom: 15px;

}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    text-align: center;

    margin-bottom: 40px;
}


/* =========================
   NOTICE
========================= */

.notice-box {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px;

    border: 1px solid #eeeeee;

    margin-bottom: 15px;

    background: #ffffff;

    box-shadow:
        0 4px 15px rgba(0,0,0,.05);
}


.notice-icon {

    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 50%;

    background: #f3ead0;

    color: #b8860b;

    display: flex;

    justify-content: center;

    align-items: center;
}


.notice-content {
    flex: 1;
}


.notice-content h3 {
    color: #102a43;
}


.notice-content p {
    color: #777;
}


.notice-button {

    background: #102a43;

    color: #ffffff;

    text-decoration: none;

    padding: 8px 18px;

    border-radius: 3px;
}


/* =========================
   PRODUCTS
========================= */

.products-section {
    background: #f8fafc;
}


.product-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.product-card {

    background: #ffffff;

    padding: 35px;

    border-radius: 5px;

    box-shadow:
        0 5px 20px rgba(0,0,0,.06);
}


.product-icon {

    color: #b8860b;

    font-size: 35px;

    margin-bottom: 15px;
}


.product-card h3 {

    color: #102a43;

    margin-bottom: 10px;
}


.product-card p {

    color: #777;

    margin-bottom: 15px;
}


.product-card a {

    color: #b8860b;

    text-decoration: none;

    font-weight: 600;
}


/* =========================
   SERVICES
========================= */

.services-section {
    background: #102a43;

    color: #ffffff;
}


.services-section .section-heading h2 {
    color: #ffffff;
}


.services-list {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 15px;
}


.services-list div {

    text-align: center;

    padding: 25px 10px;

    border: 1px solid rgba(255,255,255,.15);
}


.services-list i {

    display: block;

    font-size: 28px;

    color: #e2b13c;

    margin-bottom: 10px;
}


/* =========================
   FOOTER
========================= */

.footer {

    background: #081c2c;

    color: #ffffff;

    padding-top: 60px;
}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.5fr;

    gap: 40px;

    padding-bottom: 45px;
}


.footer h3 {

    margin-bottom: 20px;

    color: #e2b13c;
}


.footer p {

    color: #c7d0d8;

    font-size: 14px;
}


.footer ul {

    list-style: none;
}


.footer li {

    margin-bottom: 8px;
}


.footer a {

    color: #c7d0d8;

    text-decoration: none;
}


.footer a:hover {

    color: #e2b13c;
}


.social-icons {

    margin-top: 20px;

    display: flex;

    gap: 10px;
}


.social-icons a {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #506070;

    border-radius: 50%;
}


.copyright {

    text-align: center;

    padding: 20px;

    border-top: 1px solid #263b4b;

    color: #9baab5;

    font-size: 13px;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1000px) {

    nav {
        gap: 0;
    }

    nav a {
        padding: 10px 8px;
        font-size: 13px;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-list {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media(max-width: 768px) {

    .top-content {
        flex-direction: column;

        padding: 8px 0;

        gap: 3px;
    }


    .header-content {
        min-height: 75px;
    }


    .logo h1 {
        font-size: 17px;
    }


    .logo span {
        font-size: 10px;
    }


    .menu-toggle {
        display: block;
    }


    nav {

        display: none;

        position: absolute;

        left: 0;
        right: 0;

        top: 115px;

        background: #ffffff;

        flex-direction: column;

        align-items: stretch;

        box-shadow:
            0 10px 20px rgba(0,0,0,.1);

        z-index: 9999;
    }


    nav.active {
        display: flex;
    }


    nav a {
        padding: 14px 20px;

        border-bottom:
            1px solid #eeeeee;
    }


    .dropdown-menu {

        position: static;

        box-shadow: none;

        display: block;
    }


    .hero {
        min-height: 500px;
    }


    .hero h2 {
        font-size: 38px;
    }


    .hero p {
        font-size: 16px;
    }


    .about-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .product-grid {
        grid-template-columns: 1fr;
    }


    .services-list {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }

}


@media(max-width: 500px) {

    .service-grid {
        grid-template-columns: 1fr;
    }


    .notice-box {
        align-items: flex-start;
    }


    .notice-button {
        display: none;
    }


    .hero h2 {
        font-size: 32px;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

}

