@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --color-primary: #6b54a5;
    --color-secoundary: #f6b62c;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
}

.navbar-brand.logo img {
    width: 200px;
    height: auto;
}

.navbar-expand-lg .offcanvas {
    flex-grow: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 25px 0;
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
    min-width: max-content;
}

.navbar-expand-lg .navbar-nav .nav-item {
    margin: 0;
    margin-right: 36px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

.navbar-expand-lg .navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 50px;
    height: 2px;
    width: 0%;
    border-radius: 1px;
    background: var(--color-primary);
    transition: 0.3s;
}

.top_navbar {
    padding: 11px 0;
    background-color: var(--color-primary);
}

.top_navbar a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.top_navbar .social_list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: end;
    gap: 30px;
    align-items: center;
    font-size: 14px;
    height: 100%;
}

.hero-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary) !important;
    color: #fff !important;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.hero-carousel .owl-prev {
    left: 5%;
}

.hero-carousel .owl-next {
    right: 5%;
}

.hero-carousel .owl-nav button:hover {
    background-color: var(--color-secoundary) !important;
}

.section-padding {
    padding: 50px 0;
}

.about-section .content h3 {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 60px;
    margin-bottom: 30px;
}

.about-section .content h5 {
    width: max-content;
    background-color: var(--color-secoundary);
    margin-bottom: 30px;
    padding: 10px;
    font-size: 14px;
}

.custom-btn {
    appearance: button;
    background-color: var(--color-primary);
    border: 1px solid #6b54a5;
    border-radius: 4px;
    box-shadow: #fff 4px 4px 0 0, #000 4px 4px 0 1px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: ITCAvantGardeStd-Bk, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0 5px 10px 0;
    overflow: visible;
    padding: 12px 40px;
    text-align: center;
    text-transform: none;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}

.custom-btn:focus {
    text-decoration: none;
}

.custom-btn:hover {
    text-decoration: none;
}

.custom-btn:active {
    box-shadow: rgba(0, 0, 0, .125) 0 3px 5px inset;
    outline: 0;
}

.custom-btn:not([disabled]):active {
    box-shadow: #fff 2px 2px 0 0, #6b54a5 2px 2px 0 1px;
    transform: translate(2px, 2px);
}

@media (min-width: 768px) {
    .custom-btn {
        padding: 12px 50px;
    }
}


.our_value {
    height: 100%;
    text-align: center;
    border-radius: 10px;
    transition: all .3s ease-in-out;
    border: 1px solid #6b54a5;
    box-shadow: #fff 10px 10px 0 0, #000 10px 10px 0 1px;
    padding: 20px;
}

.our_value img {
    margin-bottom: 20px;
    width: 100px;
    margin: 20px auto 20px auto;
    display: block;
}

.our_value h3 {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: var(--color-primary);
}

.our_value:hover {
    background-color: var(--color-primary);
    transform: translate(0px, -10px);
    box-shadow: var(--color-secoundary) 10px 10px 0 0;
    transition: all .3s ease-in-out;
}

.our_value:hover p,
.our_value:hover h3 {
    color: #fff;
}

.our_value:hover img {
    filter: brightness(0) invert(1);
}

.headlines h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 60px;
    margin-bottom: 30px;

}

.why-choose-us {
    background: linear-gradient(90deg, #fff 50%, #6b54a5 50%);
}

.why-choose-us ul {
    padding: 0;
    list-style: none;
}

.why-choose-us ul li {
    color: #fff;
    padding-left: 20px;
    margin-bottom: 2rem;
}

.why-choose-us ul li h3 {
    position: relative;
    color: #f6b62c;
    font-size: 20px;
    font-weight: bold;
}

.why-choose-us ul li h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 20px;
    background-color: #f6b62c;
    bottom: 0;
    left: 0;
    transform: translate(-60px, 0px);
}

.services-box {
    /* border: 1px solid #ffffff59; */
    color: #fff;
    padding: 50px;
    border-radius: 30px;
}

.services-box img {
    width: 80px !important;
    margin-bottom: 20px;
}

.services-box h3 {
    color: #fff;
    padding-bottom: 50px;
    font-size: 20px;
    position: relative;
    font-weight: bold;
}

