* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Poppins;

}

.body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    letter-spacing: -0.4px;
}

:root {
    --primary-color: rgba(255, 255, 255, 1);
    --secondary-color: rgb(0, 0, 0);
    --warning: rgba(253, 191, 32, 1);
    --warning-secondary: rgba(255, 193, 7);
    --info: rgba(22, 96, 194, 1);
    --muted: rgba(245, 245, 245, 1);
    --disabled: rgba(140, 144, 144, 1);
    --muted-black: rgba(30, 34, 34, 1);
    --dark-blue: #1660C2;
    --blue-color: #1977F3;
    --white-color: #fff;
    --industry-card-hover-bg: #072B5B;
    --dark-gray: #1E2222;
    --yellow-color: rgba(253, 191, 32, 1);
    --black-color: #000;
}

.body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    letter-spacing: -0.4px;
}

.main {
    overflow-x: hidden;
}

/* common styles start */



.common-para {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.4px;
    color: var(--secondary-color);
    margin-bottom: 0;
}


.common-padding-class {
    padding-inline: 165px;
    padding-block: 100px;
}



@media screen and (max-width: 1024px) {
    .common-padding-class {
        padding-inline: 108px;
        padding-block: 50px;
    }
}

@media screen and (max-width: 768px) {
    .common-padding-class {
        padding-inline: 50px;
        padding-block: 50px;
    }
}


@media screen and (max-width: 540px) {
    .common-padding-class {
        padding-inline: 16px;
    }
}

/* cta start */
.cta-button {
    padding: 12px 32px;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    text-align: center;
    width: max-content;
    /* text-transform: capitalize; */
    letter-spacing: -0.4px;
    height: 52px;
}


.ct-black-color {
    color: #000000;
    border: 1px solid var(--secondary-color);
    background-color: var(--primary-color);
}


