#defi .point-hightlight {
    padding: .75rem;
    background-color: var(--card-clr);
    border: 2px var(--dark-clr);
    border-style: none solid solid none;
    border-radius: .5rem;
    height: 100%;
}

#defi .table-head th:nth-child(1) {
    border-radius: .5rem 0 0 0;
}

#defi .table-head th:nth-child(3) {
    border-radius: 0 .5rem 0 0;
}

#defi .table-head th {
    background-color: var(--dark-clr);
    color: #ffffff;
    padding: 1rem;
    text-align: center;
    white-space: nowrap;
}

#defi .table-body td {
    padding: 1rem;
    border: none;
}

#defi .table-body td:nth-child(1) {
    border-radius: 1.5rem 0 0 0;
}

#defi .table-body td:nth-child(3) {
    border-radius: 0 .5rem 0 0;
}

#defi .topBorder-effect {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    background-color: var(--card-clr);
    border-radius: .5rem;
    padding: 1rem;
    height: 100%;
    transform: translateY(0);
    transition: transform 0.4s ease-in-out;
    overflow: hidden;
}

#defi .topBorder-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--dark-clr);
    border-radius: .5rem;
    transition: width 0.4s ease-in-out;
}

.clr-eff {
    transition: 0.4s ease-in-out;
}

#defi .topBorder-effect:hover .clr-eff {
    color: var(--dark-clr);
}

#defi .topBorder-effect:hover {
    transform: translateY(-5%);
}

#defi .topBorder-effect:hover::before {
    width: 100%;
}

#defi .callToAction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: white;
    padding: 4rem 0;
    border: 0.5rem solid var(--dark-clr);
    border-radius: 4rem 0rem;
    background: linear-gradient(94.51deg,
            rgba(0, 104, 199, 1) 0%,
            rgba(2, 12, 23, 1) 100%);

}

#defi .cta-btn {
    position: relative;
    border: 1px solid transparent;
    background-color: #ffffff;
    padding: .5rem 1rem;
    font-weight: 600;
    border-radius: .5rem;
    transform: scale(1);
    transition: 0.4s ease-in-out;
    z-index: 1;
    overflow: hidden;
}

#defi .cta-btn::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: var(--dark-clr);
    width: 20%;
    height: 100%;
    border-radius: .5rem;
    z-index: -1;
    transition: 0.4s ease-in-out;
}

#defi .cta-btn:hover {
    color: #ffffff;
    transform: scale(1.035);
}

#defi .cta-btn:hover::before {
    bottom: 0%;
    width: 100%;
}

#defi .tab-left {
    border-radius: 1rem 0 0 1rem;
    background-image: linear-gradient(to left, #086fec 0%, #1363C6 100%);
}

#defi .tab-right{
    background-color: #ffffff;
    border-radius: 0 1rem 1rem 0;
}

#defi .tab-btn {
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    white-space: nowrap;
    padding: 1rem;
    font-size: 1rem;
    border-radius: .5rem;
    width: 100%;
    text-align: start;
    transition: 0.4s ease-in-out;
}

#defi .tab-btn:hover,
#defi .tab-btn.active {
    background-color: #ffffff;
    transform: scale(1.025);
    color: black;
}

#defi .content-maxHeight {
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--dark-clr) var(--card-clr);
    max-height: 345px;
    overflow-y: auto;
}

#defi .tabFormat-sprite {
    aspect-ratio: 1 / 1;            /* Prevents layout shift (fixes CWV) */
    width: 74px;                   /* Desktop size */
    max-width: 100%;                /* Responsive */
    display: block;
    background-image: url('/img/v2/home/TabImage1.png');
    background-repeat: no-repeat;
    background-size: 400% 100%;    /* 10 icons in a row */
}

/* Sprite positions - percentage based (responsive) */
#defi .tabImage-0 { background-position: -3%    0; }
#defi .tabImage-1 { background-position: 31%   0; }
#defi .tabImage-2 { background-position: 65%   0; }
#defi .tabImage-3 { background-position: 99%   0; }

#defi .whiteCards-effect {
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    height: 100%;
    padding: 1rem;
    border-radius: 1rem;
    transition: 0.4s ease-in-out;
}

#defi .whiteCards-effect:hover {
    border: 1px solid var(--dark-clr);
}

#defi .image-container {
    position: relative;
    border-radius: .75rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    overflow: hidden;
}

