.boxDesign1 {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
    background-color: var(--card-clr);
    border-radius: .5rem;
    border-left: 2px solid var(--dark-clr);
    height: 100%;
}

#ai .boxDesign2 {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    border: 1px solid transparent;
    background-color: var(--card-clr);
    padding: 1rem;
    border-radius: .5rem;
    height: 100%;
    transform: translateY(0);
    transition: .2s ease-in-out;
}

#ai .boxDesignIcon,
#ai .hcIcon {
    background-image: url('/img/v2/service/ai-token-sprites.webp');
}

#ai .boxDesignIconContainer {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

#ai .boxDesignTxt {
    color: black;
    font-size: 1.1rem;
    transition: .2s ease-in-out;
}

#ai .boxDesign2:hover .boxDesignTxt {
    color: var(--dark-clr);
}

#ai .boxDesign2:hover {
    transform: translateY(-5px);
    border: 1px solid var(--dark-clr);
}

#ai .boxDesign3 {
    padding: 1rem 1rem;
    border: 1px solid var(--dark-clr);
    border-radius: .75rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .5rem;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#ai .dummyImg {
    width: 45px;
    height: 45px;
    background: linear-gradient(107.43deg,
            rgba(0, 104, 199, 1) 0%,
            rgba(0, 0, 0, 1) 100%);
    border-radius: .5rem;
}

#ai .capt-txt {
    font-size: .90rem;
    font-weight: 600;
    text-transform: uppercase;
}

#ai .headerCircleBox {
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 2px solid var(--dark-clr);
    background-color: #fff;
    padding: 1.5rem 2.5rem;
    border-radius: 6rem;
    overflow-x: scroll;
    scrollbar-width: none;
}

#ai .hcIconBtn {
    display: flex;
    align-items: center;
    border: 8px solid var(--card-clr);
    border-radius: 100%;
    padding: .5rem .5rem;
}

#ai .hcIconBtn.active {
    border: 8px solid var(--dark-clr);
}

#ai .hcIconContainer {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    border-radius: 100%;
    border-radius: 1rem;
    transform: scale(1.25);
}

#ai .hcb-content-box {
    border: 2px var(--dark-clr);
    background-color: var(--card-clr);
    border-style: solid solid none solid;
    padding: 1.5rem;
    border-radius: 1rem;
    height: 100%;
    text-align: center;
}


#ai .gradBg1 {
    position: relative;
    background: linear-gradient(254.42deg,
            rgba(43, 161, 227, 1) 0%,
            rgba(0, 104, 199, 1) 100%);
    border-radius: 1rem;
    padding: 4rem 2rem;
}

#ai .ctacenteredImg1 {
    position: absolute;
    bottom: -16%;
    right: 15%;
}

#ai .ctacenteredImg2 {
    position: absolute;
    bottom: -16%;
    right: 15%;
}

#ai .ctacenteredImg3 {
    position: absolute;
    bottom: -10%;
    right: 15%;
}

#ai .ctacenteredImg4 {
    position: absolute;
    bottom: -5%;
    right: 20%;
}

#ai .aiagentCtabtn {
    position: relative;
    background-color: #111;
    color: #fff;
    padding: .5rem 1.75rem;
    border-radius: .5rem;
    transform: scale(1);
    overflow: hidden;
    transition: transform 0.4s ease-in-out, 0.4s ease-in-out;
}

#ai .aiagentCtabtn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40%;
    width: 15%;
    height: 40%;
    border-radius: 100%;
    background-color: #fff;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out, 0.4s ease-in-out;
}

#ai .aiagentCtabtn:hover::before {
    transform: translateY(0);
    left: 0%;
    width: 100%;
    height: 100%;
    border-radius: 0%;
}

#ai .aiagentCtabtn:hover {
    transform: scale(1.10);
    color: #111;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#ai .accordion-item {
    border: 2px var(--dark-clr);
    border-style: none none solid none;
}

#ai .accordion-button:focus {
    box-shadow: none;
}

#ai .accordion-button::after {
    background-image: url(/img/v2/homeWeb/right-blue-arrow.webp);
    background-repeat: no-repeat;
}

#ai .accordion-button:not(.collapsed) {
    color: var(--dark-clr);
    background-color: transparent;
}

#ai .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

#ai .dp-center-line {
    position: relative;
    margin-top: 2rem;
}

#ai .dp-center-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
    width: 4px;
    height: 100%;
    border-radius: 1rem;
    background-color: var(--background-card);
}

#ai .dp-card:nth-child(even) {
    padding-left: calc(50% + 50px);
}

#ai .dp-card:nth-child(odd) {
    padding-right: calc(50% + 50px);
    padding-left: 0;
}

#ai .dp-card-inner-odd,
#ai .dp-card-inner-even {
    position: relative;
    background-color: white;
    border: 2px solid var(--dark-clr);
    border-radius: 1rem;
    padding: 1rem 1.75rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: start;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    z-index: 1;
}

#ai .dp-card-number-odd {
    position: absolute;
    top: 0%;
    right: -10.3%;
}

#ai .dp-card-number-even {
    position: absolute;
    top: 4%;
    left: -9.7%;
}

#ai .related-circle {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: var(--dark-clr);
    border: 2px solid var(--dark-clr);
    border-radius: 100%;
}

#ai .dp-shortPoint-highligher {
    display: block;
    font-size: .90rem;
    padding: .5rem;
    background-color: var(--card-clr);
    border: 1px solid var(--dark-clr);
    border-radius: 1rem;
    color: var(--dark-clr);
}