.muted-cta {
    background-color: var(--muted);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.light-blue-cta-button {
    border: 1px solid var(--info);
    background-color: var(--info);
    position: relative;

}

.cta-button:hover,
.light-blue-cta-button:hover {
    background-color: var(--primary-color);
    color: #000000;
    transition: 0.4s ease-in-out;
    border: 1px solid #000000;
}

.ct-black-color:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    transition: 0.4s ease-in-out;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.cta-animate {
    position: relative;
}

.cta-animate::before,
.cta-animate::after {
    content: "";
    position: absolute;
    inset: -0.14rem;
    z-index: -1;
    background: linear-gradient(var(--angle), var(--info), var(--primary-color));
    animation: rotateCta 3s linear infinite reverse;
    -webkit-animation: rotateCta 3s linear infinite reverse;
    border-radius: 25px;
}

.cta-animate::after {
    filter: blur(1px);
    -webkit-filter: blur(1px);
}

@keyframes rotateCta {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

/* cta end */

/* common styles end */

/* navbar start */

.navbar {
    /* background-color: transparent !important; */
    /* padding: 37px; */
    padding: 0 37px;
    position: absolute;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link {
    color: var(--primary-color);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-icons {
    flex-grow: initial !important;
}

.navbar-nav {
    gap: 10px;
}

.cta-nav {
    padding: 8px 32px !important;
    height: fit-content;
}

.cta-nav:hover {
    color: var(--primary-color);
    background-color: var(--info);
}

.section-main-heading {
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: var(--black-color);
    text-transform: capitalize;
    margin-bottom: 0;
}

/* .cta-nav:hover {
          background-color: var(--secondary-color);
          border: 1px solid var(--primary-color);
          color: var(--primary-color)
      } */

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.toggler-icon {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    display: block;
    transition: all 0.2s;
}

.middle-bar {
    margin: 5px auto;
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform-origin: 10% 10%;
    -webkit-transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform-origin: 10% 90%;
    -webkit-transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
    -webkit-transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
    -webkit-transform: rotate(0);
}

.navbar-backdrop {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-height: 100vh;
    align-items: flex-start;
    position: fixed;
    animation-name: navCollapse;
    animation-duration: 0.4s;
}

.overflow-hidden {
    overflow: hidden;
}

@keyframes navCollapse {
    from {
        min-height: 0;
    }

    to {
        min-height: 100vh;
    }
}

@media screen and (min-width: 1400px) {

    .navbar-brand,
    .nav-item {
        min-height: 99px;
        display: flex;
        align-items: center;
    }

    .text-link:hover {
        background-color: var(--warning);
        color: var(--secondary-color) !important;
        transition: all 0.5s;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-inline: 1rem;
    }
}

@media screen and (max-width: 1400px) {
    .navbar {
        padding-inline: 2px;
        padding-block: 17px;
        /* background-color: #1E2223 !important; */
    }

    .navbar {
        transition: background-color 0.4s ease-in-out;
        /* Adjust the duration and timing function */

    }

    .nav-item {
        height: 39px;
        display: flex;
        align-items: center;


    }

    .nav-item a {
        color: #8C9090;
    }

    .nav-item img {
        margin-top: 50px;
    }

    .navbar-nav {
        justify-content: start;
        align-items: start;
        margin-top: 20px;
        padding-inline: 30px;
    }

    .navbar-nav {
        gap: 1px;
    }

    .navbar-nav hr {
        height: 2px;
        background-color: #F5F5F5;
        width: 100%;
        margin-block: 0px;
    }

    .nav-link:hover {
        color: var(--primary-color);
    }

}

.navbar-second-text {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

/* navbar end */
.section-padding {
    padding-inline: 130px;
    padding-block: 70px;
}



/* hero section */
.hero-section {
    background-image: linear-gradient(87.1deg, #000000 1.09%, rgba(102, 102, 102, 0) 51.75%), url("https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/hero-img.png");
    /* min-height: 100vh; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-section .hero-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 85px;
    gap: 40px;
}


.hero-content h1 {
    width: 100%;
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;
    line-height: 77px;
    letter-spacing: -0.4px;
    color: #FFFFFF;
}

.social-icons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.icon {
    color: var(--white-color);
}

@media screen and (max-width:540px) {
    .hero-section {
        min-height: 500px !important;
    }


}




.hero-section {
    background-image: url("https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/Banner-min.webp");
    height: 688px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

@media screen and (max-width: 1330px) {
    .hero-section {
        min-height: 100vh;
    }

}

@media screen and (max-width:767px) {
    .hero-section {
        align-items: end;
        justify-content: baseline;
    }

    .hero-content h1 {
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        line-height: 32.5px;
        letter-spacing: -0.4px;
        color: #FFFFFF;
        width: 100%;
        padding-inline: 27px;

    }

    .hero-content a {}

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 16px !important;

    }


}

@media screen and (max-width:540px) {
    .form-part {
        padding: 20px 20px;
    }

    .hero-section {
        height: 500px;
    }

}

@media screen and (min-width: 1550px) {
    .common-padding-class {
        padding-inline: 220px;
        padding-block: 150px;
    }

    .hero-content h1 {
        width: 100%;
        max-width: 1096px;
    }
}


/* logo-section */
.logo-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    align-items: center;
    padding-bottom: 0px;
}

.logo-section-images {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    object-fit: cover;
    justify-content: space-between;
}

.logo-section-images img {
      filter: grayscale(100%) brightness(150%) contrast(0%);
}

@media screen and (max-width: 1350px) {
    .logo-section-images {
        justify-content: center;
        gap: 40px;
    }
}


/* leadeing section */

/* Connected Future section  */
.connected-future {
    background-color: #FFFFFF;

}

.connected-future-grid {
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 10px;
}

.connected-future-grid h2
 {
    color: #131313;
    max-width: 621px;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0px;
    font-weight: 700;
    font-style: bold;
}

    .what-we-offer-section h2{
    padding-bottom: 53px;
}
@media (max-width: 768px){
    .what-we-offer-section h2{
    padding-bottom: 20px;
}

.what-we-offer-bottom h3{
    font-size: 24px;
}
}

.what-we-offer-section h3{
    font-weight: 600;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: 0px;
    text-transform: capitalize;
}

/* common heading */
.what-we-offer-section h2,
.intelligent-sdlc-head h2,
.challenges-we-slove h2,
.ai-solutions-hub-container h2 {
    color: #131313;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: 0px;
    font-weight: 700;
    font-style: bold;
}

.intelligent-sdlc-head h2 {
    max-width: 500px;
}

.color-change {
    color: #0D6EFD;
}

.image-container {
    display: flex;
    justify-content: center;
}

.section-para-container .section-para {
    max-width: 729px;
    color: #767676;
    font-size: 18px;
}

.connected-future-grid img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    object-position: center;
}


.connected-future-grid .text-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    max-width: 738px;
}

@media (max-width: 1500px) and (min-width: 1340px) {
    .image-container {
        width: 541px;
        height: 340px;

    }


}

@media (min-width: 1380px) and (max-width: 1340px) {
    .image-container {
        margin-top: 40px;
    }

}

@media screen and (min-width: 1510px) {
    .image-container {
        width: 100%;
        height: 100%;
    }

}

@media (max-width: 1300px) {
    .connected-future-grid {
        display: grid;
        grid-template-columns: 7fr 4fr;
        gap: 23px;
    }

    .image-container {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 1200px) {
    .connected-future-grid {

        gap: 20px;
    }
}

@media (max-width: 924px) {
    .connected-future-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

}

@media screen and (max-width: 768px) {
    .connected-future-grid h2 {
        text-align: center;
    }

    .section-para {
        max-width: 100%;
        width: 100%;
        text-align: center !important;
    }

    .connected-future-grid .text-grid {
        gap: 16px;
    }


}

.wireless-capabilities h1 {
    padding-bottom: 50px;
    color: #131313;
}



/*  */
.challenges-we-slove {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: linear-gradient(180.11deg, rgba(255, 255, 255, 0.42) -0.19%, rgba(255, 255, 255, 0.42) 40.71%, rgba(223, 225, 248, 0.42) 75.84%);
    background-blend-mode: multiply;


}

.challenges-we-slove h1 {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.challenges-we-slove-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.challenges-we-slove-card-1 {
    width: 100%;
    height: 240px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(170.62deg, #FFFFFF 11.79%, #FFFFFF 98.46%);

    border-radius: 24px;

}

.challenges-we-slove-card-1-inner {
    width: 100%;
    height: 100%;
    padding-inline: 32px;
    padding-top: 32px;
    padding-bottom: 41px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 26px;
}

.challenges-we-slove-card-1-inner img {
    height: 62px;
}

.challenges-we-slove-card-1-inner p{
    font-family: Poppins;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
}

@media screen and (min-width: 1400px) {
    .challenges-we-slove-card-1-inner p {
        margin-bottom: 0px;
        max-width: 159px !important;
    }

    .challenges-we-slove-container {
        gap: 26px;
    }

}

@media screen and (max-width: 1420px) {
    .challenges-we-slove-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        column-gap: 26px;
        row-gap: 26px;
    }
}

@media screen and (max-width: 768px) {
    .challenges-we-slove-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 500px) {
    .challenges-we-slove-container {
        grid-template-columns: repeat(1, 1fr);
    }

}





/* next-generation-section */
.next-generation-section {
    position: relative;
    width: 100%;
    color: #fff;

    /* gradient first = on top; use alpha so image is visible */
    background-image: url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/back-robot-img.png'), linear-gradient(rgba(5, 6, 42, 1), rgba(32, 33, 78, 1));


    background-repeat: no-repeat;
    background-size: cover, cover;
    /* size both layers */
    background-position: center, center;
}

.next-generation-section-continar {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.robo-icon {
    width: 50%;
}

.robo-icon img {
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 356px;

}

.next-generation {
    padding-block: 100px;
    padding-left: 220px;
}

.next-generation h2 {
    font-family: Poppins;
    font-weight: 600;
    font-style: Bold;
    font-size: 42px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 14px;
    /* max-width: 411px; */
}

.next-generation p {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: CAP_HEIGHT;
    line-height: 28px;
    letter-spacing: 0%;
    max-width: 720px;

}

.next-generation .buttom-container p {
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: CAP_HEIGHT;
    line-height: 28px;
    letter-spacing: 0%;

}

.buttom-container {
    margin-top: 44px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: start;
}

.first-button {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-self: center;
    /* background: ; */
    background: #0D6EFDE5;
    padding-block: 19px;
    padding-left: 12px;
    padding-right: 28px;
    align-items: center;
    border-radius: 55px;
    cursor: pointer;
}

.first-button a {
    color: #ffffff;
}

.first-button p {
    margin-bottom: 0px;
}

.second-button {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-self: center;
    /* background: ; */
    background: transparent;
    color: white;
    border: 1px solid #FFFFFF;
    padding-block: 19px;
    padding-inline: 28px;
    align-items: center;
    border-radius: 55px;
    font-family: Manrope;
    font-size: 20px;
}

@media screen and (max-width: 1441px) {
    .next-generation {
        padding-block: 100px;
        padding-left: 165px;
    }
    .next-generation .buttom-container p{
        font-size: 18px;
    }
    .second-button{
        font-size: 18px;
    }


}

@media screen and (max-width: 1110px) {
    .next-generation-section-continar {
        display: flex;
        flex-direction: column-reverse;

    }

    .robo-icon {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;

    }

    .robo-icon img {
        position: relative;
        right: 0;
    }



}


@media screen and (max-width: 1024px) {
    .next-generation {
        padding-inline: 108px;
        padding-block: 50px;
    }
}

@media screen and (max-width: 768px) {
    .next-generation {
        padding-inline: 50px;
        padding-block: 50px;
    }

    .buttom-container {
        display: flex;
        flex-direction: column;
    }
}


@media screen and (max-width: 540px) {
    .next-generation {
        padding-inline: 16px;
    }
}







/* modernize with AI */
.modernize-section {
    position: relative;
    width: 100%;
    color: #fff;

    /* gradient first = on top; use alpha so image is visible */
    background: linear-gradient(rgba(5, 6, 42, 1), rgba(32, 33, 78, 1));
    background-image: url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/world-vector-background.png'),linear-gradient(rgba(5, 6, 42, 1), rgba(32, 33, 78, 1));
    background-repeat: no-repeat;
    background-size: cover, cover;
    /* size both layers */
    background-position: center, center;
}

.modernize-section-continar {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    padding-block: 60px;
}

.robo-icon-left {
    width: 50%;
}

.robo-icon-left img {
    position: absolute;
    bottom: 0;
    /* left: 0; */
    width: 460px;

}

.robo-icon-left-padding {
    padding-block: 0px;
    padding-left: 220px;
}

.modernize h1 {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 14px;

}

.modernize p {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: CAP_HEIGHT;
    line-height: 28px;
    letter-spacing: 0%;

}

.buttom-container {
    margin-top: 44px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: start;
}

.buttom-container a {
    color: #ffffff;
}

.first-button {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-self: center;
    /* background: ; */
    background: #0D6EFDE5;
    padding-block: 19px;
    padding-left: 12px;
    padding-right: 30px;
    align-items: center;
    border-radius: 55px;
    height: 52px;
}

.first-button p {
    margin-bottom: 0px;
}

.second-button {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-self: center;
    /* background: ; */
    background: transparent;
    color: white;
    border: 1px solid #FFFFFF;
    padding-block: 19px;
    padding-inline: 28px;
    align-items: center;
    border-radius: 55px;
    width: 100%;
    height: 52px;
}

.modernize-section-content h2{
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0px;
    text-decoration: none;
}

.modernize-section-content p {
    max-width: 600px;
}
@media screen and (max-width: 1441px) {
    .robo-icon-left-padding {
        padding-block: 0px;
        padding-inline: 165px;
    }

}

@media screen and (max-width: 1110px) {
    .modernize-section-continar {
        display: flex;
        flex-direction: column-reverse;
        padding-bottom: 0px;

    }

    .modernize-section {
        padding-inline: 108px;
    }

    .robo-icon-left-padding {
        padding-block: 0px;
    }

    .robo-icon-left {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;

    }

    .robo-icon-left img {
        position: relative;
        left: 0;
    }



}


@media screen and (max-width: 1024px) {
    .robo-icon-left-padding {
        padding-inline: 108px;
        padding-block: 0px;
    }
}

@media screen and (max-width: 768px) {
    .robo-icon-left-padding {
        padding-inline: 50px;
        padding-block: 0px;
    }

    .modernize-section {
        padding-inline: 50px;
    }

    .buttom-container {
        display: flex;
        flex-direction: column;
    }
}


@media screen and (max-width: 540px) {
    .robo-icon-left-padding {
        padding-inline: 16px;
    }

    .modernize-section {
        padding-inline: 16px;
    }
}


.intelligent-sdlc-comtainer {
    background-color: #EEEFFF;
    display: flex;
    width: 100%;
    gap: 186px;
    border-radius: 24px;
}

.intelligent-sdlc-head {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 60px;
}

/* .intelligent-sdlc-head h1{
    width: 494px;
} */
.intelligent-sdlc-right-scroll {
    display: flex;
    flex-direction: column;
    height: 494px;
    overflow-y: scroll;
    /* padding-top: 32px; */
    /* padding-right: 68px; */
    gap: 24px;
}

.intelligent-sdlc-right-card-1-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.intelligent-sdlc-right-card-1 {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-inline: 31px;
    padding-top: 37px;
    padding-bottom: 77px;
    background-color: white;
    gap: 22px;
    border-radius: 24px;
}

.intelligent-sdlc-right-content h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: none;
}

.intelligent-sdlc-right-content p{
    max-width: 570px;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #767676;
}

@media screen and (max-width: 1024px) {
    .intelligent-sdlc-comtainer {
        display: flex;
        flex-direction: column;
    }

    .intelligent-sdlc-right-scroll {
        padding-inline: 24px;
    }

    .intelligent-sdlc-head {
        padding-left: 0px;
    }

}






/* what-we-offer-container */
.what-we-offer-section {
    width: 100%;
    max-width: 100%;
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #DDE8FD 100%);
}

.what-we-offer-container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding-bottom: 24px;
}

.what-we-offer-ineer-card {
    padding-inline: 44px;
    padding-top: 44px;
    padding-bottom: 23px;
    background-color: white;
    max-width: 50%;
    border-radius: 24px;
}

.what-we-offer-ineer-card img {
    margin-bottom: 20px;
}

.what-we-offer-ineer-card h2 {
    margin-bottom: 18px;
}

.what-we-offer-ineer-card p{
    text-transform: capitalize;
}

.what-we-offer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 44px;
    padding-block: 55px;
    background-color: white;
    border-radius: 24px;
}

.what-we-offer-section-head {
    padding-bottom: 53px;
    text-align: left;
}

.what-we-offer-bottom-button {
    height: 51px;
    width: 375px;
    border-radius: 55px;
    background-color: #0D6EFD !important;
    border: none;
    color: white;
    font-size: 20px;

}

.what-we-offer-bottom h3 {
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0px;
    font-weight: 600;
}

@media screen and (max-width: 1116px) {
    .what-we-offer-container {
        display: flex;
        flex-direction: column;
    }
      .what-we-offer-ineer-card {
        max-width: 100%;
      }

}

@media screen and (max-width: 768px) {
    .what-we-offer-bottom {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .what-we-offer-ineer-card {
        padding-inline: 30px;
        padding-bottom: 40px;
    }

    .what-we-offer-bottom-button {
        width: 100%;
    }
}






/* ai-solutions-hub  */

.ai-solutions-hub {
    width: 100%;
    position: relative;
    height: 100%;
}

.ai-solutions-hub-container-cardds {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.hover-over-content {
    display: none;
        font-family: Poppins;
}

.ai-color-change {
    color: #0E65EA;
}

.ai-solutions-hub-container-head {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.ai-solutions-hub-container-cardds-inner-1 {
    position: relative;
    background-image: linear-gradient( 180deg,rgba(0, 0, 0, 0) 0%,rgba(0, 31, 55, 0.87) 70.19%, rgba(14, 64, 104, 0.87) 100%), url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/card1.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 363px;
    border-radius: 24px;
    width: 100%;
        background-position: center;
        opacity: 0.9;
}

.ai-solutions-hub-container-cardds-inner-1 h1 {
    position: relative;
    top: 239px;
    font-size: 24px;
    color: white;
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;

    padding-inline: 40px;

}

.ai-solutions-hub-container-cardds-inner-1:hover {
    background: linear-gradient(165.44deg, rgba(25, 65, 97, 0.99) -26.34%, rgba(26, 67, 101, 0.99) 10.48%, rgba(9, 6, 43, 0.99) 89.69%);

}

.ai-solutions-hub-container-cardds-inner-1:hover .hover-over-content {
    display: flex;
    color: white;
    padding-inline: 48px;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;

    padding-top: 61px;
}

.ai-solutions-hub-container-cardds-inner-1:hover h1 {
    display: none !important;
    /* color: white; */
}





.ai-solutions-hub-container-cardds-inner-2 {
    position: relative;
    background-image: linear-gradient( 180deg,rgba(0, 0, 0, 0) 0%,rgba(0, 31, 55, 0.87) 70.19%, rgba(14, 64, 104, 0.87) 100%), url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/card2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 363px;
    border-radius: 24px;
    width: 100%;
        background-position: center;
        opacity: 0.9;

}

.ai-solutions-hub-container-cardds-inner-2 h1 {
    position: relative;
    top: 239px;
    font-size: 24px;
    color: white;
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;

    padding-inline: 40px;

}

.ai-solutions-hub-container-cardds-inner-2:hover {
    background: linear-gradient(165.44deg, rgba(25, 65, 97, 0.99) -26.34%, rgba(26, 67, 101, 0.99) 10.48%, rgba(9, 6, 43, 0.99) 89.69%);

}

.ai-solutions-hub-container-cardds-inner-2:hover .hover-over-content {
    display: flex;
    color: white;
    padding-inline: 48px;
    font-family: Manrope;
    /* font-family: Poppins; */
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;

    padding-top: 61px;
}

.ai-solutions-hub-container-cardds-inner-2:hover h1 {
    display: none !important;
    /* color: white; */
}







.ai-solutions-hub-container-cardds-inner-3 {
    position: relative;
    background-image: linear-gradient( 180deg,rgba(0, 0, 0, 0) 0%,rgba(0, 31, 55, 0.87) 70.19%, rgba(14, 64, 104, 0.87) 100%),url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/card3.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 363px;
    border-radius: 24px;
    width: 100%;
    background-position: center;
    opacity: 0.9;
}

.ai-solutions-hub-container-cardds-inner-3 h1 {
    position: relative;
    top: 239px;
    font-size: 24px;
    color: white;
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;

    padding-inline: 40px;

}

.ai-solutions-hub-container-cardds-inner-3:hover {
    background: linear-gradient(165.44deg, rgba(25, 65, 97, 0.99) -26.34%, rgba(26, 67, 101, 0.99) 10.48%, rgba(9, 6, 43, 0.99) 89.69%);

}

.ai-solutions-hub-container-cardds-inner-3:hover .hover-over-content {
    display: flex;
    color: white;
    padding-inline: 48px;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;

    padding-top: 61px;
}

.ai-solutions-hub-container-cardds-inner-3:hover h1 {
    display: none !important;
    /* color: white; */
}









.ai-solutions-hub-container-cardds-inner-4 {
    position: relative;
    background-image: linear-gradient( 180deg,rgba(0, 0, 0, 0) 0%,rgba(0, 31, 55, 0.87) 70.19%, rgba(14, 64, 104, 0.87) 100%),url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/card4.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 363px;
    border-radius: 24px;
    width: 100%;
        background-position: center;
        opacity: 0.9;
}

.ai-solutions-hub-container-cardds-inner-4 h1 {
    position: relative;
    top: 239px;
    font-size: 24px;
    color: white;
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;

    padding-inline: 40px;

}

.ai-solutions-hub-container-cardds-inner-4:hover {
    background: linear-gradient(165.44deg, rgba(25, 65, 97, 0.99) -26.34%, rgba(26, 67, 101, 0.99) 10.48%, rgba(9, 6, 43, 0.99) 89.69%);

}

.ai-solutions-hub-container-cardds-inner-4:hover .hover-over-content {
    display: flex;
    color: white;
    padding-inline: 48px;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;

    padding-top: 61px;
}

.ai-solutions-hub-container-cardds-inner-4:hover h1 {
    display: none !important;
    /* color: white; */
}








.ai-solutions-hub-container-cardds-inner-5 {
    position: relative;
    background-image: linear-gradient( 180deg,rgba(0, 0, 0, 0) 0%,rgba(0, 31, 55, 0.87) 70.19%, rgba(14, 64, 104, 0.87) 100%), url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/card5.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 363px;
    border-radius: 24px;
    width: 100%;
        background-position: center;
        opacity: 0.9;
}

.ai-solutions-hub-container-cardds-inner-5 h1 {
    position: relative;
    top: 239px;
    font-size: 24px;
    color: white;
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;

    padding-inline: 40px;

}

.ai-solutions-hub-container-cardds-inner-5:hover {
    background: linear-gradient(165.44deg, rgba(25, 65, 97, 0.99) -26.34%, rgba(26, 67, 101, 0.99) 10.48%, rgba(9, 6, 43, 0.99) 89.69%);

}

.ai-solutions-hub-container-cardds-inner-5:hover .hover-over-content {
    display: flex;
    color: white;
    padding-inline: 48px;
    font-family: Manrope;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;

    padding-top: 61px;
}

.ai-solutions-hub-container-cardds-inner-5:hover h1 {
    display: none !important;
    /* color: white; */
}




@media screen and (max-width: 1660px) {
    .ai-solutions-hub-container-cardds {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
}


@media screen and (max-width: 1160px) {
    .ai-solutions-hub-container-cardds {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media screen and (max-width: 500px) {
    .ai-solutions-hub-container-cardds {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
    }
}










/* why-choose-us-ai */
.why-choose-us-ai{
    width: 100%;
    position: relative;
}
.why-choose-us-ai-container{
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #F0f5f9;
    padding-inline: 100px;
    padding-block: 100px;
    border-radius: 24px;
}
.why-choose-us-ai-head{
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    padding-bottom: 16px;
    margin-bottom: 0px;
}
.why-choose-us-ai-head-color{
    color: #0E65EA;
;
}
.why-choose-us-card-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* grid-template-columns: repeat(3,1fr); */
    gap: 24px;
    
}
.why-choose-us-card-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(33.33% - 18.96px);
    position: relative;
}
.why-choose-us-card-container-card-content{
    position: relative;
    width: 100%;
    height: 158px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 24px;
    border: 1px solid #C0D9FE

}
.why-choose-us-card-inner img{
    position:relative;
    top:30px;                
    left:40%;
    z-index: 1;
    height: 96px;
    width: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.why-choose-us-card-inner-para{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    margin-bottom: 0px;
    padding-inline: 32px;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    font-weight: 500;

}
@media screen and (max-width: 1441px) {
    .why-choose-us-ai-container{
        padding-inline: 50px;

    }
    .why-choose-us-card-inner img{
        left: 40%;
    }
    .why-choose-us-card-inner-para{
        padding-inline: 20px;
    }
    
}
@media screen and (max-width: 1600px) {

    .why-choose-us-card-container{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        column-gap: 24px;

    }
        .why-choose-us-card-inner-para{
        padding-inline: 10px;
    }
    .why-choose-us-card-inner{
        width: 100%;
    }
}
@media screen and (max-width: 1100px) {
    .why-choose-us-card-container{
        grid-template-columns: repeat(1,1fr);
    }
    .why-choose-us-ai-container{
        padding-inline: 10px;
        padding-block: 50px;
    }
    .why-choose-us-card-inner img{
        left: 40%;
    }
}
@media screen and (max-width: 500px) {
       .why-choose-us-card-inner img{
        left: 35%;
    }
    
}










/* leading-cross-ectors */
.leading-cross-ectors {
    width: 100%;
    height: 100%;
    position: relative;
}

.leading-cross-ectors-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.leading-cross-ectors-head {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 40px;

}

.leading-cross-ectors-head-color {
    color: #0E65EA;
}

.leading-cross-ectors-card-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.leading-cross-ectors-card-inner {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FE 100%);
    padding-top: 32px;
    padding-bottom: 38px;
    padding-left: 32px;
    border: 1px solid #D0D7E770;
    border-radius: 24px;
    width: calc(25.065% - 18.96px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* border-image-source: linear-gradient(243.63deg, rgba(208, 215, 231, 0.44) -5.04%, #C7D3F0 99.63%); */


}

.leading-cross-ectors-card-inner img {
    width: 100px;
    height: 100px;
}

.leading-cross-ectors-card-title{
    font-size: 28px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0%;
    color: #131313;
    text-transform: capitalize;
}

@media screen and (max-width: 1300px) {
    .leading-cross-ectors-card-container {
        display: grid;
        /* flex-wrap: wrap; */
        grid-template-columns: repeat(3, 1fr);
    }

    .leading-cross-ectors-card-inner {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .leading-cross-ectors-card-container {
        display: grid;
        /* flex-wrap: wrap; */
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .leading-cross-ectors-card-container {
        display: grid;
        /* flex-wrap: wrap; */
        grid-template-columns: repeat(1, 1fr);
    }
}






/* agentic-ai-services-section */
.agentic-ai-services-section {
    width: 100%;
    height: auto;
    position: relative;
    background-image: url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/agentic-ai-services-bg.png');
    background-repeat: no-repeat;
    background-size: 100vw 100vh;
}

.agentic-ai-services-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.agentic-ai-services-head {
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 42px;
    leading-trim: NONE;
    line-height: 56px;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: white;
    width: 417px;
}

.talk-button-container {
    display: flex;
    padding-block: 19px;
    padding-left: 12px;
    padding-right: 28px;
    /* justify-content: center; */
    width: 260px;
    gap: 10px;
    align-items: center;
    background: #0D6EFDE5;
    border-radius: 55px;
    border: 1px solid #054DB7;
    color: white;
}

.talk-arrow-icon {
    width: 28px;
    height: 28px;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
}










/* why should start */

.why-should-section {
    padding-bottom: 42px;
}

.why-should-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    position: relative;
}

/* .why-should-desc {
  max-width: 90%;
} */

.why-should-cards-container {
    margin-top: 15px;
    width: 100%;
    cursor: grab;
}

.why-should-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    height: auto;
    user-select: none;
}

.global-tech-swipper .navigators {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 30px;
    margin-top: 63px;
}

.card-image {
    width: 100%;
    height: auto;
}

.why-should-card .card-width {
    max-width: 320px;
}

.card-image>img {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
    border-radius: 7px;
}

.why-should-card-title-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-height: 97px;
}

/* why should end */
:root {
    --aim-blue: #1E73FF;
    --aim-text: #0B1324;
    --aim-muted: #6B7280;
    --aim-card-bg: #ffffff;
    --aim-shadow: 0 10px 24px rgba(16, 24, 40, .08);
    --aim-radius: 18px;
}

.ai-modernization {
    font-family: "Poppins", system-ui, -apple-system, Arial, sans-serif;
    color: var(--aim-text);
    background: #fff;
    padding: 56px 0 80px;
}

.aim-wrap {
    width: 100%;
    padding-left: 220px;
    /* margin-inline:auto; */
}

/* Heading area */
.aim-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding-right: 220px;
}

.aim-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
    margin: 0 0 15px 0;
}

.aim-title span {
    color: var(--aim-blue);
}

.aim-sub {
    color: #767676;
    font-size: 18px;
    line-height: 1.5;
    max-width: 723px;
    margin: 0;
}

/* Nav buttons */
.aim-nav {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 6px;
    background: #E8F1FF;
    border-radius: 60px;
    padding-block: 4px;
    padding-inline: 5px;
}

.aim-prev,
.aim-next {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: #F2F6FF;
    color: var(--aim-blue);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: var(--aim-shadow);
    transition: transform .15s ease;
}

.aim-prev:hover,
.aim-next:hover {
    transform: translateY(-1px);
}

.aim-prev:active,
.aim-next:active {
    transform: translateY(0);
}

/* Swiper sizing & spacing */
.aim-swiper {
    padding: 10px 2px 30px;
}

.swiper-wrapper{
gap: 24px;
}
.swiper-slide {
    width: 474px !important;
    height: auto;
}

/* Card */
.aim-card{
    display:flex;
    flex-direction:column;
    gap: 32px;
    background: #F8F9FC;
    border-radius: var(--aim-radius);
    /* box-shadow: var(--aim-shadow); */
    overflow:hidden;
    height:100%;
    border:1px solid #EFF3FB;
    padding-inline: 40px;
    padding-top: 50px;
    padding-bottom: 40px;
  }

.aim-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    /* padding-inline: 40px; */
    /* padding-top: ; */
    border-radius: 24px;
}

.aim-card-body h3 {
    font-size: 24px;
    margin: 0 0 12px 0;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
}

.aim-card-body p {
    margin: 0;
    color:#131313;
    font-size: 18px;
    line-height: 1.5;
}

/* Dots */
.swiper-pagination-bullets .swiper-pagination-bullet {
    background: #C8D9FF;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--aim-blue);
}

/* Small screens: stack head + move nav below title */
@media (max-width: 640px) {
    .aim-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .swiper-slide {
    width: 100% !important;

}
}

@media screen and (max-width: 1440px) {
    .aim-wrap {
        padding-left: 165px;
    }

    .aim-head {
        padding-right: 165px;
    }

    .aim-card {
        padding-top: 30px;
        padding-inline: 20px;
        padding-bottom: 30px;
    }

}

@media screen and (max-width: 1024px) {
    .aim-wrap {
        padding-left: 108px;
    }

    .aim-head {
        padding-right: 108px;
    }

}

@media screen and (max-width: 768px) {
    .aim-wrap {
        padding-left: 50px;
    }

    .aim-head {
        padding-right: 50px;
    }

}

@media screen and (max-width: 641px) {
    .aim-wrap {
        padding-inline: 16px;
    }

    .aim-card {
        padding-top: 30px;
        padding-inline: 20px;
        padding-bottom: 30px;
    }

    .aim-head {
        padding-right: 16px;
    }

}









/* take-our-word */
.take-our-word {
    position: relative;
    width: 100%;
    background-image: url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/just-background.png');
    background-repeat: no-repeat;
    background-size: cover;

}

.take-our-word-container {
    width: 100%;
    /* height: 100; */
    position: relative;
    color: white;
}

.take-our-word-container-head {
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.take-our-word-container-slider {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: row;
    /* overflow-x: scroll; */
    /* overflow-x: hidden; */
    position: relative;
    /* make it a horizontal viewport */
    display: flex;
    /* children become slides */
    overflow-x: auto;
    /* programmatic + touch scroll */
    scroll-behavior: smooth;
    /* smooth JS scroll */
    scroll-snap-type: x mandatory;
    /* snap per slide */

    /* hide scrollbar (optional) */
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
    border-radius: 24px;
}

.take-our-word-container-slider-1 {
    display: flex;
    flex-direction: row;
    flex: 0 0 100%;
    /* exactly one slide per view */
    scroll-snap-align: start;
    /* snap to each slide */

    gap: 67px;
    justify-content: center;
}

.take-our-word-container-slider-left {
    display: flex;
    flex-direction: column;
    gap: 52px;
    justify-content: center;
    padding-left: 100px;
    width: 100%;
}

.take-our-word-container-slider-left-para {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 46px;
    letter-spacing: 0%;
    color: #131313;
}

.take-our-word-container-slider-left-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.take-our-word-container-slider-left-bottom-autho-info {
    display: flex;
    flex-direction: row;
    gap: 12px;
    color: #476CA4;
    justify-content: center;
    align-items: center;
}

.take-our-word-container-slider-left-bottom-autho-info img {
    border-radius: 9px;
}

.client-deatiles {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}

.client-deatiles h3 {
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 46px;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-bottom: 0px !important;

}

.client-deatiles p {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 27px;
    letter-spacing: 0%;

}

.logo-ipm {
    width: 270px;
    height: 75px;
    object-fit: fill;
}

@media screen and (max-width: 1742px) {
    .take-our-word-container-slider-left {
        padding-left: 50px;
    }

    .take-our-word-container-slider-left-para {
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 20px;
        leading-trim: NONE;
        line-height: 33px;
        letter-spacing: 0%;
        color: #131313;
    }

    .take-our-word-container-slider-1 {
        gap: 30px;
    }

    .client-deatiles h3 {
        font-family: Poppins;
        font-weight: 600;
        font-style: SemiBold;
        font-size: 18px;
        leading-trim: NONE;
        line-height: 16px;
        letter-spacing: 0%;
    }

    .client-deatiles p {
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 16px;
        letter-spacing: 0%;

    }

    .logo-ipm {
        width: 156px;
        height: 40px;
        object-fit: fill;
    }
}

@media screen and (max-width: 400px) {
    .logo-ipm {
        width: 86px;
        height: 30px;
    }
}

@media screen and (max-width: 1110px) {
    .take-our-word-container-slider-1 {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .take-our-word-container-slider-left {
        padding-inline: 50px;
        padding-top: 30px;
    }

    .take-our-word-container-slider-left {
        gap: 20px;
    }
}

.take-our-word-container-slider-right {
    width: 100%;
    display: flex;
    justify-content: center;

}

.right-side-slide-image {
    width: 100%;
    object-fit: cover;
}


/* click feedback */
#left-arrow.is-pressed,
#right-arrow.is-pressed {
    background: #0E65EA;
    /* requested active color */
    transform: scale(.98);
}

/* disabled state at edges */
#left-arrow.is-disabled,
#right-arrow.is-disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
    /* prevents clicks when disabled */
}

.take-our-word-container-slider-arrows {
    position: absolute;
    display: flex;
    flex-wrap: row;
    justify-content: space-between;
    width: 100%;
    top: 50%;
    z-index: 1;
}

#left-arrow {
    position: relative;
    left: -26px;
}

#right-arrow {
    position: relative;
    left: 26px;
}


.bg-ai-image-section {
    background: linear-gradient(0deg, #1E5BB1, #1E5BB1),
        linear-gradient(259.54deg, #1660C2 0%, #0B1E37 180.74%) !important;

}

/* form-container code  from amal */

.menu-form {
    margin: 0 auto;
    position: relative;
    /* background-image: url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/uk-2025/background-img-form.png');
  background-repeat: no-repeat;
  background-size: contain; */
    /* background: linear-gradient(0deg, rgba(238, 242, 245, 0.2) 0%, rgba(232, 236, 239, 0.31) 23.55%, rgba(219, 222, 223, 0.58) 72.03%, #C8C8C8 138.52%); */


}

.background-img-top {
    position: absolute;
    top: 0;
    left: 0;
}

.background-img-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}

.background-img-top img,
.background-img-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

.background-img-top {
    /* position: relative; */
    width: 100%;
    margin-bottom: 20px;
}

.background-img-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    /* Push behind form content */
}

.menu-form h1 {
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 66px;
    color: black;


}

.first {
    width: 100%;
    margin-bottom: 55px;

}

.form-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
}

.input-form {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.first input {
    width: 100%;
    height: 45px;
    border: none;
    border-bottom: 1px solid #CACACA;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #818181;


}

.second {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 50px;
    /* margin-bottom: 55px; */

}

.second select {
    width: 100%;
    height: 45px;
    border: none;
    border-bottom: 1px solid #CACACA;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #818181;
}

.message {
    width: 100%;
    /* margin-top: 40px; */

}

.message input {
    width: 100%;
    height: 70px;
    border: none;
    border-bottom: 1px solid #CACACA;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #818181;
}

.submit-btn {
    text-align: center;
}

.submit-btn input {
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.4px;
    text-transform: capitalize;
    padding: 12px 40px;
    background: #1977F3 !important;
    text-align: center;
    align-items: center;
    border-radius: 25px;
    border: none;
    color: white;
}

.menu-form p {

    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: -0.4px;
    text-transform: capitalize;

}

.menu-form p {
    text-align: start;
    margin-bottom: 48px;

}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .menu-form h1 {
        font-weight: 700;
        font-size: 30px;
        line-height: 40px;
        text-align: center;
        margin-bottom: 29px;

    }

    .input-form {
        display: flex;
        flex-direction: column;
        margin-bottom: 0px;
        gap: 0px !important;
    }

    .second {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .message {
        margin-bottom: 30px;
    }

    .menu-form p {
        margin-bottom: 33px;

    }
}

@media (max-width: 550px) {
    .menu-form {
        background-image: url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/uk-2025/image (16).png');
        background-repeat: no-repeat;
        background-size: contain;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: flex;
    }

}

@media (max-width: 400px) {
    .menu-form {
        background-image: url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/uk-2025/image (16).png');
        background-repeat: no-repeat;
        background-size: contain;
    }

}

.menu-form .wpcaptcha-16 {
    position: absolute;
    bottom: 188px;
}

@media screen and (max-width: 1024px) {
    .menu-form .wpcaptcha-16 {
        bottom: 106px;
    }
}

@media (min-width: 769px) {
    .menu-form .form-container {
        gap: 0px;
        height: 200px;
    }
}


@media (max-width: 768px) {
    .input-form {
        gap: 0px;
    }

    .second {
        gap: 0px;
        margin-bottom: -20px;
    }

    .second select {
        font-size: 12px !important;
    }

    .form-container {
        gap: 0px !important;
    }

    .message textarea {
        font-size: 12px;
        color: #818181 !important;
    }

    .first {
        margin-bottom: 27px !important;
    }

    .menu-form p {
        margin-bottom: 25px !important;
    }
}

.second select,
.second textarea,
.second .your-recipient {
    border-bottom: 1px solid #CACACA !important;
    color: #818181 !important;
    padding: 0 !important;

}

#conditional-input {
    padding: 0px 5px;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    display: none !important;
}


.second {
    justify-content: space-between
}

.message textarea {
    width: 100%;
    height: 70px;
    border: none;
    border-bottom: 1px solid #CACACA;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #818181;
}

.screen-reader-response {
    display: none;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
    color: red;
    font-family: Poppins;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
}

.c4wp-display-captcha-form label {
    padding-right: 8px;
}

.c4wp_user_input_captcha {
    border: none !important;
    border-bottom: 1px solid #131313 !important;
}

#conditional-input {
    width: 100%;
    height: 45px;
    border: none;
    border-bottom: 1px solid #CACACA;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #818181;
}

.input-form {
    gap: 30px;
}

.wpcf7-response-output {
    text-align: center;
}

#uk-footer-contact:disabled {
    cursor: not-allowed !important;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.form-control {
    border-radius: 0;
}

.formouter {
    display: none !important;
}

.second p {
    width: 100% !important;
}

.c4wp-display-captcha-form {
    color: #131313 !important;
}

p.c4wp-display-captcha-form,
p.c4wp-display-captcha-form label {
    display: unset !important;
}

button:not(.toggle),
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.bg-accent,
.bg-accent-hover:hover,
.bg-accent-hover:focus,
:root .has-accent-background-color,
.comment-reply-link {
    background-color: unset;
}

/* =========================
   Popup Overlay + Container
   ========================= */
#case-study-popup-1.custom-popup-overlay {
    display: none;
    /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#case-study-popup-1 .custom-popup {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 6px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: popupFadeIn 0.3s ease;
}

/* =========================
   Header
   ========================= */
#case-study-popup-1 .popup-header {
    background: #0071BC;
    /* Blue header */
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
}