#defi .image-container img {
    border-radius: .75rem;
}

#defi .image-overLay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
}

#defi .image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    color: #ffffff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

#defi .image-container:hover .image-content {
    transform: translateY(0);
}

#defi .image-container:hover .image-overLay {
    transform: translateX(0);
}

#defi .blueCards-effect {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    background-color: var(--card-clr);
    border-radius: .5rem;
    height: 100%;
    padding: 1rem;
    transition: 0.4s ease-in-out;
}

#defi .blueCards-effect:hover{
    background-color: #ffffff;
}

#defi .borderCards-effect{
    border: 1px solid var(--dark-clr);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    border-radius: .5rem;
    height: 100%;
    padding: 1.75rem 1rem;
    transition: 0.4s ease-in-out;
}

#defi .borderCards-effect:hover{
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px inset;
}

#defi .accordion-item {
    border: 2px var(--dark-clr);
    border-style: none solid solid none;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

#defi .accordion-button{
    border-radius: 1rem;
}

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

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

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

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

#defi .blueBorderCard{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--dark-clr);
    padding: 2rem 1rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.16) 10px 14px 0px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    overflow: hidden;
}
#defi .blueBorderCard::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 100%;
    background-color: var(--dark-clr);
}

#defi .listCards-effect{
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .5rem;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: .5rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    overflow: hidden;
}

#defi .listCards-effect::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--clr);
    width: 24px;
    height: 24px;
    transform: translate(50%, 45%) rotate(45deg);
}

/* Image varum border ku potuko */
#defi .emptyCircle{
    background-color: var(--clr);
    width: 25px;
    height: 25px;
    border-radius: 1rem;
}

#defi .tech-tab-btn {
    border-bottom: 2px solid transparent;
    background: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
    padding: 1rem;
    font-size: 1rem;
    border-radius: .5rem;
    width: 100%;
    text-align: start;
    transition: 0.4s ease-in-out;
}

#defi .tech-tab-btn:hover,
#defi .tech-tab-btn.active {
    border-bottom: 2px solid var(--dark-clr);
    background-color: #ffffff;
    transform: scale(1.025);
    color: var(--dark-clr);
}

#defi .tech-tab-btn:hover+.tech-tab-btn {
    transform: scale(1.015);
}

#defi .tech-tab-btn:has(+ .tech-tab-btn:hover) {
    transform: scale(1.015);
}

#defi .tech-right {
    background-color: #ffffff;
    border-radius: 0 1rem 1rem 0;
}

#defi .tech-img{
    background-color: #ffffff;
    padding: .5rem;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px inset;
}

#defi .tech-items {
    display: flex;
    gap: .5rem;
    align-items: center;
    background-color: var(--card-clr);
    border-radius: .5rem;
    padding: .5rem 1rem;
    height: 100%;
}

#defi .slider-highligther {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

#defi .development-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-clr);
    border-radius: 1.5rem;
    margin: 1rem 0;
}

#defi .dev-box-inner {
    border-radius: 1.5rem;
    padding: 1rem;
    background-color: #ffff;
    box-shadow: 0.3125rem 0rem 0.875rem 0rem rgba(0, 0, 0, 0.25);
}

#defi .dev-box-no {
    font-size: 4rem;
    font-weight: 600;
    color: #fff;
    padding: 1rem 2rem;
}

#defi .whyChoose-effect {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem;
    background-color: var(--card-clr);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 100%;
}

/* Faq start */

#faq .faq-list {
    position: relative;
    /* height: 400px;
  overflow-y: scroll; */
}

#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: 16px;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    width: 100%;
    display: none;
}

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

#defi .list-highlighted{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: .75rem;
    border: 1px solid var(--dark-clr);
    border-radius: 0 1rem;
    background-color: var(--card-clr);
}

#defi .formalHighlighter{
    position: relative;
    background-color: var(--card-clr);
    padding: .75rem;
    overflow: hidden;
}

#defi .formalHighlighter::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 2px;
    background-color: var(--dark-clr);
}

@media (max-width: 767px) {
    #defi .tab-left {
        border-radius: 1rem 1rem 0rem 0rem;
    }

    #defi .tab-right {
        border-radius: 0rem 0 1rem 1rem;
    }

    #defi .development-box {
        flex-direction: column;
    }
}