@import url('https://fonts.googleapis.com/css2?family=Sofadi+One&display=swap');

body {
    font-size:18px;
    padding-top: 60px;
}

.img-responsive {
    width: 100%;
    height: auto;
}

/* Navigation Section */
nav {
    background-color: #000;
    padding: 10px 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
}
.logo {
    font-family: "Sofadi One", system-ui;
    font-size: 27px;
    color: #fff;
}
.logo:hover {
    color: #fff;
    text-decoration: none;
}
.main-menu > li {
    list-style: none;
    float: left;
    padding: 8px 10px;
}
.parent-dropdown {
    position: relative;
}
.child-dropdown {
    position: absolute;
}
.main-menu >li > a {
    color: #fff;
    font-weight: 400;
}
.main-menu > li > a:hover {
    color: #471bff;
    text-decoration: none;
}
.current {
    color: #471bff !important;
}
.child-dropdown {
    padding: 0;
    margin: 0;
    background-color: #fff;
    padding: 10px;
    width: 280px;
    display: none;
}
.child-dropdown li {
    list-style: none;
    padding: 5px 0;
}
.child-dropdown li a {
    color: #000;
    font-weight: 500;
}
.child-dropdown li a:hover {
    color: #2a6fdd;
    text-decoration: none;
}
.parent-dropdown:hover .child-dropdown {
    display: block;
}
nav .container {
    position: relative;
}
.fa-bars {
    color: #fff;
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    z-index: 999;
    display: none;
}

@media (max-width:768px) {
    .fa-bars {
        display: block;
    }
    .main-menu {
        display: none;
    }
    .main-menu li {
        float: none;
        text-align: center;
    }
    .child-dropdown {
        position: relative;
        width: 100%;
    }
    nav .cust-btn {
        display: none;
    }
}

/* Banner Section */
.banner {
    padding:100px 0;
    background-color: #6D7CB4;
    color: #fff;
}
.cust-btn {
    background-color: #471CFF;
    color: #fff;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 20px;
    transition: 0.5s;
}
.cust-btn:hover {
    color: #fff;
    text-decoration: none;
    background-color: #142258;
}

/* Actual Section */
.actual {
    padding:25px 0;
    background-color: #DEE5FF;
}

/* About Us Section */
.about-us {
    padding: 60px 0;
}
.about-us p {
    border-left: 3px solid #471CFF;
    padding-left: 8px;
    margin-bottom: 30px;
}

/* Manage Section */
.manage {
    padding: 40px 0;
}
.manage .row {
    padding-top: 20px;
}
.main-manage {
    padding: 15px;
}
.custom-manage {
    padding: 20px;
    border: 1px solid #e8e8e8;
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.5);
    transition: 0.4s;
}
.custom-manage i {
    font-size: 35px;
}
.custom-manage:hover {
    border-color: #471bff;
    background-color: #DEE5FF;
}

/* Need Section */
.need {
    padding: 60px 0;
    background-color: #EEF2FF;
}
.need h1 {
    padding-bottom: 25px;
}
.need .col-md-7 {
    padding-top: 30px;
}

/* Asked Section */
.asked {
    padding: 60px 0;
}

/* Footer Section */
footer {
    padding: 60px 0;
    background-image: url('../images/contact-section-bg-1.png');
    background-size: cover;
    background-repeat: no-repeat;
}
footer .logo {
    color: #000;
    font-weight: 600;
}
footer .logo:hover {
    color: #000;
    text-decoration: none;
}
footer a {
    display: block;
    color: #000;
    font-weight: 500;
    font-size: 20px;
    padding: 6px 0;
}
footer a:hover {
    color: #441cfc;
    text-decoration: none;
}

/* Lower Footer Section */
.lower-footer {
    padding: 30px 0;
    background-color: #6D7CB4;
    color: #fff;
}

/* About Us Page */
/* About Banner Section */
.about-banner {
    padding: 100px 0;
    background-image: url(../images/portfolio-img-5.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: -327px;
    position: relative;
    z-index: 1;
}
.about-banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.6;
    z-index: -1;
}
.about-banner h1 {
    text-align: center;
    font-size: 50px;
    color: #fff;
}

/* About Content Section */
.about-content {
    padding: 60px 0;
}
.about-content h5 {
    color: #471bff;
}

/* Expert Section */
.expert {
    padding: 40px 0;
}
.expert h5 {
    color: #471bff;
}

/* Accounting and Bookkeeping Page */
/* Accounting Content Section */
.accounting-content {
    padding: 60px 0;
}
.accounting-content h3 {
    text-align: center;
}

/* Online Section */
.online {
    padding: 60px 0;
    background-color: #CDD4EC;
}
.online h2 {
    text-align: center;
}
.main-online {
    padding: 15px;
}
.online .custom-online {
    background-color: #fff;
    padding: 20px;
    border-radius: 30px;
}

/* Contact Us Page */
/* Contact Content Section */
.contact-content {
    padding: 40px 0;
}
.contact-content h2 {
    padding-bottom: 20px;
}
.contact-content h4 {
    color: #142258;
}
.contact-content a {
    color: #000;
}