#case-study-popup-1 .popup-header h3 {
    margin: 0;
    font-size: 18px;
}

#case-study-popup-1 .popup-close {
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

/* =========================
   Body + Form
   ========================= */
#case-study-popup-1 .popup-body {
    padding: 20px;
}

#case-study-popup-1 .wpcf7-form p {
    margin: 0 0 15px;
}

/* =========================
   Input & Select Fields
   ========================= */
#case-study-popup-1 input.wpcf7-form-control,
#case-study-popup-1 select.wpcf7-form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 12px;
}

#case-study-popup-1 input.wpcf7-form-control:focus,
#case-study-popup-1 select.wpcf7-form-control:focus {
    border-color: #0071BC;
    box-shadow: 0 0 4px rgba(0, 113, 188, 0.3);
}

/* =========================
   Submit Button
   ========================= */
#case-study-popup-1 input[type="submit"] {
    background: #E8B23A;
    /* Gold color */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

#case-study-popup-1 input[type="submit"]:hover {
    background: #d19c28;
}

/* =========================
   Messages
   ========================= */
#case-study-popup-1 .wpcf7-response-output {
    margin-top: 10px;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
}

/* Success Message */
#case-study-popup-1 .wpcf7-mail-sent-ok {
    border: 1px solid #46b450;
    background: #e6f6ea;
    color: #2e8540;
}

