@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-style: normal;


}

:root {
    --base-color-1: #f38b3b;
    --base-color-2: #123158;
    --base-color-3: #9ebde4;
    --base-color-4: #63DAD9;
    --white-color: #ffffff;
    --base-color-6: #d4a24e;
    --base-color-7: #7489f7;
}

/*==========Group css===========*/
.flex-div {
    display: flex;
}

.jus-center {
    justify-content: center !important;
}

.jus-right {
    justify-content: right !important;
}

.jus-start {
    justify-content: flex-start !important;
}

.txt-cntr {
    text-align: center !important;
}

.txt-left {
    text-align: left !important;
}

.jus-end {
    justify-content: flex-end;
}

.jus-bet {
    justify-content: space-between !important;
}

.jus-arnd {
    justify-content: space-around !important;
}

.align-bot {
    align-items: flex-end;
}

.align-mid {
    align-items: center;
}

.align-top {
    align-items: flex-start;
}

.align-center {
    align-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.dirc-col {
    flex-direction: column;
}

.positionR {
    position: relative;
}

.full-width {
    width: 100% !important;
}

.width-auto {
    width: auto !important;
}

.width-half {
    width: 50% !important;
}

.input-div.full-width {
    width: 100% !important;
}

.no-pad {
    padding: 0 !important;
}

.no-marg {
    margin: 0 !important;
}

.no-marg-top {
    margin-top: 0 !important;
}

.marg-t-b-50 {
    margin: 50px 0px;
}

.marg-t-b-30 {
    margin: 30px 0px;
}

.marg-l-20 {
    margin-left: 20px;
}

.margin-r-l {
    margin: 0 auto;
}

.no-pad-top {
    padding-top: 0 !important;
}

.no-pad-btm {
    padding-bottom: 0 !important;
}

.bg-none {
    background: none !important;
}

.brdr-none {
    border: 0 !important;
}

.shad-none {
    box-shadow: none !important;
}

.child-half {
    width: calc(50% - 3px) !important;
}

.pad10 {
    padding: 10px !important;
}

.padtop10 {
    padding-top: 10px !important;
}

.padbottom10 {
    padding-bottom: 10px !important;
}

.padtop-t-b-50 {
    padding: 50px 0px;
}

.padtop-l-r-100 {
    padding: 0px 100px;
}

.padtop-l-r-60 {
    padding: 0px 60px;
}

/* ===========custom my css=========== */
/* ====================top-bar=================== */

.top-bar {
    background: #0b3c5d;
    padding: 12px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    width: 100%;
}

.top-info {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-menu-bar {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-menu-bar li {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 14px;
    white-space: nowrap;
}

.list-unstyled li i {
    color: #7ed321;
    font-size: 16px;
    margin-right: 8px;

}

.left-social-icon li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

.left-social-icon li {
    padding: 5px 10px;
    ;
}

.left-social-icon li:hover {
    color: #123158;
    background: #7ed321;
}

.left-social-icon {
    list-style: none;
}

.social-topbar li a:hover {
    background: #7ed321;
    color: #000;
}

.small {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}




/* ================top-bar-end====================== */
/* ===========nav================== */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.js-header {
    position: relative;
}

.js-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    width: 165px;
}

.navbar-nav .nav-link {
    color: #111;
    font-weight: bolder;
    padding: 28px 18px;
    text-transform: uppercase;
    font-size: 14px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #0b3c5d;
}

.dropdown-menu.custom-dropdown {
    background: #0b3c5d;
    border-radius: 0;
    border: none;
    padding: 0;
    min-width: 260px;
}

.custom-dropdown .dropdown-item {
    position: relative;
    color: #ffffff;
    overflow: hidden;
    z-index: 1;
    padding: 12px 12px;
    ;
}

.custom-dropdown .dropdown-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5cbf3a;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: -1;
}

.custom-dropdown .dropdown-item:hover::before {
    transform: translateX(0);
}

.custom-dropdown .dropdown-item:not(:hover)::before {
    transform: translateX(-100%);
}


.dropdown-menu {
    margin-top: 0;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .nav-link:hover {
    border-top: 3px solid #5cbf3a;
}

/* ====================hero-section==================== */


.wrapper {
    overflow-x: hidden;
}

.hero-slide-1 {
    background-image: url(../images/hero-image-1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slide-2 {
    background-image: url(../images/hero-2.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slide-3 {
    background-image: url(../images/hero-3.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.slick-initialized .slick-slide {
    height: 470px;
    padding: 8rem 0;
}

.we-works h2 {
    color: #000;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 550px;
    ;
}

p.we-devlop-text {
    color: #5cbf3a;
    font-size: 18px;
    max-width: 500px;
    ;
}

.hero-section {
    position: relative;
}

.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 9;
}

.hero-prev,
.hero-next {
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: #7ed321;
    color: #000;
    transform: scale(1.1);
}


/* \\============welcome to asnj section===================// */
.welcome-text h2 {
    font-weight: 600;
    font-size: 40px;
}

p.film-established {
    color: #6a6a6a;
    font-size: 16px;
    margin: 31px 0px;
}

.services-section {
    border: 1px dashed #bbb;
}


.service-box {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}


.bg-green {
    background-color: #8BC34A;
}


.bg-grey {
    background-color: #f2f2f2;
}


.service-box i {
    font-size: 60px;
    margin-bottom: 15px;
    color: #000;
}


.service-box h6 {
    font-weight: 600;
    margin: 0;
}

.service-box-main {
    border: 1px dashed #123158;
}


/* ==========================about us ========================================== */
.about-us {
    background-image: url(../images/about-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10rem 0;
    position: relative;
}

.about-text h2 {
    font-weight: 600;
    font-size: 46px;
    ;
    color: #fff;
}

.about-text::after {
    content: "";
    display: block;
    width: 50px;
    border-bottom: 6px solid #5cbf3a;
    position: absolute;
    right: 47%;
    top: 60%;
}

.page-header {
    background-color: #0b3f63;
    padding: 30px 0;
}

.page-header h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.breadcrumb-nav {
    color: #ffffff;
    font-size: 16px;
}

.breadcrumb-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .active {
    opacity: 0.8;
}

.services-list h4 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.services-list h4::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #7dbb42;
    display: block;
    margin-top: 8px;
}

.services-list ul {
    list-style: none;
    padding: 0;
}

.services-list ul li {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    position: relative;
}

.services-list ul li a {
    text-decoration: none;
    color: #222;

}

.services-list ul li::before {
    content: "○";
    color: #7dbb42;
    margin-right: 10px;
}



.services-list ul li.active {
    font-weight: 600;
    color: #0b3f63;
}



.service-content.active {
    display: block;
}

.service-content h2 {
    font-weight: 700;
    font-size: 40px;
    ;
}

.service-content h2::after {
    content: "";
    width: 150px;
    height: 3px;
    background: #7dbb42;
    display: block;
    margin-top: 8px;
}

.service-content p {
    color: #9e9e9e;
    line-height: 1.7;
    font-size: 16px;
    ;
}

.numbering-text li {
    color: #9e9e9e;
    line-height: 1.7;
    font-size: 16px;
    ;
}

/* ================================about-us end======================= */
/* =================our-team======================== */

.team {
    padding: 50px 0 20px 0;
    background: #ffffff;
}


.team-title {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    position: relative;
    margin-bottom: 20px;
}


.team-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 140px;
    height: 6px;
    background: #6cc04a;
    filter: blur(4px);
}

.team p {
    font-size: 17px;
    line-height: 1.9;
    color: #9a9a9a;
    margin-bottom: 25px;
}


.team-line {
    width: 100%;
    height: 2px;
    background: #0a2c5d;
    margin: 2.5rem 0;
}

.auditing-section {
    padding: 4rem 0;
}

/* ==========================our-team-end=============================== */
/* =========================career========================================= */
.career {
    padding: 50px 0;
    background: #ffffff;
}

.career-text p {
    font-size: 18px;
    color: #9a9a9a;
    line-height: 1.8;
    margin: 0 auto;
}

.career-form label {
    font-size: 18px;
    font-weight: 600;
    color: #9a9a9a;
    margin-bottom: 5px;
    display: block;
}

.career-form .form-control {
    height: 50px;
    border-radius: 4px;
    border: 1px solid #666;
    font-size: 16px;
}

.career-form input[type="file"] {
    height: auto;
    padding: 10px;
}

.career-btn {
    border: 1px solid #999;
    background: #f5f5f5;
    color: #777;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 4px;
}

.career-btn:hover {
    background: #0a2c5d;
    color: #fff;
    border-color: #0a2c5d;
}

/* ==========================career-end=================== */

/* ====================news============================== */
.news-mumbering li {
    color: #9a9a9a;
    padding: 2px;

}

.news-mumbering li a {
    color: #9a9a9a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

/* ====================news-end================ */
/* ================contact-us==================== */
.contact {
    padding: 80px 0;
    background: #ffffff;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.contact-info .label {
    font-weight: 600;
    color: #9a9a9a;
    margin-top: 20px;
    margin-bottom: 5px;
}

.contact-info p {
    color: #9a9a9a;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.contact-info a {
    color: #9a9a9a;
    text-decoration: none;
}

.contact-info a:hover {
    color: #0a2c5d;
}

.contact-form label {
    font-size: 18px;
    font-weight: 600;
    color: #9a9a9a;
    margin-bottom: 4px;
    display: block;
}

.contact-form .form-control {
    height: 40px;
    border: 1px solid #666;
    border-radius: 3px;
    font-size: 16px;
}

.contact-form textarea.form-control {
    height: auto;
}

.send-btn {
    border: 1px solid #999;
    background: #f5f5f5;
    color: #777;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 4px;
}

.send-btn:hover {
    background: #0a2c5d;
    color: #fff;
    border-color: #0a2c5d;
}





/* ======================contact-end====================== */
/* =================footer============================= */
.footer-section {
    position: relative;
    padding: 70px 0;
    color: #fff;
}

.footer-image {
    background: linear-gradient(rgba(11, 60, 93, 0.95),
            rgba(11, 60, 93, 0.95)),
        url("../images/footer-image.webp") no-repeat center center / cover;
}

.footer-text {
    font-size: 15px;
    line-height: 26px;
    margin-top: 10px;
}

.footer-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-heading::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #7ed321;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 16px;
}

.footer-contact i {
    font-size: 26px;
    color: #7ed321;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #7ed321;
    color: #000;
}

.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    rotate: 180deg;
    background: #7ed321;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 50%;
}

.scroll-top {
    text-decoration: none;
}

.scroll-top i {
    color: #123158;
}

.footer-list li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
    ;
}


.footer-list li a:hover {
    color: #7ed321;
    padding-left: 6px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}


.footer-contact a:hover {
    color: #7ed321;
}

.footer-list li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}


.footer-list li a:hover {
    color: #7ed321;
    padding-left: 6px;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 0;
    margin-top: 50px;
}

.footer-copy {
    color: #ffffff;
    font-size: 15px;
}

.footer-copy a {
    color: #7ed321;
    text-decoration: none;
    font-weight: 600;
}

.footer-copy a:hover {
    text-decoration: underline;
}

.footer-bottom-social a {
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-bottom-social a:hover {
    color: #7ed321;
}

.footer-bottom-social a {
    text-decoration: none;
}

/* =======================footer-end======================== */

/* ===== RESPONSIVE ===== */

@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .top-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .top-menu-bar {
        gap: 15px;
    }

    .social-icon ul {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .top-info {
        flex-direction: column;
    }

    .nav-link {
        padding: 12px;
    }

    .top-info {
        flex-direction: column;
        gap: 8px;
    }


    .navbar-nav .nav-link {
        padding: 12px 10px;
    }


    .custom-dropdown {
        min-width: 100%;
    }

    .footer-heading {
        font-size: 22px;
    }

    .footer-section {
        padding: 50px 0;
    }

    .footer-copy {
        text-align: left;
        font-size: 14px;
    }

    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-arrows {
        padding: 0 15px;
    }

    .team-title {
        font-size: 36px;
    }


    .team p {
        font-size: 16px;
    }

    .career-text p {
        font-size: 16px;
    }

    .career-form label {
        font-size: 16px;
    }

    .contact-info {
        margin-bottom: 40px;
    }

    .footer-logo img {
        width: 150px;
    }

    .navbar-brand img {
        width: 113px;
        padding: 10px 0px;
    }

    .small {
        text-align: center;
    }

    .list-unstyled {
        display: block !important;
    }

    .list-unstyled li {
        justify-content: center;
    }

    .left-social-icon {
        justify-content: center !important;
    }

    .top-icon-location {
        flex-direction: column;
    }


}


@media (max-width: 576px) {

    .top-bar {
        padding: 10px 0;
    }

    .top-menu-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .top-menu-bar li {
        font-size: 13px;
        white-space: normal;
    }

    .social-icon ul {
        margin-top: 8px;
    }
}