:root {
    --bg: #EBEBEB;
    --blue: #005283;
    --dark-blue: #011A28;
    --orange: #E37A1C;
}

body {
    background-color: var(--bg) !important;
    font-family: "Nunito Sans", sans-serif !important;
    overflow-x: hidden;
}

section {
    padding-bottom: 60px;
    overflow-x: hidden !important;
}

.orange {
    color: var(--orange)
}

#lblError {
    color: red;
}

a {
    text-decoration: none !important;
}

p {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.8;
    text-align: justify;
    line-height: 30px;
}

h1,
h2 {
    color: var(--blue) !important;
}

h1 {
    font-size: 3rem !important;
    margin: 0;
    font-weight: 700 !important;

    line-height: 90% !important;
}

h2 {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
}

h4,
h5 {
    text-transform: uppercase !important;
    font-size: 1.3rem !important;
    letter-spacing: 0.125rem !important;
}

h5 {
    color: var(--blue) !important;
    font-weight: 700 !important;
}

h6 {
    font-size: 1.20rem !important;
    font-weight: 600 !important;
    line-height: 30px !important;
}

.btn1 {
    padding: 10px 20px;
    background-color: var(--orange);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--orange);
    border-radius: 5px;
    transform: scale(0);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn1:hover {
    background-color: #e3681c;
}

.btn1:hover::before {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}



.btn2 {
    padding: 10px 12px;
    background-color: none;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: 5px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn2:hover {
    color: #fff;
}

.btn2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--blue);
    border-radius: 5px;
    z-index: -1;
    border-radius: 0 0 50% 50%;
    height: 0%;
    transition: all 0.6s;
}

.btn2:hover::before {
    height: 200%;
}





/* navbar section */
.bgcolor {
    background-color: var(--bg) !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

#navbar-section {
    transition: all 0.6s;
}

.logo-wrapper {
    max-width: 250px;
    width: 100%;
}

.logo-wrapper img {
    width: 100%;
}

.nav-link {
    font-size: 1.1rem;
    color: var(--dark-blue) !important;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--orange) !important;

}

.dropdown-item {
    text-transform: uppercase !important;
}

@media screen and (max-width: 1199px) {
    .navbar-collapse {
        background-color: var(--bg);
    }
}


/* hero section */

.hero-wrapper {
    padding: 250px 0;
    padding-bottom: 200px;
}

.hero-container {
    width: 50%;
}

.hero-img {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    max-width: 1150px;
    width: 100%;

}

.vector-img {
    position: absolute;
    left: 0;
    top: 68%;
    z-index: -1;
    max-width: 200px;
    width: 100%;

}




/* services section  */
.service-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header-wrapper h2 {
    width: 65%;
}

.service-info-container {
    padding-top: 30px;
    padding-left: 30px;
    cursor: pointer;
    position: relative;
}

.service-info-container h5,
p {
    width: 80%;
    margin-bottom: 15px;
}

.service-info-container p {
    width: 90%;
    margin-bottom: 30px;
}