/* Error Message */
#case-study-popup-1 .wpcf7-validation-errors {
    border: 1px solid #dc3232;
    background: #fdecea;
    color: #a40000;
}

/* =========================
   Animation
   ========================= */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#cf7-success h3 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
}

#cf7-success p {
    text-align: center !important;
}


/* blog-card-section */
.blog-section {
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.blog-section-heading {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -0.4px;
    text-align: center;
    vertical-align: middle;
    color: black;

}

.blog-section-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;

    /* flex-wrap: wrap; */
}

.blog-section-card-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #F4F4F4;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}


.blog-img-card {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.blog-img-card p {
    text-align: start;
    position: absolute;
    top: 0px;
    border-bottom-right-radius: 27px;
    background: #1977F3;
    padding-right: 28px;
    padding-left: 19px;
    padding-top: 12px;
    padding-bottom: 10px;
    color: white;
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    vertical-align: middle;
    border-top-left-radius: 24px;
    width: 66%;

}

.blog-img-card img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.blog-section-card-inner-text {
    padding-left: 30px;
    padding-right: 136px;
    padding-top: 24px;
    padding-bottom: 20px;

}

@media (max-width: 1370px) {
    .blog-section-card-inner-text {
        padding-right: 25px;
    }
}

.blog-section-card-inner-text h6 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #5C5C5B;

}

