body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
}

/* TOP HEADER */

.top-header {
    background: #b8860b;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

.top-right a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

/* NAVBAR */

.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo {
    width: 70px;
}

.brand-text h4 {
    margin: 0;
    color: #b8860b;
    font-weight: 700;
}

.brand-text span {
    font-size: 12px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin-left: 20px;
    color: #222 !important;
}

/* HERO */

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/img2.png');
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    color: #fff;
    text-align: center;
}

    .hero-section h1 {
        font-size: 55px;
        font-weight: 700;
    }

    .hero-section p {
        font-size: 20px;
        margin-top: 20px;
    }

/* CONTENT */

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 30px;
}

.content-box {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

    .content-box h3 {
        color: #b8860b;
        margin-bottom: 20px;
    }

/* SERVICES */

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-card h4 {
        margin-top: 20px;
        color: #b8860b;
    }

/* FOOTER */

.footer-section {
    background: #111;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-logo {
    width: 90px;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

    .footer-links li,
    .footer-contact li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
    }

.copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* MOBILE */

@media(max-width:768px) {

    .hero-section h1 {
        font-size: 36px;
    }

    .top-right {
        margin-top: 10px;
    }
}

.right-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    margin-left: 10px;
}

.cta-btn {
    background: #f4b400;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

    .cta-btn:hover {
        background: #b8860b;
        color: #fff;
    }

.seo-box {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

    .seo-box h3 {
        color: #b8860b;
        margin-bottom: 20px;
    }