.service-img {
    max-width: 80px;
    width: 100%;
    filter: saturate(0);
    filter: brightness(0);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.view-btn-wrapper {
    display: flex;
    justify-content: end;

}

.view-btn {
    width: 100%;
    color: #fff;
    padding: 15px 30px;
    background-color: var(--blue);
    border: none;
    border-radius: 0 0 20px 0;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;


}

i {
    transition: all 0.3s ease;
}

.view-btn:hover i {
    transform: translateX(5px);
}

.service-info-container:hover .view-btn {
    background-color: var(--orange);
}

.service-info-container:hover .service-title {
    color: var(--orange) !important;
}

.service-info-container:hover .service-img {
    transform: scale(-1) rotate(180deg);

}

/* slick slider */
.slick-wrapper {
    margin-right: -400px;
    margin-top: 60px;
}

.slick-container {
    background-color: #fff;
    border-radius: 20px;
    margin: 10px;

}

.slick-container a {
    color: var(--dark-blue);
}

.slick-container a:hover {
    color: var(--dark-blue);
}

.slick-next {
    top: -534px !important;
    left: calc(((100% - 1320px) / 2 + 1053px)) !important;
    position: relative !important;
    border: 2px solid var(--dark-blue);
    padding: 15px;

}

.slick-testimonial .slick-next {
    top: -450px !important;
}

.slick-prev {
    top: -80px !important;
    left: calc(((100% - 1320px) / 2 + 960px)) !important;
    position: relative !important;
    border: 2px solid var(--dark-blue);
    padding: 15px;
}

.slick-next:before,
.slick-prev:before {

    font-size: 0rem !important;
    padding: 40px;
    z-index: 10;
    background-color: var(--yellow);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.6s;
}

.slick-prev:before {
    background-image: url("../Assets/prev.png");
    background-repeat: no-repeat;
    background-position: center;
}

.slick-next:before {
    background-image: url("../Assets/next.png");
    background-repeat: no-repeat;
    background-position: center;
}


.slick-prev:hover:before {
    background-image: url("../Assets/prevh.webp");
    background-repeat: no-repeat;
    background-position: center;
}

.slick-next:hover:before {
    background-image: url("../Assets/nexth.webp");
    background-repeat: no-repeat;
    background-position: center;
}

.service .slick-prev{
    position: absolute !important;
    top: 50% !important;
    left: -25px !important;
    z-index: 50 !important;
    transform: scale(0.8);
    
}



.service .slick-next{
    position: absolute !important;
    top: 50% !important;
    left: 97% !important;
    z-index: 50 !important;
    transform: scale(0.8);
}

.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
    display: none !important;
}

/* 
info section */

.service-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.service-img-wrapper {
    max-width: 500px;
    width: 100%;
    position: relative;
}

.pattern-img {
    width: 150px !important;
    position: absolute;
    bottom: 40px;
    pointer-events: none;
    left: -10px;
    opacity: 0.3;
    animation: slide-up-down 7s linear infinite;

}

@keyframes slide-up-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.service-img-wrapper img {
    width: 100%;
}

.service-content {
    width: 50%;
}

/* why choose section */
.why-choose-section {
    position: relative;


}

.vector-2 {
    position: absolute;
    top: 0px;
    right: 0px !important;
    z-index: -1;
    max-width: 200px;
    width: 100%;


}

.vector-3 {
    position: absolute;
    bottom: 10px;
    left: 0px !important;
    z-index: -1;
    max-width: 200px;
    width: 100%;

}

.why-choose-wrapper {
    margin-top: 60px;
}

.why-choose-container {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    margin: 10px;
    min-height: 250px !important;
    height: fit-content !important;
}

.tick-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


/* testing-section */
.testing-section {
    padding: 60px 0;
    background-image: url("../Assets/testingbg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 60px;
}



.testing {
    margin-top: 60px
}

.testing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;


}

.testing-name {
    font-size: 1.1rem !important;
    text-align: center !important;
    letter-spacing: 2px;
    font-weight: 600 !important;
    opacity: 1 !important;


}

.client {
    font-size: 1.28rem;
    font-weight: 700;
    opacity: 1 !important;
    margin-bottom: 0 !important;
    color: var(--blue);
}

.client-title {
    margin-bottom: 0 !important;
    width: 100% !important;
}

/* 
testimonial section */

.testimonial-container {
    position: relative;
    padding: 30px;
}

.quote {
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: rotate(-170deg);
    max-width: 100px;
    width: 100%;
}

/* cta section */

.cta-section {
    background-color: var(--dark-blue);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-head {
    width: 70%;
    text-align: center;
    margin: 0 auto;
}

.cta-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.vb-1 {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 200px;
    width: 100%;
    z-index: 0;
}

.vb-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    max-width: 200px;
    width: 100%;
}