.blog-section-card-inner-text h4 {
    font-family: Poppins;
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    margin-bottom: 15px;
    color: #212121;

}

.blog-section-card-inner-text p {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #5C5C5B;
}


/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

/* Heading */
.section-header h2 {
    font-size: 48px;
    font-style: bold;
    font-weight: 700;
    color: #131313;
    line-height: 100%;
    letter-spacing: 0px;
}

.section-header h2 span {
    color: #0D6EFD;
    /* blue highlight */
}

/* Toggle Container */
.toggle-wrapper {
    display: flex;
    background: #f0f6ff;
    /* light blue bg */
    border-radius: 40px;
    padding: 5px;
    gap: 8px;
}

/* Toggle Buttons */
.toggle-btn {
    border: none;
    background: transparent;
    font-weight: 500;
    font-size: 20px;
    color: #131313;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 24px;
    letter-spacing: 0px;
}

.toggle-btn.active {
    background: #0D6EFD;
    color: #fff;
}


/* Responsive: below 599px */
@media (max-width: 599px) {
    .section-header {
        flex-direction: column;
        /* stack vertically */
        align-items: flex-start;
        /* left align */
        gap: 15px;
        /* space between title & toggle */
    }

    .toggle-wrapper {
        width: 61%;
        justify-content: space-between;
        /* keep toggle aligned left */
    }
}

