* {
    margin: 0;
    padding: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700,800&display=swap");
@import url("../fonts/bignoodletitling_font.css");

/* Start - Global Settings */

:root {
    --clr-white: hsl(0, 0%, 100%);
    --clr-Off-white: hsl(0, 0%, 96%);
    --clr-grey: hsl(0, 0%, 55%);
    --clr-black: rgba(81, 82, 83, 1);
    --clr-black-blue: hsl(234.7, 45.9%, 14.5%);
    --clr-blue: rgb(7 155 203);
    --clr-blue-bright: rgb(8 189 232);
    --clr-blue-dark: rgb(9 130 182);
    --clr-orange: hsl(25, 100%, 60%);
    --clr-red: #f54748;
    --clr-green: #8dc96b;
    --shadow-light: 0 0 20px hsla(0, 0%, 0%, 0.05);
    --shadow-small: 0 0 20px hsla(0, 0%, 0%, 0.09);
    --shadow-regular: 7px 7px 20px hsla(0, 0%, 0%, 0.07);
    --gradient-transparent: linear-gradient(to bottom right, transparent, var(--clr-white));
    --gradient-blur: linear-gradient(to bottom right, hsla(0, 0%, 100%, 0.7), var(--clr-white));
    --font-primary: "Open Sans", sans-serif;
    --font-secondary: "BigNoodleTitling";
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;
    --fw-extra-bold: 900;
    --fs-xs: clamp(15rem, 1.04vw, 16rem);
    --fs-small: clamp(16.5rem, 1.17vw, 18rem);
    --fs-regular: clamp(17.75rem, 1.3vw, 20rem);
    --fs-medium: clamp(21rem, 1.62vw, 25rem);
    --fs-large: clamp(38rem, 2.92vw, 45rem);
    --fs-xl: clamp(62rem, 5.53vw, 82rem);
    --fs-bg: clamp(180rem, 13.99vw, 215rem);
    --lh-xs: clamp(22rem, 1.69vw, 26rem);
    --lh-small: clamp(24rem, 1.82vw, 28rem);
    --lh-regular: clamp(27rem, 2.08vw, 32rem);
    --lh-medium: clamp(32rem, 2.27vw, 35rem);
    --lh-large: clamp(48rem, 3.58vw, 55rem);
    --lh-xl: clamp(72rem, 5.85vw, 87rem);
    --lh-bg: clamp(190rem, 14.64vw, 225rem);
    --pad-page: 8%;
    --scrollbar-dimention: 15px
}


body {
    font-family: var(--font-primary);
    font-size: 14px;
    overflow-x: unset !important;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    color: var(--clr-black);
    font-size: 14px;
}

a {
    text-decoration: none;
}

a:hover {
    color: inherit;
}

a:focus {
    outline: none;
}

::selection {
    color: var(--clr-white);
    background-color: var(--clr-blue-dark);
}

@media (max-width: 850px) {
    .Side-Nav {
        background-color: hsla(0, 0%, 0%, 0.6);

    }
}

@media(max-width:768px) {
    .sectionTitle {
        font-size: 40px !important;
    }
}

.Section-Details {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--clr-grey);
    text-align: center;
    margin: 10px auto;
    margin-bottom: 45px;
    width: 100%;
}

@media(max-width:768px) {
    .Section-Details {
        margin-bottom: 35px;
    }
}

.custom_paddy {
    padding: 80px 0px;
}

@media(max-width:991px) {
    .custom_paddy {
        padding: 40px 0px;
    }

}

/* custom button */
.button {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    border-radius: 5px;
    width: fit-content;
    font-weight: 500;
    outline: none;
}

.button i {
    padding-left: 5px;
}

.button:hover i {
    transform: translateX(5px);
}

.button_primary {
    background-color: var(--clr-blue-dark);
    color: var(--clr-white);
    border: none;
}

.button_primary:hover {
    background-color: var(--clr-blue-bright);
    color: var(--clr-white);
}

.btn-outline {
    color: var(--clr-blue-dark);
    background-color: var(--clr-white);
}

.btn-outline:hover {
    color: var(--clr-black);
}

/* end global css */

/* herro Section */
.herro {
    background-image: url(images/herro_banner.png);
    height: fit-content;
    padding-top: 80px;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    background-size: cover;
}

.herro .herro_flex {
    display: flex;
    gap: 40px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.herro .herro_flex .content {
    width: 100%;
    padding-top: 30px;
}


.herro .image img {
    width: 100%;
}

@media(min-width:991px) {
    .herro .herro_flex {
        flex-direction: row;
    }

    .herro .herro_flex .content {
        width: 60%;
        padding-top: 30px;
    }
}

.herro-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 768px;
    color: var(--clr-black);
    margin-top: 10px;

}

