/*!
Theme Name: AceRevenuePro
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: acerevenuepro
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

AceRevenuePro is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
html,
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* ==================================
   HEADER
================================== */

.site-header {
    z-index: 999;
    background: transparent;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==================================
   LOGO
================================== */

.custom-logo {
    max-height: 80px;
    width: auto;
}

.site-branding img {
    display: block;
}

/* ==================================
   NAVIGATION
================================== */

.main-navigation ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    color: #0073aa;
}

/* Underline effect */

.main-navigation a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #0073aa;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* ==================================
   MOBILE MENU
================================== */

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}
.hero {
    background: #0057c2;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 30px;

    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left h1 {
    color: #fff;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-left p {
    color: #fff;
    font-size: 20px;
    line-height: 1.7;
}

.hero-right img {
    width: 100%;
    height: auto;
    display: block;
}

.homepage-about {
    padding: 100px 0;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image,
.about-content {
    flex: 1;
}

.about-image img {
    width: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #222;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #0057c2;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: .3s;
}

.about-btn:hover {
    background: #0044a0;
}
.services-section {
    background: #f5f5f5;
    padding: 100px 0;
}

.services-heading, .section-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #222;
}

.services-slider {
    overflow: hidden;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
}

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

.service-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-content p {
    color: #666;
    line-height: 1.7;
}

.why-ace {
    padding: 100px 0;
    background: #fff;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;

    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.why-left,
.why-right {
    flex: 1;
}

.why-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #222;
}

.why-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.why-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.why-right ul {
    padding-left: 20px;
}

.why-right li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #555;
}
.site-footer {
    background: #3e5372;
    color: #fff;
    padding-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    max-height: 70px;
    width: auto;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 16px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}
/* Mobile */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        right: 20px;

        flex-direction: column;
        background: #fff;
        padding: 20px;
        min-width: 220px;

        box-shadow: 0 10px 25px rgba(0,0,0,.1);
        border-radius: 10px;
    }

    .main-navigation.toggled ul {
        display: flex;
    }

    .header-container {
        padding: 15px 20px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }
}