@media (max-width: 1370px) and (min-width: 1200px) {
    .blog-img-card p {
        width: 75%;
    }

}




@media (max-width: 1024px) {
    .blog-section-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 650px) {
    .blog-section-card {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .blog-section-heading {
        font-family: Poppins;
        margin-bottom: 35px;
        font-weight: 700;
        font-size: 30px;
        line-height: 36px;
        letter-spacing: -0.4px;
        text-align: center;
        vertical-align: middle;

    }

}

@media (max-width: 550px) {
    .blog-img-card p {
        width: 76%;
    }

}

a {
    color: none !important;
    text-decoration: none !important;
}



/* FAQs section */
.faq-section {
    /* background-color: #EEF2F5; */
    background: #ffffff
}

.faq-section-common-padding {
    padding-inline: 165px;
    padding-top: 63px;
    padding-bottom: 97px;
}

.faq-container {
    /* padding:100px 0px; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-container h2 {
    text-align: center;
    font-family: Poppins;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.4px;
    text-transform: capitalize;
    color: black;

}

.faq-container p {
    /* font-family: Poppins;
font-weight: 400;
font-size: 16px;
line-height: 40px;
letter-spacing: -0.4px;
text-transform: capitalize; */
    /* color: ; */
    /* color: #1977F3; */


}

.faq-first {
    color: #1977F3;
    font-family: Poppins;
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: -0.4px;
    text-transform: capitalize;
}

.faq-accordion {
    width: 100%;
    margin-inline: auto;
    margin-top: 2rem;
    max-width: 1020px;
}

.faq-accordion-item {
    /* border-bottom: 1px solid #ccc; */
    border-bottom: 1px solid rgba(156, 181, 199, 1)
}

.faq-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    /* padding: 1.4rem; */
    cursor: pointer;
}