.services-box h3::after {
    content: '';
    position: absolute;
    max-width: 230px;
    width: 100%;
    height: 5px;
    background-color: #f6b62c;
    bottom: 0;
    left: 0;
    transform: translate(0px, -25px);
}

.serives-carousel {
    position: relative;
    padding-top: 50px;
}

.serives-carousel .item {
    height: 100%;
}

.services-box ul li {
    font-weight: bold;
    /* color: var(--color-primary); */
}

.serives-section {
    position: relative;
}

.serives-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 490px;
    background: url("../img/background/services-bg.webp") no-repeat center center;
    background-size: auto;
    background-position: unset;
    left: 0;
    z-index: -1;
}

.industries_serve ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.industries_serve ul li {
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.industries_serve ul li img {
    width: 50px;
}

.industries_serve ul li h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-secoundary);
}

.statutory_compliance .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.statutory_compliance ul {
    padding: 0;
    margin: 0;
}

.statutory_compliance ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    margin-bottom: 70px;
    border: 1px solid #483491;
    border-radius: 10px;
    box-shadow: #fff 10px 10px 0 0, #f6b62c 10px 10px 0 1px;
}

.statutory_compliance ul li:last-child {
    margin-bottom: 0;
}

.statutory_compliance ul li img {
    width: 50px;
}

.statutory_compliance ul li h3 {
    font-size: 20px;
}

.statutory_compliance .left_side li {
    position: relative;
}

.statutory_compliance .left_side li::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #f6b62c;
    right: 0;
    transform: translate(50px, 4px);
    z-index: -1;
}

.our_core_value {
    padding: 10px;
    border: 1px solid #6b54a5;
    height: 100%;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s;
}

.our_core_value:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translate(0px, -10px) scale(1.02);
    transition: all 0.3s;
}

.our_core_value img {
    width: 80px;
    margin: 0 auto 20px auto;
    display: block;
}

.our_core_value .title {
    display: grid;
    place-content: center;
}

.our_core_value h3 {
    padding: 10px 20px;
    background-color: #f6b62c;
    font-size: 18px;
    width: max-content;
    border-radius: 6px;
}



.our_core_value .details p {
    margin: 0;
    background: var(--color-primary);
    color: #fff;
    min-height: 200px;
    padding: 20px;
    border-radius: 10px;
}

.process_flow_point {
    justify-content: end;
    margin-top: 50px;
    gap: 0 50px;
}

.process_flow_point .point {
    box-shadow: #6b54a5 6px 6px 0 0;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    display: grid;
    place-content: center;
    border: 1px solid #6b54a5;
    height: 100%;
}

.process_flow_point .point h3 {
    font-size: 16px;
}

.process_flow_point .point.one,
.process_flow_point .point.two {
    position: relative;
}

.process_flow_point .point.two::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translate(-8px, 25px);
    border-radius: 50%;
}

.process_flow_point .point.two::before {
    content: "";
    display: block;
    width: 23%;
    height: 5px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translate(-100%, 31px);
}

.process_flow_point .point.one::before {
    content: "";
    display: block;
    width: 40%;
    height: 5px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translate(-100%, 31px);
}