.herro-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media(max-width:640px) {
    .herro-buttons .button {
        width: 100%;
        text-align: center;
    }

}

@media (min-width: 640px) {
    .herro-buttons {
        flex-direction: row;

    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Services Section */
.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 1024px) {
    .services-section .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.services-section .service-card {
    background-color: var(--clr-white);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    border: 1px solid var(--clr-grey);

}

.services-section .service-card:hover {
    border: 1px solid var(--clr-blue-dark);
    transition: border .3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.services-section .service-card .service-content {
    padding: 24px;
}

.services-section .service-card .service-content .icon-container {
    background-color: #eef2ff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.services-section .service-card .service-content .icon-container .service-icon {
    font-size: 24px;
    color: var(--clr-blue);
}

.services-section .service-card .service-content .service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--clr-black);
}

.services-section .service-card .service-content .service-description {
    color: var(--clr-grey);
    margin-bottom: 16px;
}



/* waffle_banner  section  */
.waffle_banner {
    margin-bottom: 80px;
}

.waffle_banner img {
    width: 100%;
    height: auto;
}

@media(max-width:991px) {
    .waffle_banner {
        margin-bottom: 40px;
    }
}

/* casestudy slider section start */
.casstudy_slider {
    display: block;
    background-color: #f9fafb;
}



/* for desktop */

.work_boxes {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.work_box {
    height: 300px;
    position: relative;
    width: calc(20% - 6px);
    flex-shrink: 0;
    transition: width 0.4s ease;
    overflow: hidden;
    border-radius: 10px;
}

.work_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.work_image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, #000000 100%);
}

.work_content {
    width: 100%;
    color: var(--clr-white);
    padding: 0 20px;
    position: absolute;
    top: 218px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    height: 10%;
}

.work_content_hover {
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.work_content p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    max-width: 240px;
    width: 100%;
    color: var(--clr-white);
}

.work_logo {
    position: absolute;
    bottom: 24px;
    left: 18px;
    transition: all 0.4s ease-in-out;
}

.work_logo img {
    height: 70px;
    width: auto;
}

.work_box:hover {
    width: 35%;

}

.work_box:hover .work_image_position {
    width: 75%;
}

.work_box:hover .work_content {
    opacity: 1;
    height: auto;
}

.work_box:hover .work_hover_logo {
    bottom: 90px;
}

.work_content button {
    color: #0C83D1;
    background-color: #FFFFFF;
    border-radius: 50%;
    border: none;
    height: 48px;
    width: 11%;
}

.work_content a {
    color: var(--clr-white);
    text-decoration: none;
    font-size: 10px;
    display: flex;
    align-items: center;
    display: none;
}

.work_content a i {
    color: #0C83D1;
    margin-left: 7px;
    margin-top: 3px;
}

.testimonial-author {
    width: 210px;
}


@media (min-width:992px) and (max-width:1199px) {
    .testimonial-content p {
        font-size: 14px !important;
    }

    .work_box.expanded .testimonial-author {
        bottom: -53px !important;
    }

    .work_content .testimonial-author p {
        font-size: 12px;
        line-height: 16px;
    }

    .work_content {
        top: 230px !important;
    }

    .work_content button {
        height: 40px !important;
        width: 13% !important;
    }

    .work_logo img {
        height: 65px;

    }

    .testimonial-author .testimonial-author-info h4 {
        font-size: 12px;
    }

    .testimonial-author {
        width: 145px;
    }

    .testimonial-expander .testimonial-content {
        padding: 16px 10px 10px 12px;
    }

    .testimonial-content .testimonial-actions-link .case-study-link {
        font-size: 15px;
    }

    .testimonial-content .testimonial-actions-link {
        align-items: self-start;
    }
}

@media (max-width:1399px) {
    .work_content button {
        width: 12%;
    }

    .work_boxes .work_box.expanded {
        width: 35% !important;
    }
}

@media (max-width:1199px) {
    .work_box:hover .work_hover_logo {
        bottom: 77px;
    }

    .work_content {
        top: 205px;
    }

    .work_content p {
        max-width: 148px;
    }

    .work_content button {
        height: 40px;
        width: 16%;
    }

    .work_boxes {
        gap: 17px;
    }
}

@media (max-width:991px) {
    .work_section {
        display: none;
    }

    .work_content a {
        display: block;
    }

    .work_content {
        opacity: 1;
    }

    .work_logo img {
        height: 60px;
    }

    .work_logo {
        bottom: 110px;
    }

    .work_box:hover .work_hover_logo {
        bottom: 110px;
    }

    .work_box {
        width: 30%;
        height: 310px;
    }

    .center-slider .slick-slide {
        margin: 0 15px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease-in-out;
    }

    .work_content {
        height: auto;
        display: block;
    }

    .work_content button {
        display: none;
    }

    .work_content {
        top: 206px;
    }

    .work_content p {
        margin-bottom: 10px;
    }

    .work_content p {
        max-width: 100%;
    }

}

@media (min-width:992px) {
    .work_box.expanded .testimonial-author {
        display: block;
        position: absolute;
        bottom: -50px;
        left: 20px;
        color: white;
        width: 190px;
    }

    .work_content_hover {
        display: flex;
    }
}


.work_box {
    transition: width 0.4s ease, transform 0.4s ease;
}

.work_box.expanded {
    width: 36% !important;
}

.testimonial-expander {
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;

    overflow: hidden;
    transition: width 0.4s ease;
    z-index: 2;
    background: linear-gradient(270deg, #FFFFFF 31.89%, rgba(96, 96, 96, 0.5) 435.42%);

}

.work_box:hover .testimonial-expander {
    width: 50%;
}

.work_box.expanded .testimonial-expander {
    width: 52%;
    background: linear-gradient(270deg, #FFFFFF 31.89%, rgba(96, 96, 96, 0.5) 435.42%);

}

.work_box.expanded .work_image {
    width: 48%;
}

.testimonial-content {
    padding: 20px 10px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
}

.testimonial-content a {
    text-decoration: none;
    font-weight: 600;
}

.testimonial-actions-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-actions-link a {
    color: var(--clr-blue);
}

.testimonial-actions-link a:hover {
    color: var(--clr-blue);
}

.testimonial-actions-link .play_icon {
    font-size: 35px;
}

.work_box.expanded .work_content_hover {
    display: none;
}



.work_box.expanded .work_content {
    opacity: 1;
    height: auto;
}

.work_box.expanded .work_logo {
    bottom: 90px;
}

.testimonial-expander {
    pointer-events: auto;

}

.work_box.expanded {
    pointer-events: auto;

}

.testimonial-content p {
    font-size: 14px;
}

.testimonial-author h4 {
    font-size: 14px;
    border: 1px solid gray;
    width: fit-content;
    background-color: gray;
    padding: 2px 5px;
    color: var(--clr-white);
    font-weight: 600;
}

.testimonial-author-info a {
    display: block;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.testimonial-author-info i {
    margin-top: 2px !important;
    font-size: 22px;
}

.testimonial-author p {
    line-height: 19px;
}

/* for mobile */

.cards_responsive_section {
    display: none;
}

.cards_responsive_section {
    min-height: 100vh;
    position: relative;
    display: none;
}

.card_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card_responsive {
    position: sticky;
    width: 100%;
    padding: 20px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 20px;
    background: linear-gradient(to right, #719cb8, #ffffff);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;

}

.card_responsive:nth-child(1) {
    top: 20px;
    z-index: 1;
}

.card_responsive:nth-child(2) {
    top: 50px;
    z-index: 2;
}

.card_responsive:nth-child(3) {
    top: 80px;
    z-index: 3;
}

.card_responsive:nth-child(4) {
    top: 110px;
    z-index: 4;
}


.card_image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.card_image {
    position: relative;
    height: 240px;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.card_overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, #000000 100%);
}

.card_image .author_designation {
    position: absolute;
    bottom: 0;
    left: 15px;
}

.card_image .author_designation h3 {
    font-size: 14px;
    border: 1px solid gray;
    width: fit-content;
    background-color: gray;
    padding: 2px 5px;
    color: var(--clr-white);
    font-weight: 600
}

.card_image .author_designation p {
    font-size: 13px;
    color: var(--clr-white);
    font-weight: 500;
}

.card_image .author_designation a i {
    font-size: 20px;
}

.card_content {
    padding-top: 15px;
}

.card_content img {
    height: 70px;
}

.card_content p {
    margin-top: 15px;
}

.card_content a {
    text-decoration: none;
    color: var(--clr-blue);
    font-weight: 600;
}

@media (max-width:991px) {
    .cards_responsive_section {
        display: block;
    }
}


/* why chose us section */
.why-section {
    background-color: #f9fafb;
}

.why-section .why-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(min-width:991px) {
    .why-section .why-container {
        flex-direction: row;
        gap: 48px;
    }

}

.why-section .why-content .Section-Title {
    text-align: left !important;
}

.why-section .why-content .Section-Details {
    text-align: left !important;
}

.why-section .why-content {
    width: 100%;
    margin-bottom: 20px;
}

@media(min-width:991px) {
    .why-section .why-content {
        width: 50%;
        margin-bottom: 0;
    }
}

@media(min-width:991px) {
    .why-section .why-content {
        margin-bottom: 48px;
    }
}

.why-section .why-content .benefit-item {
    display: flex;
    margin-bottom: 24px;
}

.why-section .why-content .benefit-item .benefit-icon-container {
    background-color: var(--clr-blue-dark);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.why-section .why-content .benefit-item .benefit-icon-container .benefit-icon {
    color: var(--clr-white);
    font-size: 20px;
}

.why-section .why-content .benefit-item .benefit-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-section .why-content.why-content .benefit-item .benefit-description {
    color: var(--clr-grey);
}

.why-section .why-image {
    width: 100%;

}

@media(min-width:991px) {
    .why-section .why-image {
        width: 50%;
    }
}

.why-section .why-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
}

.faq-section .max-w-3xl {
    max-width: 768px;
    margin: 0 auto;
}

.faq-section .accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;

}

.faq-section .accordion-item {
    background-color: #ffffff;
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 24px;

}

.faq-section .accordion-trigger {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-black);
    text-align: left;
}

.faq-section .accordion-trigger:hover {
    color: var(--clr-blue);
}

.faq-section .accordion-trigger::after {
    content: '+';
    font-size: 20px;
    transition: all .5s ease-in;
}

.faq-section .accordion-trigger.active::after {
    transform: rotate(45deg);
    transition: all .5s ease-in;
}

.faq-section .accordion-content.active {
    display: block;
    transition: all .5s ease-in;
    max-height: 500px;
    padding-top: 16px;
}

.faq-section .accordion-content {
    max-height: 0;
    overflow: hidden;
    color: var(--clr-grey);
    line-height: 1.625;
    padding-top: 0;
    font-size: 16px;
    transition: max-height 0.5s ease, padding-top 0.5s ease;
}


/* CONTACT US SECTION */
.contact-section {
    background-color: #f9fafb;
}

.contact-section .content-grid {
    display: grid;
    gap: 48px;
}

@media (min-width: 991px) {
    .contact-section .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-section .left-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-section .heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-section .description {
    font-size: 18px;
    color: var(--clr-grey);
    line-height: 1.50;
}

.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-section .contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-section .contact-info .contact-item .icon-container {
    width: 48px;
    height: 48px;
    background-color: var(--clr-blue-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-section .contact-info .contact-item .icon-container .icon {
    width: 24px;
    height: 24px;
    color: var(--clr-white);

}

.contact-section .contact-info .contact-item .contact-label {
    font-weight: 600;
    font-size: 16px;
    color: var(--clr-black);
}

.contact-section .contact-info .contact-item .contact-value a {
    color: var(--clr-black) !important;
    font-size: 16px !important;
}


.contact-section .form-container {
    background-color: var(--clr-white);
    /* backdrop-filter: blur(4px); */
    /* border-radius: 16px; */
    padding: 50px;
    /* border: 1px solid var(--clr-blue); */
}


.contact-section .form-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}


.contact-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.contact-section .contact-form .form-grid {
    display: grid;
    gap: 16px;
    position: relative;
}

@media (min-width: 768px) {
    .contact-section .contact-form .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-section .contact-form .form-group {
    display: flex;
    flex-direction: column;
    position: relative;

}

.contact-section .contact-form .form-group .form-label {
    color: var(--clr-black);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.contact-section .contact-form .form-group .form-input {
    height: 50px;
    width: 100%;
    border-radius: 2px;
    border: 1px solid var(--clr-grey);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--clr-black);
    padding: 8px 12px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.contact-section .contact-form .form-group .form-input:focus {
    border-color: #22d3ee;
}

.contact-section .contact-form .form-group .form-input::placeholder {
    color: var(--clr-black);
    font-size: 14px;
}

.contact-section .contact-form .form-group .form-textarea {
    width: 100%;
    border-radius: 2px;
    border: 1px solid var(--clr-grey);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--clr-black);
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
    min-height: 120px;
    resize: vertical;
}

.contact-section .contact-form .form-group .form-textarea:focus {
    border-color: #22d3ee;
}

.contact-section .contact-form .form-group .form-textarea::placeholder {
    color: var(--clr-black);
    font-size: 14px;
}

.contact-section button {
    margin: auto;
}

.contact-section .errormssgg {
    color: red;
    font-size: 12px !important;
    position: absolute;
    bottom: -22px;
}

.contact-section #messagesuccessmessgae {
    color: green;
    font-size: 14px !important;
    position: absolute;
    bottom: -25px;
    font-weight: 600;
}