/* footer section */
.footer-section {
    padding: 120px 0;
    background-image: url("../Assets/testingbg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
    gap: 30px;
    color: #fff;
}

.footer-container a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-container a:hover {
    color: var(--orange);
}

.footer-logo-wrapper {
    background-color: #fff;
    padding: 10px;
    max-width: 250px;
    width: 100%;
    margin-bottom: 30px;
}

.footer-logo-wrapper img {
    width: 100%;
}

.footer-logo-section {
    width: 30%;
}

.footer-link i {
    margin-top: 5px;
}




.footer-sub {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 15px;
}

.footer-sub a {
    color: #fff;
    margin-top: 5px !important;
    letter-spacing: 1px;
    font-size: 1rem;
    text-transform: uppercase;
}


.f-links a:hover {
    color: var(--orange) !important;
    opacity: 1;
}

.footer-sub a i {
    opacity: 0;
    transition: all 0.6s;
}

.footer-sub a:hover i {
    opacity: 1;
    color: var(--orange) !important;
    transform: translateX(6px);
}

.footer-sub a:hover {
    color: var(--orange);
}

.branch-name {
    margin-bottom: 0 !important;
    text-align: left !important;
}

.footer-branch {
    margin-bottom: 10px;
}


/* chatbot */
.chatbot-wrapper-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2000;
    border-radius: 7px;
    animation: zoomin 1.5s infinite linear;
    transform: scale(0.8);
}

@keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* media queries */

@media screen and (max-width: 1400px) {
    .hero-img {
        opacity: 0.4 !important;
        animation: none;
    }

    .testing-content {
        width: 20%;
    }


}

@media screen and (max-width: 1399px) {
    .slick-next {
        top: -600px !important;
        left: calc(((100% - 1320px) / 2 + 956px)) !important;
    }

    .slick-prev {
        top: -98px !important;
        left: calc(((100% - 1320px) / 2 + 854px)) !important;
    }

    .slick-testimonial .slick-next {
        top: -469px !important;
    }



}


@media screen and (max-width: 1370px) {
    .hero-img {
        max-width: 1000px;
    }

    .hero-wrapper {
        padding-bottom: 90px;
    }



    .vector-img {
        position: absolute;
        left: 0;
        top: 108%;
        z-index: -1;
        max-width: 140px;
    }

}



@media screen and (max-width: 1325px) {
    .slick-next {
        top: -492px !important;
    }

    .slick-testimonial .slick-next {
        top: -409px !important;
    }

    
}


@media screen and (max-width: 1294px) {
    .slick-next {
        top: -493px !important;

    }

}

@media screen and (max-width: 1200px) {
    .slick-wrapper {
        margin-right: 0px;
        margin-top: 40px;
    }

    .testing-content {
        width: 25%;
    }

    .slick-testimonial .slick-next {
        top: -469px !important;
    }

    .hero-wrapper {
        padding-top: 200px;
    }

    .slick-next {
        top: -521px !important;
    }

    .slick-testimonial .slick-next {
        top: -440px !important;
    }

    
.service .slick-next{
    left: 95% !important;  
}

}