#ai .dp-cta-btn {
    background-color: var(--dark-clr);
    color: white;
    padding: .5rem 1rem;
    border-radius: 2rem;
    transition: .3s ease-in-out;
}

#ai .dp-cta-btn:hover {
    animation: pulsedp 1s;
    box-shadow: 0 0 0 1em transparent;
}

@keyframes pulsedp {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 76, 158, 1);
    }
}


#ai .techstack-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: .5rem;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#ai .cs3-point-box {
    background-color: var(--card-clr);
    padding: .6rem;
    border-radius: .5rem;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transition: .3s ease-in-out;
}

#ai .cs3-point-box:hover {
    border-left: 2px solid var(--dark-clr);
    border-bottom: 2px solid var(--dark-clr);
}

#ai .cs3-point-box p {
    font-size: .85rem;
}

#ai .cs3-diff-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    background: #0068C7;
    background: radial-gradient(circle, rgba(0, 104, 199, 1) 0%, rgb(2, 3, 5) 100%);
    padding: .75rem 1rem;
    border-radius: .5rem;
    color: white;
}

#ai .cs3-diff-txt p {
    font-size: .90rem;
    font-weight: 600;
}

#ai .cs3-diff-txt li {
    font-size: .85rem;
    margin-left: .80rem;
}

#ai .cs3-techstack-box {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border: 2px solid var(--card-clr);
    border-radius: .5rem;
    transition: .3s ease-in-out;
}


#ai .cs3-techstack-icon-customAi {
    background-image: url('/img/v2/service/ai-custom-ai-ts.webp');
}


#ai .cs3-techstack-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

#ai .boxDesign4{
    padding: 1rem;
    background-color: var(--card-clr);
    height: 100%;
    border-radius: .5rem;
    transform: scale(1);
    transition: .2s ease-in-out;
}

#ai .boxDesign4:hover{
    box-shadow: var(--dark-clr) 8.95px 8.95px 0px;
    transform: scale(1.002);
}

#ai .lastSectionPoint{
    position: relative;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: .25rem;
    height: 100%;
    overflow: hidden;
    transition: .3s ease-in-out;
}

#ai .lastSectionPoint::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--dark-clr);
    width: 24px;
    height: 24px;
    border-top-left-radius: 1rem;
}

#ai .lastSectionPoint:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


#faq .faq-list {
  position: relative;
}

#faq .faq-list h2 {
  color: #1a73e8;
  margin-bottom: 20px;
}

#faq .faq-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  color: #000;
  padding: 10px 10px 10px 30px;
  position: relative;
  transition: 0.3s ease-in-out;
}

#faq .faq-item.active {
  padding-left: 3.25rem;
  color: #1a73e8;
}

#faq .faq-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  /* background: url('https://img.icons8.com/ios-filled/50/1a73e8/arrow.png') no-repeat center center; */
  background: url("/img/devprog-img/ico/faqArrow.png") no-repeat center center;
  background-size: contain;
  /* transform: translateY(50%); */
  transition: top 0.3s ease;
}

#faq .faq-answer {
  background-color: #dceeff;
  padding: 30px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  width: 100%;
  display: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

[id^="faq-answer-"]:empty {
  display: none !important;
  padding: 0 !important;
}

@media only screen and (max-width: 576px) {

    #ai .dp-card:nth-child(even) {
        padding-left: calc(0% + 0px);
    }

    #ai .dp-card:nth-child(odd) {
        padding-right: calc(0% + 0px);
    }

    #ai .dp-card-number-odd {
        position: absolute;
        top: 7%;
        right: 94%;
    }

    #ai .dp-card-number-even {
        position: absolute;
        top: 7%;
        left: 2%;
    }

    #ai .dp-center-line::before {
        visibility: hidden;
    }

}

@media only screen and (min-width: 577px) and (max-width: 767px) {

    #ai .dp-card:nth-child(even) {
        padding-left: calc(0% + 0px);
    }

    #ai .dp-card:nth-child(odd) {
        padding-right: calc(0% + 0px);
    }

    #ai .dp-card-number-odd {
        position: absolute;
        top: 7%;
        right: 94%;
    }

    #ai .dp-card-number-even {
        position: absolute;
        top: 7%;
        left: 2%;
    }

    #ai .dp-center-line::before {
        visibility: hidden;
    }

}

/* Medium Devices (Laptops, Smaller Desktops) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    #ai .dp-card:nth-child(even) {
        padding-left: calc(50% + 30px);
    }

    #ai .dp-card:nth-child(odd) {
        padding-right: calc(50% + 30px);
    }

    #ai .dp-card-number-odd {
        right: -12.9%
    }

    #ai .dp-card-number-even {
        left: -12.2%;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1200px) {
    #ai .ctacenteredImg1 {
        right: 11%;
    }

    #ai .ctacenteredImg2 {
        right: 20%;
    }

    #ai .ctacenteredImg3 {
        right: 17%;
    }

    #ai .ctacenteredImg4 {
        right: 23%;
    }

    #ai .dp-card-number-odd {
        right: -14.5%;
    }

    #ai .dp-card-number-even {
        left: -14.2%;
    }
}

@media only screen and (min-width: 1201px) and (max-width: 1399px) {

    #ai .dp-card-number-odd-1 {
        right: -24.2%;
    }

    #ai .dp-card-number-odd {
        right: -25%;
    }

    #ai .dp-card-number-even {
        left: -24.5%;
    }

}