/* 
 Theme Name:   cpa-child
 Theme URI:    
 Description:  
 Author:       
 Author URI:   
 Template:     cpa-accountant
 Version:      1.0

 /* == Add your own styles below this line ==
--------------------------------------------*/
:root {
--primary-color: #17a739;
--secondary-color: #74FB94;
}

.content-area {
    margin-top: 2rem;
}

.section {
    padding: 30px 0;
}

.hero {
    padding-top: 0;
}

h1 {
    font-weight: 700;
    text-align: center;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.primary-menu ul {
    width: 20rem;
}

.entry-content ul {
    list-style: none;
    padding-left: 0;
}

.entry-content ul li::before {
    content: "⦿";
    margin-right: 8px;
}

.primary-background {
    background: var(--primary-color);
    border-radius: 20px;
    color: #fff !important;
}

.primary-background h2,
.primary-background p {
    color: #fff !important;
}

.primary-background a {
    color: #000 !important;
    text-decoration: underline wavy !important;
}

input[type="text"],
input[type="email"], textarea {
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(var(--primary-color), var(--secondary-color));
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn-home,
.field-wrap input[type=submit] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-home:hover,
.field-wrap input[type=submit]:hover {
    background: var(--secondary-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover i {
    color: #000;
}


.widget ul li ul li::before{
    content: "⦿";
        margin-right: 8px;
}

@media (max-width:1445px) {
    .primary-menu>li {
    margin: 3px 6px;
    }    
    .primary-menu a {
        font-size: 14px !important;
    }
}

@media (max-width: 1140px) {
    .primary-menu a {
        font-size: 11px !important;
    }
}

.toggle-inner {
    top: -15px;
}


@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}