.faq-accordion-header h5 {
    font-size: 24px !important;
    line-height: 120%;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0px;
    color: #131313;
    padding-bottom: 20px;
    padding-top: 23px;

}

.faq-accordion-header svg {
    width: 2.5rem;
    height: 2.5rem;
    transition: all 0.3s ease-out;
}

.faq-accordion-content {
    padding: 0px;
    overflow: hidden;
    transition: all 0.3s ease-out;
    padding-inline: 1rem;
    max-height: 0;
    color: #565656;
    font-size: 16px;
    line-height: 1.2;
}

.faq-accordion-content ul {
    list-style: decimal;
    margin-left: 1rem;
}

@media (max-width: 1024px) {
    .faq-section-common-padding {
        padding-inline: 108px;
        padding-top: 53px;
        padding-bottom: 67px;
    }

}

@media (max-width: 768px) {
    .faq-section-common-padding {
        padding-inline: 51px;
        padding-top: 50px;
        padding-bottom: 67px;
    }

}

@media (max-width: 612px) {
    .faq-container h2 {
        font-family: Poppins;
        font-weight: 700;
        font-size: 30px;
        line-height: 40px;
        letter-spacing: -0.4px;
        text-align: center;
        text-transform: capitalize;

    }

}

@media (max-width: 425px) {
    .faq-section-common-padding {
        padding-inline: 28px;
        padding-top: 50px;
        padding-bottom: 67px;
    }

}

.socialmedia_wrap{
    width: 50% !important;
}

/* final changes */
@media screen and (max-width: 1440px) {
    .challenges-we-slove-card-1-inner p{
        font-size: 14px;
    }
}
@media screen and (max-width: 768px){
     .hero-content h1 {
        text-align: center;
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: -0.4px;
        text-align: center;
    }
           .section-heading{
            font-family: Poppins;
            font-weight: 700;
            font-style: Bold;
            font-size: 24px;
            leading-trim: NONE;
            line-height: 30px;
            letter-spacing: 0%;
            text-align: center;
        }
        .section-para{
            font-family: Poppins;
            font-weight: 400;
            font-style: Regular;
            font-size: 14px;
            leading-trim: NONE;
            line-height: 21px;
            letter-spacing: 0%;
            text-align: center;
        }
     .what-we-offer-section-head{
font-family: Poppins;
            font-weight: 700;
            font-style: Bold;
            font-size: 24px;
            leading-trim: NONE;
            line-height: 30px;
            letter-spacing: 0%;
            text-align: center;
}
    .what-we-offer-ineer-card h2{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
    }
    .what-we-offer-ineer-card p{
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 21px;
        letter-spacing: 0%;
        text-align: center;
    }
    .what-we-offer-bottom h1{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
    }
    .what-we-offer-bottom-button{
        width: 100%;
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 24px;
        letter-spacing: -0.4px;
        text-align: center;
        text-transform: capitalize;
}
    .intelligent-sdlc-head h1{
        padding-top: 30px;
        align-items: center;
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .intelligent-sdlc-right-content p{
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        leading-trim: CAP_HEIGHT;
        line-height: 21px;
        letter-spacing: 0%;
        /* text-align: center; */
        margin-top: 8px;
    }
/* .count{
    color: #F3F3F3;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 47.17px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
} */
.challenges-we-slove h1{
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
}
.challenges-we-slove-card-1-inner p{
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 133%;
    letter-spacing: 0px;
    vertical-align: middle;
}
.ai-solutions-hub-container-head{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
}
.ai-solutions-hub-container-cardds-inner-1 h1{
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 133%;
    letter-spacing: 0px;
    vertical-align: middle;
}
.hover-over-content{
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: CAP_HEIGHT;
    line-height: 21px;
    letter-spacing: 0%;
    text-align: center;
}
.why-choose-us-ai-head{
            font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
}
.leading-cross-ectors-head{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
}
.next-generation h1{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
}
.take-our-word-container-head{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
}
}
.logo-section-padding{
    padding-inline: 220px;
    padding-top: 100px;
}
.what-we-offer-section{
    /* padding-inline: 220px; */
    padding-top: 0px;
}
.connected-future{
    padding-bottom: 100px;
}
.challenges-we-slove{
    padding-top: 0px;
}
.why-choose-us-ai{
    padding-block: 0px;
}
.faq-section-common-padding{
    padding-top: 0px;
}
@media screen and (max-width: 1441px) {
    .logo-section-padding{
        padding-inline: 165px;
    }
}
@media screen and (max-width: 1024px) {
    .logo-section-padding {
        padding-inline: 108px;
        padding-top: 50px;
    }
}
@media screen and (max-width: 768px) {
    .logo-section-padding {
        padding-inline: 50px;
        padding-top: 50px;
    }
}
@media screen and (max-width: 540px) {
    .logo-section-padding {
        padding-inline: 16px;
    }
}
/* .why-choose-us-ai-container{
    width: 100%;
    height: 100%;
    position: relative;
    background-image: url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/ai-agent-why-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding-inline: 100px;
    padding-block: 100px;
} */

/* .logo-section{
    padding-inline: 220px;
    padding-top: 100px;
    padding-bottom: 0px;
} */

.count{
    color: #F3F3F3;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 47.17px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
}


@media screen and (max-width: 540px) {
    .logo-section-padding {
        padding-inline: 16px;
    }
    .next-generation p{
        text-align: center !important;
    }
}

@media screen and (max-width: 540px) {
    .logo-section-padding {
        padding-inline: 16px;
    }
    .next-generation p{
        text-align: center !important;
    }
}

@media screen and (max-width: 768px){
     .hero-content h1 {
        text-align: center;
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: -0.4px;
        text-align: center;
    }
           .section-heading{
            font-family: Poppins;
            font-weight: 700 !important;
            font-style: Bold;
            font-size: 24px !important;
            leading-trim: NONE;
            line-height: 30px !important;
            letter-spacing: 0% !important;
            text-align: center;
        }
        .section-para{
            font-family: Poppins;
            font-weight: 400;
            font-style: Regular;
            font-size: 14px;
            leading-trim: NONE;
            line-height: 21px;
            letter-spacing: 0%;
            text-align: center;
        }
     .what-we-offer-section-head{
            font-family: Poppins;
            font-weight: 700;
            font-style: Bold;
            font-size: 24px;
            leading-trim: NONE;
            line-height: 30px;
            letter-spacing: 0%;
            text-align: center;
            padding-bottom: 20px;
}
    .what-we-offer-ineer-card h2{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
    }
    .what-we-offer-ineer-card p{
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        leading-trim: NONE;
        line-height: 21px;
        letter-spacing: 0%;
        text-align: center;
    }
    .what-we-offer-bottom h1{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
    }
    .what-we-offer-bottom-button{
        width: 100%;
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 24px;
        letter-spacing: -0.4px;
        text-align: center;
        text-transform: capitalize;
}
    .intelligent-sdlc-head h1{
        padding-top: 30px;
        align-items: center;
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .intelligent-sdlc-right-content p{
        font-family: Poppins;
        font-weight: 400;
        font-style: Regular;
        font-size: 14px;
        leading-trim: CAP_HEIGHT;
        line-height: 21px;
        letter-spacing: 0%;
        /* text-align: center; */
        margin-top: 8px;
    }
.challenges-we-slove h1{
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
}
.challenges-we-slove-card-1-inner p{
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 133%;
    letter-spacing: 0px;
    vertical-align: middle;
}
.ai-solutions-hub-container-head{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px !important;
        leading-trim: NONE;
        line-height: 30px !important;
        letter-spacing: 0%;
        text-align: center;
}
.ai-solutions-hub-container-cardds-inner-1 h1{
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 133%;
    letter-spacing: 0px;
    vertical-align: middle;
}
.hover-over-content{
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: CAP_HEIGHT;
    line-height: 21px;
    letter-spacing: 0%;
    text-align: center;
}
.why-choose-us-ai-head{
            font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
}
.leading-cross-ectors-head{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
}
.next-generation h1{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
}
.take-our-word-container-head{
        font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        leading-trim: NONE;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
}

.intelligent-sdlc-head h2,
.challenges-we-slove h2,
.modernize-section-content h2,
.ai-solutions-hub-container-head,
.next-generation h2,
.section-header h2 {
            font-family: Poppins;
        font-weight: 700;
        font-style: Bold;
        font-size: 24px !important;
        leading-trim: NONE;
        line-height: 30px !important;
        letter-spacing: 0%;
        text-align: center;
        padding-top: 20px;
}

.intelligent-sdlc-comtainer{
    gap: 50px;
}

}

@media screen and (max-width: 1441px) {
    .logo-section-padding{
        padding-inline: 165px;
    }
    .what-we-offer-section{
        padding-top: 0px;
    }
}
@media screen and (max-width: 1024px) {
    .logo-section-padding {
        padding-inline: 108px;
        padding-top: 50px;
    }
    .what-we-offer-section{
        padding-top: 0px;
    }
}
@media screen and (max-width: 768px) {
    .logo-section-padding {
        padding-inline: 50px;
        padding-top: 50px;
    }
    .what-we-offer-section{
        padding-top: 0px;
    }
}
@media screen and (max-width: 540px) {
    .logo-section-padding {
        padding-inline: 16px;
    }
    .next-generation p{
        text-align: center !important;
    }
    .what-we-offer-section{
        padding-top: 0px;
    }
}
.why-choose-us-ai-container{
    width: 100%;
    height: 100%;
    position: relative;
    background-image: url('https://thinkpalm.com/wp-content/themes/thinkpalm/images/agentic-ai/ai-agent-why-bg.png');
    background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 1470px) {
.logo-section{
    padding-inline: 220px;
    padding-top: 100px;
    padding-bottom: 0px;
}
.connected-future{
    padding-bottom: 100px;
}
.challenges-we-slove{
    padding-top: 0px;
}
.why-choose-us-ai{
    padding-block: 0px;
}
.faq-section-common-padding{
    padding-top: 0px;
}
}

.bannerbtn-arrow{
    padding-right: 10px;
}

@media screen and (max-width: 1441px) {
    .robo-icon img{
    right: 120px;
    /* width: 356px; */
}
.first-button{
    padding-right: 20px;
}
}
@media screen and (max-width: 1350px) {
    .second-button{
        padding-inline: 9px;
    }
}
@media screen and (max-width: 1237px) {
    .buttom-container{
        display: flex;
        flex-direction: column;
        width: 350px;
    }
}
@media screen and (max-width: 1111px) {
    .buttom-container{
        display: flex;
        width: 100%;
        flex-direction: row;
    }
    .robo-icon img{
        right: 0px;
    }
}
@media screen and (max-width: 768px) {
    .buttom-container{
        display: flex;
        flex-direction: column;
    }
}
.aim-nav .aim-prev:not(.swiper-button-disabled),
.aim-nav .aim-next:not(.swiper-button-disabled){
  background:#0D6EFDE5;
  color:#fff;
}

.aim-nav .aim-next:not(.swiper-button-enabled){
    background:#0D6EFDE5;
}
.aim-nav .swiper-button-disabled{
  background:transparent !important;
  color:#0D6EFDE5 !important;
  opacity:1;
  box-shadow:none;
}

.aim-nav .aim-prev:hover,
.aim-nav .aim-next:hover {
      color: #0D6EFDE5 !important;
}

.intelligent-sdlc-comtainer{
    padding-top: 20px;
    padding-right: 68px;
}

@media screen and (max-width: 1024px) {
.intelligent-sdlc-comtainer{
        padding-inline: 24px;
    }


}

@media screen and (max-width:  1460px){
.next-generation{
width: 60%
}
}

@media screen and (max-width: 1110px){
.next-generation{
width: 100%
}
}


@media screen and (max-width:  768px){
.first-button,.second-button{
justify-content: center;
}
}
/* header logo */

    .brnd-lg {
        position: absolute !important;
        z-index: 101;
        top: 10px !important;
        left: 165px !important;
    }

    @media screen and (max-width: 1024px) {
        .brnd-lg {
            left: 108px !important;
        }
    }

    @media screen and (max-width: 768px) {
        .brnd-lg {
            left: 50px !important;
        }
}

@media screen and (min-width: 1550px){
    .brnd-lg {
        left: 220px !important;
 
 
    }
}

.intelligent-sdlc-right-scroll{
  display:flex;
  flex-direction:column;
  height:494px;
  overflow-y:  scroll;
  gap:24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.intelligent-sdlc-right-scroll::-webkit-scrollbar{
  width: 0;
  height: 0;
}

@media screen and (max-width: 1441px) {
    .intelligent-sdlc-comtainer{
    gap:20px
    } 

}

.right-side-slide-image{
    width: 566px;
}
.take-our-word-container-slider{
    padding-top: 60px;
    padding-bottom: 52px;
}
@media screen and (max-width: 1441px) {
    .right-side-slide-image{
        width: 100%;
    }
}
@media screen and (min-width: 1450px) {
    .what-we-offer-section{
        padding-block: 72px;
    }
}

.take-our-word-container-slider-arrows{
  display:flex;
  gap:10px;
  align-items:center;
  border-radius:999px;
  padding:8px 12px;
}
#left-arrow, #right-arrow{
  width:60px; height:60px;
  display:grid; place-items:center;
  border:none; outline:0;
  border-radius:50%;
  background:#F0f5f9;
  color:#0E65EA;
  cursor:pointer;
  transition:background .2s, color .2s, box-shadow .2s, transform .08s, opacity .2s;
}
 #right-arrow{
    left: 50px;
 }
  #left-arrow{
    left: -36px !important;
 }