.process_flow_structure {
    text-align: center;
    margin-top: 150PX;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.process_flow_structure img {
    width: 80px;
}

.process_flow_structure .top .process_flow_card {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

.process_flow_card h5 {
    font-size: 16px;
}




.process_flow_structure .top {
    position: relative;
    transform: translateY(-50%);
}

.process_flow_structure .bottom {
    transform: translateY(50%);
    position: relative;
}

.process_flow_structure .top::after {
    content: "";
    display: block;
    width: 75%;
    height: 2px;
    position: absolute;
    bottom: 0;
    background-color: #000;
    rotate: 30deg;
    right: 0;
    transform: translate(40%, -45px);
}

.process_flow_structure .bottom::after {
    content: "";
    display: block;
    width: 75%;
    height: 2px;
    position: absolute;
    top: 0;
    background-color: #000;
    rotate: 152deg;
    right: 0;
    transform: translate(-48%, -36px);
}

.process_flow_structure .bottom:last-child::after {
    display: none;
}

.our_process img {
    width: 100%;
    height: 100%;
}

.our_process .left ul {
    list-style: none;
}

.our_process .left {}

.our_process .left ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.our_process .right ul li:last-child,
.our_process .left ul li:last-child {
    margin: 0;
}

.our_process .left ul img {
    width: 70px;
}








.our_process .right ul {
    list-style: none;
}

.our_process .right ul li {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.our_process .right ul img {
    width: 70px;
}


.errorMsgArrow{
    color: red;
    font-size: 14px;
}

footer.footer{
    background: url("../img/background/footer-bg-3.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}





.statutory_compliance .right_side li {
    position: relative;
}

.statutory_compliance .right_side li::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #6b54a5;
    left: 0;
    transform: translate(-50px, 4px);
    z-index: -1;
}

.footer_social a {
    position: relative;
    color: #1C2539;
    content: "";
    background: #E8E8E8;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    font-size: 16px;
    display: grid;
    place-content: center;
    transition: 0.3s;
}

.footer_social a:hover {
    background-color: #6b54a5;
    color: #fff;
    transition: 0.3s;
}

.footer ul {
    padding: 0;
    list-style: none;
}

.footer ul li {
    line-height: 26px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #000;
    list-style: none;
}

.footer ul li a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.footer ul li a i {
    font-size: 14px;
    margin-right: 10px;
}

.impotlink {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.24;
    color: #1c2539;
    font-weight: bold;
}

.footer .single {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer .single .icon {
    margin-right: 25px;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.footer .single .icon i {
    list-style: none;
    position: relative;
    z-index: 1;
    color: #b36d00;
}

.footer .single .info span {
    display: block;
    color: #5D666F;
    font-size: 15px;
    font-weight: 400;
}

.footer .single .info a {
    color: #1C2539;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    line-height: 22px;
}

.contact-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: linear-gradient(135deg, #6b54a5, #6b54a5);
    padding: 40px;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.social-links {
    margin-top: 30px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #6b54a5;
    transform: translateY(-3px);
}

.contact-form {
    padding: 40px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0062cc;
    box-shadow: none;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.btn-submit {
    background: linear-gradient(135deg, #0062cc, #0096ff);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
}

.map-container {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.breadcrumb-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../img/about/breadcrumb.webp);
}

.breadcrumb-section h3 {
    color: #fff;
    margin-bottom: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 30px;
    background: #fff;
    border-radius: 31px;
    box-shadow: 0px 9px 18px rgba(24, 16, 16, 0.05);
    max-width: max-content;
    margin-left: auto;
}


.breadcrumb-section .breadcrumb a {
    margin-right: 5px;
    font-weight: 500;
    color: #000;
}

.breadcrumb-section .breadcrumb .breadcrumb-item.active {
    margin-left: 5px;
    color: #6b54a5;
    margin-right: 0;
    font-weight: 700;
}

.cta-two-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 90px 0;
}

.cta-two-wrapper .title-area {
    width: 70%;
}

.cta-two-wrapper .title-area .title {
    color: #fff;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 40px;
    line-height: 53px;
}

.rts-btn {
    padding: 17px 30px;
    min-width: max-content;
    font-size: 16px;
    line-height: 21px;
    font-weight: 700;
    border-radius: 15px;
    background: #fff;
    color: #b36d00;
}








@media (max-width:991px) {
    .industries_serve ul {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .top_navbar {
        display: none;
    }
}

@media (max-width:768px) {
    .why-choose-us {
        background: linear-gradient(180deg, #fff 50%, #6b54a5 50%);
    }

    .statutory_compliance .left_side li::after,
    .statutory_compliance .right_side li::after {
        display: none;
    }

    .about-section .content h3 {
        font-size: 40px;
    }

    .why-choose-us img {
        margin-bottom: 50px;
    }

    .headlines h2 {
        font-size: 40px;
    }

    .serives-carousel {
        padding-top: 0;
    }

    .our_process .right ul li {
        justify-content: start;
        flex-direction: row-reverse;
        margin-bottom: 35px;
    }

    .our_process .img img {
        width: 250px;
        margin: 0 auto;
        height: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        display: block;
    }

    .our_process .right ul img,
        .our_process .left ul img {
        width: 50px;
    }

    .our_process .left ul li {
        margin-bottom: 35px;
    }
}

@media (max-width:568px) {

    .why-choose-us ul {
        padding: auto;
    }

    .services-box {
        padding: 20px;
    }
}