@media screen and (max-width: 1023px) {

    .slick-next {
        top: -542px !important;
    }

    .slick-testimonial .slick-next {
        top: -432px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    p {
        font-size: 1.0625rem;
        line-height: 28px;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2.25rem !important;
    }

    h4,
    h5 {
        font-size: 1.375rem !important;
    }

    h6 {
        font-size: 1.15rem !important;
        line-height: 29px !important;
    }
}

@media screen and (max-width: 1199px) {
    .slick-testimonial .slick-next {
        top: -549px !important;
    }

    .slick-next {
        top: -550px !important;
    }

}



@media screen and (max-width: 991px) {

    .hero-container {
        width: 60%;
    }


    section {
        padding-bottom: 60px;
        overflow-x: hidden !important;
    }

    .testing-section {
        margin-bottom: 60px;
    }

    .hero-img {
        max-width: 700px;
    }

    .vector-img {
        display: none;
    }

    .hero-wrapper {
        padding-top: 200px;
        padding-bottom: 0;
    }

    .service-container {
        flex-direction: column;

    }

    .service-container-2 {
        flex-direction: column-reverse;
    }

    .service-content {
        width: 100%;
    }

    .testing-content {
        width: 50%;
    }

   
    .slick-next {
        top: -565px !important;
        left: calc(((100% - 1320px) / 2 + 918px)) !important;
    }

    .slick-prev {
        top: -42px !important;
        left: calc(((100% - 1320px) / 2 + 819px)) !important;
    }

    .slick-testimonial .slick-next {
        top: -456px !important;
    }

    .service-header-wrapper h2 {
        width: 100%;
    }

    
    .testimonial-container {
        position: relative;
        padding: 30px;
    }

    .footer-logo-section {
        width: 50%;
    }

    .cta-section {
        padding: 60px 0;
    }


    .footer-section {
        padding: 60px 0;
    }

    .testing-section {
        padding: 60px 0;
    }

    .service .slick-next{
        left: 93% !important;  
    }
}



/* Tablets (768px - 1023px) */


@media screen and (max-width: 780px) {
    .hero-container {
        width: 100%;
    }


    .hero-img {
        opacity: 0.2 !important;
        width: 100%;
        animation: none;
    }



    .hero-wrapper {
        padding-top: 150px;
        padding-bottom: 0;
    }

    .cta-head {
        width: 95%;
    }
}


@media (max-width: 767px) {
    p {
        font-size: 1rem;
        line-height: 28px;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h4,
    h5 {
        font-size: 1.25rem !important;
    }

    h6 {
        font-size: 1.1rem !important;
        line-height: 28px !important;
    }

    .service .slick-next{
        left: 90% !important;  
    }
}

@media screen and (max-width: 767px) {
    .slick-next {
        top: -451px !important;
        left: calc(((100% - 1320px) / 2 + 825px)) !important;
    }

    .slick-prev {
        top: -42px !important;
        left: calc(((100% - 1320px) / 2 + 732px)) !important;
    }

    .slick-testimonial .slick-prev {
        top: -13px !important;
    }

    .slick-testimonial .slick-next {
        top: -346px !important;
    }

    .vector-2,
    .vector-3 {
        opacity: 0.5;
    }

    .why-choose-wrapper {
        margin-top: 30px;
    }

    .vb-1,
    .vb-2 {
        opacity: 0.2;
    }
}







@media screen and (max-width: 576px) {
    .logo-wrapper {
        max-width: 200px;
        width: 100%;
    }

    .hero-wrapper {
        padding-top: 120px;
        padding-bottom: 0;
    }

    section {
        padding-bottom: 40px;
    }

    .testing-section {
        margin-bottom: 40px;
    }


    .testing-content {
        width: 100%;
    }

    .why-choose-container {
        min-height: fit-content !important;
        height: fit-content !important;
    }

    .chatbot-wrapper-1 {

        bottom: 30px;
        right: 30px;

    }

    .slick-next {
        top: 50% !important;
        transform: translateY(-50%) !important;
        position: absolute !important;
        left: 90% !important;
        transform: scale(0.6) !important;
    }

    .slick-prev {
        display: none !important;
    }

    .slick-testimonial .slick-next {
        top: 50% !important;
        transform: translateY(-50%) !important;
        position: absolute !important;
        left: 90% !important;
        transform: scale(0.6) !important;
    }

    .footer-logo-section {
        width: 100%;
    }

    .slick-wrapper {
        margin-top: 40px;
    }

}













@media screen and (max-width: 480px) {



    .service-info-container {
        padding-top: 30px;
        padding-left: 30px;
    }
}


/* other sections */
.sub-hero-section {
    position: relative;
    margin-top: 100px;
}

.subhero-img {
    width: 100%;
    object-fit: cover;
}

.subhero-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;

}

@media screen and (max-width: 767px) {
    .sub-hero-section {
        margin-top: 80px;
    }

    .subhero-img {
        height: 300px;

    }

}

@media screen and (max-width: 576px) {
    .sub-hero-section {
        margin-top: 70px;
    }

    .subhero-img {
        height: 250px;

    }

    .service-info-container h5,
    p {
        width: 100%
    }

}