#left-arrow:not(.is-disabled):hover,
#right-arrow:not(.is-disabled):hover,
#left-arrow.is-active,
#right-arrow.is-active{
  background:#1677ff;
  color:#fff;
  box-shadow:0 8px 18px rgba(22,119,255,.25);
}
#left-arrow.is-pressed, #right-arrow.is-pressed{ transform:scale(.96); }
#left-arrow.is-disabled, #right-arrow.is-disabled{
  background:transparent;
  background:#E8F1FF !important;
  color:#0E65EA;
  opacity:1;
  pointer-events:none; 
  box-shadow:none;
}
#left-arrow:focus-visible, #right-arrow:focus-visible{
  box-shadow:0 0 0 3px rgba(22,119,255,.35);
  border-radius:50%;
}
.take-our-word-container-slider-arrows .nav-btn{
    background-color: #F0f5f9;
}

.captchawrapper{
    padding-bottom: 12px;
}
.captchawrapper .c4wp-display-captcha-form #c4wp_user_input_captcha{
    border-radius: 0px !important;
}

.customer-logos .slide {
  display: flex !important;
  align-items: center;   /* vertical centering */
  justify-content: center; /* horizontal centering */
  padding: 0 0px;       /* 100px total gap */
  box-sizing: border-box;
}

.customer-logos .slide img {
  max-height: 100%;   /* scale image within slide */
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain; /* prevents distortion */
}

/* Tablets */
@media (max-width: 768px) {
  .customer-logos .slide img {
    max-height: 120px;
  }
}

/* Mobiles */
@media (max-width: 480px) {
  .customer-logos .slide {
    padding: 0 0px; /* reduce gap */
  }
  .customer-logos .slide img {
    max-height: 100px;
  }
}

.customer-logos{
    padding-inline: 165px;
    margin-top: 100px;
    /* margin-bottom: 100px; */
}
@media screen and (max-width: 1024px) {
    .customer-logos {
        padding-inline: 108px;
    }
}

@media screen and (max-width: 768px) {
    .customer-logos {
        padding-inline: 50px;
        margin-top: 50px;
    }
}

@media screen and (max-width: 540px) {
     .customer-logos {
        padding-inline: 16px;
        margin-top: 30px;
    }
}

.intelligent-sdlc-right-card-1-head img {
    height: 80px;
    width: 80px;
}

/* @media screen and (max-width: 1400px) {
    .challenges-we-slove-card-1{
        height: 190px;
    }
} */