@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    cursor: default;
    font-family: 'Montserrat', sans-serif !important;
}

html, body {
    scroll-behavior: smooth;
}

:root {
    --color-primary: #33c6e5;
    --color-secondary: #212121;
    --color-dark: #3f6193;
    --color-paragraph: #212529;
    --color-white: #ffffff;
    --color-black: #000000;
    --card-shaddow: 0 4px 34px #00000021;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    color: var(--color-secondary);
}

i, .fa-solid {
    font-family: "Font Awesome 6 Free" !important;
}

figure {
    margin: 0;
}

.c-pointer {
    cursor: pointer;
}

a, a:hover {
    text-decoration: none;
    color: unset;
    cursor: pointer;
}

ul {
    padding: 0;
}

li {
    list-style: none;
}

a * {
    cursor: pointer;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.h3, h3 {
    font-size: 22px;
}

.text-primary {
    color: var(--color-primary) !important;
}

.btn {
    padding: 12px 20px;
    font-size: 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: fit-content;
    transition: 0.3s ease-in-out;
    white-space: nowrap;
    min-width: 150px;
    justify-content: center;
}

    .btn i {
        font-size: 14px;
    }

    .btn.btn-primary {
        background: var(--color-primary);
        color: var(--color-white);
        border-color: var(--color-primary);
    }

        .btn.btn-primary:hover {
            border-color: var(--color-primary);
            background: none;
            color: var(--color-primary);
        }

.card {
    border: none;
    box-shadow: var(--card-shaddow);
}
/*header css start */
.navbar-toggler-icon svg {
    width: 30px !important;
    height: 30px !important;
}

.navbar-brand {
    outline: none !important;
}

.responsive-btn1 {
    background: var(--color-primary);
    padding: 3px 7px;
    border-radius: 5px;
    color: var(--color-white);
    margin: 0 !important
}

.navbar-toggler-icon {
    margin: 0 !important;
}

.navbarextra .logo {
    width: 230px;
    transition: all .3s linear;
}

.dropdown-nav {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.navbar-toggler-icon img {
    max-width: 60px;
}

.responsive-btn {
    display: none !important;
}

.navbtn {
    display: block;
}

.site-header a.nav-link {
    font-size: 16px;
    color: #3d3d3d;
    font-weight: 500;
}

.site-header .navbar-nav {
    gap: 15px;
    margin-right: 20px !important;
}

.nav-contact-btn {
    gap: 15px !important;
}

.site-header .navbar {
    padding: 13px 15px;
}


.nav-btn {
    background: #33c6e5;
    margin: 0 !important;
    border-radius: 30px;
    color: #fff !important;
    white-space: nowrap;
    border: 1px solid var(--color-primary);
    transition: 0.4s ease-in-out;
}

    .nav-btn a {
        padding: 7px 15px;
        display: block;
    }

    .nav-btn:nth-child(2) {
        background: none;
        border: 1px solid var(--color-black);
        color: var(--card-shaddow) !important;
    }

    .nav-btn:hover {
        background: transparent;
        color: var(--color-primary) !important;
        border-color: var(--color-primary) !important;
    }

.dropdown:has(.dropdown-menu):hover > .dropdown-menu {
    display: block;
    padding: 1rem 1rem;
    border-radius: 10px;
    border-bottom: 2px solid #33c6e5 !important;
}

.dropdown-menu .dropdown-item {
    padding: 4px 8px !important;
    align-items: center;
}

img.custom-nav-icons {
    width: 25px;
    max-width: 25px;
    height: 25px;
}

.mega-menu-item-style {
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
    color: #000000;
    background-color: #c6f5ff;
    border-radius: 4px;
}

.py-7 {
    padding: 70px 0;
}

body:has(.home-page-index) .site-header {
    background: var(--color-white);
    position: fixed;
    width: 100%;
    z-index: 1024;
    box-shadow: var(--card-shaddow);
}

.navbar-nav .disabled-nav {
    background-color: none !important;
}




/*Bounce Effect */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.bounce-effect-icon {
    display: inline-block;
    animation: bounce 3s infinite;
}
/*Rotate Effect */
.rotate-effect {
    animation: rotateInfinite 10s linear infinite;
}

@keyframes rotateInfinite {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*Pulse Effect */
.pulse-effect-icons {
    display: inline-block;
    transform: perspective(1000px);
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/*Wobble Effect */
.wobble-effect-icon {
    display: inline-block;
    animation: wobble 8s infinite ease-in-out;
}

@keyframes wobble {
    0% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(-2px) rotate(-5deg);
    }

    30% {
        transform: translateX(10px) rotate(3deg);
    }

    45% {
        transform: translateX(-2px) rotate(-3deg);
    }

    60% {
        transform: translateX(10px) rotate(2deg);
    }

    75% {
        transform: translateX(-5px) rotate(-1deg);
    }

    100% {
        transform: translateX(0);
    }
}

/* Vibrate Effect */
@keyframes vibrate {
    0%,10%,20%,30%,40%,50%,60% {
        transform: translate(1px, 1px) rotate(0deg);
    }


    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}


.vibrate-high {
    animation: vibrate 3s linear infinite;
}

/*******************header END***************/
/*header css legend */
/*new homepage css start */


body:has(.home-page-index) .word-words-appreciation, body:has(.home-page-index) .Testimonials {
    display: none;
}

body:has(.home-page-index) .site-header .navbar-collapse {
    padding: 0 !important;
}

.custom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px
}

.home-hero-video {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
}

.hero-home {
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

    .hero-home:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000000b5;
    }

    .hero-home h1 {
        font-size: 92px;
    }

    .hero-home p {
        font-size: 28px;
    }

.txt-bx {
    z-index: 1;
}

.count-box {
    width: 18%;
}

.col-certificate {
    width: 20%;
}

.position-unset {
    position: unset;
}

.achivements {
    text-align: center;
    text-transform: capitalize;
    background-image: linear-gradient(182deg, #fff, #b4f0ff52);
    padding: 30px 20px;
    border-radius: 15px;
    height: 100%;
}

    .achivements h2.counter {
        font-size: 60px;
        font-weight: 700;
        color: #33c6e5;
    }

    .achivements h2 {
        color: #33c6e5;
    }

    .achivements p {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 0;
    }

.about-content {
    padding-right: 100px;
}

about-content p {
    line-height: 28px;
}

.sub-title-tag {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #33c6e5;
    position: relative;
    white-space: nowrap;
    max-width: fit-content;
}

    .sub-title-tag:after {
        content: "";
        position: absolute;
        right: -70px;
        top: 10px;
        background: #212121;
        width: 60px;
        height: 1px;
    }

.sub-title-tag-double:before {
    content: "";
    position: absolute;
    left: -70px;
    top: 10px;
    background: #212121;
    width: 60px;
    height: 1px;
}

.text-white .sub-title-tag-double:before, .text-white .sub-title-tag:after {
    background: #fff;
}

.page-heading h2 {
    font-size: 50px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 0;
}

.page-heading.text-white :is(h1, h2, h3, h4,h5,h6, p, span) {
    color: #ffffff;
}

.services-section, .recognition-section {
    background-image: url('../images/services-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-card-box {
    background: #ffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 24px #0000000f;
    position: relative;
    height: 100%;
}

    .service-card-box:before {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-image: url('../images/service-shape.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 183px;
        height: 203px;
    }

    .service-card-box h3 {
        font-size: 20px;
    }

    .service-card-box p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* number of lines to show */
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .service-card-box .btn {
        padding: 10px;
        font-size: 15px;
        font-weight: 500;
    }

.case-study-section, .tech-section {
    background-image: url('../images/case-study-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.technology-card {
    background: none;
    border: 1px solid #ffffff33;
    border-radius: 20px !important;
}

.case-content {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

    .case-content span {
        padding: 6px 10px;
        font-size: 15px;
        border: 1px solid #ffffff;
        border-radius: 30px;
        background: #0000008a;
    }

    .case-content h3 {
        margin: 15px 0 0;
        font-size: 20px;
        font-weight: 500;
    }

.blog-box {
    background: #fff;
    box-shadow: var(--card-shaddow);
    border-radius: 10px;
    overflow: hidden;
}

.blog-content-box {
    padding: 15px;
}

    .blog-content-box span {
        font-size: 15px;
        font-weight: 500;
    }

    .blog-content-box h3 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* number of lines to show */
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

.read-more-btn {
    color: var(--color-primary);
    font-weight: 500;
    position: relative;
    text-decoration: underline !important;
    font-size: 15px;
    font-weight: 400;
}

    .read-more-btn::after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900; /* solid style */
        content: "\f178"; /* chevron-right */
        margin-left: 6px; /* space between text and icon */
        display: inline-block;
    }

.case-study-box {
    overflow: hidden;
    border-radius: 20px;
}

    .case-study-box img {
        transition: .5s ease-in-out;
    }

    .case-study-box:hover img {
        transform: scale(1.2);
    }

.industry-card {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    padding-bottom: 20px;
    margin: 0 10px;
    position: relative;
    height: 390px;
}

    .industry-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s ease-in-out;
    }

    .industry-card:hover img {
        transform: scale(1.2);
    }

    .industry-card h4 {
        font-size: 21px;
        font-weight: 700;
        margin: 15px;
        color: var(--color-white) !important;
    }

    .industry-card p {
        margin: 0 15px 10px 15px;
        opacity: 0.9;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3; /* number of lines to show */
        line-clamp: 3;
        -webkit-box-orient: vertical;
        color: var(--color-white) !important;
    }

.industry-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-image: linear-gradient( 0deg, black, transparent);
}

.accordion-button:not(.collapsed) {
    color: var(--color-primary) !important;
}

.answer-list {
    padding-left: 1.5rem;
}

    .answer-list li {
        list-style: disc;
    }
/* Arrows */
.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    background: #33c6e5;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

    .slick-prev i,
    .slick-next i {
        color: #fff;
        font-size: 18px;
    }

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

    .slick-next i, .slick-prev i {
        cursor: pointer;
    }

    .slick-prev:before, .slick-next:before {
        display: none;
    }

    .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
        background: var(--color-secondary)
    }

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin: 0 15px;
    min-height: 408px;
}

    .testimonial-card .stars {
        color: #E9A557;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.8;
        color: #333;
    }

.user-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

    .user-info img {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
    }

    .user-info h6 {
        margin: 0;
        color: #33c6e5;
        font-weight: 700;
    }

    .user-info span {
        font-size: 14px;
        color: #777;
    }

/* Arrows */
.slick-prev,
.slick-next {
    width: 45px;
    height: 45px;
    background: #33c6e5;
    border-radius: 50%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

    .slick-prev i,
    .slick-next i {
        color: #fff;
        font-size: 18px;
    }

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

/* Custom dot bars */
.slick-dots {
    position: relative;
    margin-top: 40px;
}

    .slick-dots li {
        width: auto;
        margin: 0 4px;
    }

        .slick-dots li .dot-bar {
            width: 15px;
            height: 3px;
            background: #d7d7d7;
            display: block;
            border-radius: 50px;
        }

        .slick-dots li.slick-active .dot-bar {
            background: #33c6e5;
        }

.testimonial-slider .slick-list {
    padding: 30px 0;
}

.map-image {
    position: absolute;
    right: 0;
    top: 35%;
    transform: translatey(-50%);
}

.testimonial-lhs {
    z-index: 1;
}

    .testimonial-lhs .slick-dots {
        max-width: 500px;
        border: 1px solid #3d3d3d1f;
        padding: 16px;
        margin-left: 15px;
        border-radius: 40px;
        margin-top: 0;
    }

        .testimonial-lhs .slick-dots li {
            display: inline-flex;
            align-items: center;
        }

    .testimonial-lhs .slick-prev, .testimonial-lhs .slick-next {
        bottom: -41px;
        top: unset;
    }

    .testimonial-lhs .slick-prev {
        left: 22px;
    }

    .testimonial-lhs .slick-next {
        right: unset;
        left: 464px;
    }

.certificate-card {
    padding: 20px;
    border-radius: 15px;
    height: 100%;
    transition: 0.2s ease-in-out;
}

    .certificate-card:hover {
        box-shadow: 0 0 20px #33c6e53d;
        transform: translateY(-5px);
    }

    .certificate-card h3 {
        color: var(--color-primary);
    }

    .certificate-card figure {
        height: 164px;
    }

    .certificate-card p {
        max-width: 75%;
        margin: 0 auto;
    }

    .certificate-card figure img {
        height: 100%;
        object-fit: contain;
    }

.tech-tab-lhs {
    width: 160px;
}

.tech-tab-lhs {
    width: 240px;
    background: #3f61935e;
    padding: 15px;
    border-radius: 15px;
}

.tech-tab-rhs {
    width: calc(100% - 265px);
}

.tech-tab-lhs li button {
    color: var(--color-white);
    opacity: .7;
    padding: 9px 0;
    font-size: 16px;
    text-align: left;
    position: relative;
}


.tech-tab-lhs li .nav-link.active:after {
    position: absolute;
    content: "";
    height: 80%;
    width: 4px;
    background: var(--color-primary);
    left: -15px;
    transform: translateY(-50%);
    margin: auto;
    top: 50%;
    border-radius: 0 30px 30px 0;
}

.tech-tab-lhs li .nav-link.active {
    opacity: 1;
    background: none;
    color: var(--color-primary);
}

.tech-tab-lhs li .nav-link:hover {
    color: var(--color-white);
    opacity: 1;
}

.tech-card {
    background-image: linear-gradient(182deg, #ffffff, #e6faff);
    width: 191px;
    height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border-radius: 70px 0 !important;
}

    .tech-card img {
        max-width: 120px;
        height: 40px;
        object-fit: contain;
    }

    .tech-card:hover {
        transform: scale(1.05)
    }

.faq-box .accordion-button {
    background: var(--color-white);
    box-shadow: none !important;
    border-radius: 16px !important;
    padding: 25px;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-box .accordion-item:hover {
    box-shadow: 0 0 20px #33c6e53d !important;
}

.faq-box .accordion-button:not(.collapsed) {
    background: #fff;
    box-shadow: none;
}

.faq-box .accordion-item {
    background: #fff;
    border-radius: 16px !important;
}

.faq-box .accordion-button::after {
    filter: invert(0);
    width: 20px;
    height: 20px;
}

.accordion-button::after, .accordion-button:not(.collapsed)::after {
    background-image: url(../images/arrow-down.png);
    background-size: contain;
    background-position: center;
}

.contact-section {
    background-image: url(../images/contact-bg-new.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.contact-form-box {
    background: #21212145;
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid #0000003b;
}

.form-control {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--color-white) !important;
    padding: 25px 14px;
    border-radius: 8px;
    font-size: 15px;
}

    .form-control::placeholder {
        color: rgba(255,255,255,0.5);
    }

.submit-bar {
    background: linear-gradient(to right, #33c8ff, #3be0ff);
    padding: 14px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    border: none;
    transition: 0.4s ease-in-out;
}

    .submit-bar:hover {
        background: var(--color-white);
        color: var(--color-primary) !important;
    }

    .submit-bar i {
        background: var(--color-white);
        color: var(--color-black);
        padding: 4px 8px;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.4s ease-in-out;
    }

    .submit-bar:hover i {
        background: var(--color-primary);
        color: var(--color-white);
    }

.awards-sec:before {
    content: '';
    position: absolute;
    right: 0;
    background-image: url(../images/about-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 805px;
    z-index: -1;
    top: -550px;
}

.about-sec:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/about-shape.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 440px;
    height: 403px;
}
/*new homepage css end */
/*footer css start*/
.top-footer h3 {
    font-size: 1.0rem;
    line-height: 1.5;
    /* color: #fff; */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.top-footer {
    padding-top: 50px;
}

    .top-footer h3 {
        font-size: 18px;
        font-weight: 600;
        color: var(--color-dark);
    }

    .top-footer a {
        font-size: 15px;
        font-weight: 400;
        margin: 8px 0;
        line-height: 2;
        position: relative;
        transition: 0.4s ease-in-out;
    }

        .top-footer a:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--color-primary);
            transition: 0.4s ease-in-out;
        }

    .top-footer .vertical-about a:after {
        display: none;
    }

    .top-footer a:hover:after {
        width: 100%;
    }

    .top-footer a:hover {
        color: var(--color-primary)
    }

    .top-footer p {
        line-height: 1.5;
    }

.s-txt-a {
    color: var(--color-primary);
}

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 12px;
    max-width: 57px;
}

    .back-to-top img {
        width: 100%;
        object-fit: contain;
    }

.footer-bottom {
    padding: 10px 0;
    background: #f9f9f9;
}
/*footer css end*/
.btn-whatsapp {
    position: fixed;
    bottom: 50%;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
    animation: pulse 1s infinite ease-in-out alternate;
}

    /* SVG size */
    .btn-whatsapp img {
        width: 46px;
        height: 46px;
    }

@keyframes pulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}


/*******************qouteform-modal***************/

.sec-heading-sml {
    font-size: 1.5rem;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
    color: var(--clr-b);
}

form[name="request-quote"] label {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.qouteform.modal {
    padding: 0px !important;
}

    .qouteform.modal .modal-dialog {
        width: 55%;
        margin: 8vh auto 0px;
        max-width: unset !important;
        padding: 0px 20px;
    }

@media(max-width: 991px) {
    .qouteform.modal .modal-dialog {
        width: auto;
    }
}

.qouteform.modal .modal-body {
    padding: 15px 0px 35px;
}

.qouteform.modal .form-row {
    justify-content: space-between;
}

.qouteform.modal .sec-heading:nth-child(2) {
    padding: 30px 0px;
    font-weight: 800;
    color: var(--clr-b);
}

.qouteform.modal .sec-heading > .sub-heading {
    margin-top: 10px;
    color: var(--clr-d);
    font-size: .9rem;
}

.qouteform.modal .form-group input {
    padding-left: 50px;
}

.qouteform.modal .sec-heading {
    text-align: center;
}

    .qouteform.modal .sec-heading span, .qouteform.modal .sec-heading-sml {
        color: var(--color-primary);
    }

.qouteform.modal input, .qouteform.modal select {
    border: 1px solid #dddddd;
    color: var(--color-paragraph);
}

.qouteform.modal select {
    padding: 0 15px;
    height: 52px;
}

.qouteform.modal input.btn {
    color: var(--color-white) !important;
    margin: 0 auto;
}

.qouteform.modal input.btn:hover {
    color: var(--color-primary) !important;
}

.qouteform.modal input::placeholder, .qouteform.modal .form-control {
    color: var(--color-paragraph) !important;
}

.qouteform.modal input[type='file'] {
    padding: 14px 60px;
    height: 52px;
}

.qouteform.modal .form-group i {
    position: absolute;
    left: 24px;
    top: 17px;
    color: var(--color-primary);
}


/*******************qouteform-modal***************/



@media(min-width:1200px) {
    header.site-header:not(.scrolled) {
        background: transparent;
        box-shadow: none;
    }

        header.site-header:not(.scrolled) .navbar-brand.logo img {
            filter: brightness(0) invert(1);
        }

        header.site-header:not(.scrolled) a.nav-link {
            color: var(--color-white) !important;
        }

        header.site-header:not(.scrolled) .nav-btn:nth-child(2):not(:hover) {
            border-color: var(--color-white) !important;
            color: var(--color-white);
        }

        header.site-header:not(.scrolled) .nav-btn:not(:hover) a {
            color: var(--color-white);
        }
}

@media(max-width:1500px) {
    .slick-next {
        right: -10px;
    }

    .slick-prev {
        left: -10px;
    }
}

@media(max-width:1400px) {
    .map-image {
        max-width: 700px;
        right: 15px;
    }

    .hero-home h1 {
        font-size: 72px;
    }

    .hero-home p {
        font-size: 22px;
    }

    .achivements h2.counter {
        font-size: 50px;
    }

    .achivements p {
        font-size: 16px;
    }

    .page-heading h2 {
        font-size: 40px;
    }

    .service-card-box h3 {
        font-size: 20px;
    }

    .site-header .navbar-nav {
        gap: 0 !important;
        margin-right: 10px !important;
    }

    .nav-contact-btn {
        gap: 5px !important;
    }
}

@media(max-width:1200px) {
    .map-image {
        max-width: 580px;
    }

    .col-certificate {
        width: 33%;
        margin-bottom: 25px;
    }
}

@media(max-width:1200px) {
    .hero-home h1 {
        font-size: 52px;
    }

    .count-box {
        width: 31%;
    }

    .site-header a.nav-link {
        padding: 0;
    }

    .nav-contact-btn {
        gap: 15px !important;
        display: flex;
    }

    .custom-nav-scrollbar {
        margin-top: 20px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .map-image {
        display: none;
    }
}

@media(max-width:993px) {


    .testimonial-lhs .slick-dots {
        max-width: 100%;
    }

    .testimonial-lhs .slick-next {
        right: 7px;
        left: unset;
    }

    .testimonial-lhs .slick-dots {
        margin: 0;
    }

    .testimonial-lhs .slick-prev {
        left: 7px;
    }
}

@media(max-width:768px) {
    .hero-home h1 {
        font-size: 42px;
    }

    .hero-home p {
        font-size: 16px;
    }

    .btn {
        padding: 14px;
        font-size: 16px;
    }

    .achivements h2.counter {
        font-size: 40px;
    }

    .achivements {
        padding: 15px 10px;
    }

    .page-heading h2 {
        font-size: 34px;
    }

    .case-study-box {
        max-width: 380px;
        object-fit: cover;
        margin: 0 auto 20px;
    }

    .col-certificate {
        width: 50%;
    }

    .py-7 {
        padding: 40px 0;
    }

    .tech-card {
        width: 46%;
    }

    br {
        display: none;
    }

    .tech-tab {
        flex-direction: column;
    }

    .tech-tab-lhs .nav {
        flex-direction: row !important;
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        overflow: auto;
    }

    .tech-tab-lhs {
        width: 100% !important;
        margin-bottom: 20px;
    }

        .tech-tab-lhs li .nav-link {
            white-space: nowrap;
        }

    .tech-tab-rhs {
        width: 100%;
    }

    .tech-card {
        width: 47%;
    }
}

@media(max-width:575px) {
    .hero-home h1 {
        font-size: 32px;
    }

    .count-box {
        width: 47%;
    }

    .page-heading h2 {
        font-size: 28px;
    }

    .slick-next {
        right: 0;
    }

    .slick-prev {
        left: 0;
    }

    .about-sec:before {
        display: none;
    }
}

@media(max-width:480px) {
    .hero-home h1 {
        font-size: 30px;
    }

    .tech-card {
        width: 100%;
        height: 100%;
    }

    .col-certificate {
        width: 100%;
    }

    .h3, h3 {
        font-size: 18px;
    }

    .navbarextra .logo {
        width: 170px;
        transition: all .3s linear;
    }

    .industry-sec-area {
        overflow: hidden;
    }
}

@media(max-width:420px) {
    .count-box {
        width: 100%;
    }

    .page-heading h2 {
        font-size: 23px;
    }

    .case-content h3 {
        font-size: 18px;
    }
}
