/* Extracted Page-Specific Styles */

/* Extracted from about-us.blade.php */
@media (min-width: 2048px) {
                    .hero-about-wrap {
                      top: 4rem;
                    }
                  }

/* Extracted from blockchain.blade.php */
/* Modal Styles */
.inquiry-modal-wrapper {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.inquiry-modal-wrapper .modal-content {
    margin: 2% auto;
    padding: 0px;
    border-radius: 14px;
    width: 90%;
    max-width: max-content;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    max-height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-modal-wrapper .close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 9;
}

.inquiry-modal-wrapper .close-modal:hover {
    color: #fff;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

.contact-form-box.contact-inqur-form {
    position: relative;
    max-width: 100%;
    top: unset;
    left: unset;
    transform: none;
    padding: 16px 16px;
    border-radius: 6px;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 7px 14px,
        rgba(0, 0, 0, 0.22) 0px 10px 10px;
    width: 100%;
    background: #fafafa;
    overflow-y: auto;
}

.inquiry-modal-wrapper.loading-inquiry-modalbox {
    display: block;
}

.inquiry-modal-wrapper.cust-card-modal .modal-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important;
    left: 0;
    right: 0;
}

/* Extracted from blog-detail.blade.php */
/* Animation of input when focus */
                input::-webkit-input-placeholder,
                textarea::-webkit-input-placeholder {
                    transition: 0.2s;
                }

                input:-moz-placeholder,
                textarea:-moz-placeholder {
                    transition: 0.2s;
                }

                input::-moz-placeholder,
                textarea::-moz-placeholder {
                    transition: 0.2s;
                }

                input:-ms-input-placeholder,
                textarea:-ms-input-placeholde {
                    transition: 0.2s;
                }

                input:focus:-ms-input-placeholder,
                textarea:focus:-ms-input-placeholde {
                    opacity: 0;
                }

                input:focus::-moz-placeholder,
                textarea:focus::-moz-placeholder {
                    opacity: 0;
                }

                input:focus:-moz-placeholder,
                textarea:focus:-moz-placeholder {
                    opacity: 0;
                }

                input:focus::-webkit-input-placeholder,
                textarea:focus::-webkit-input-placeholder {
                    opacity: 0;
                }

                /* Disabled display of border when focus on element */
                *:focus {
                    outline: 0;
                }

                /* Make text look crisper and more legible in all browsers */
                body {
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    font-smoothing: antialiased;
                    text-rendering: optimizeLegibility;
                    padding-right: 0px !important;
                }

                /* Focus state style for keyboard navigation for the focusable elements */
                *[tabindex]:focus-visible,
                input[type="file"]:focus-visible {
                    outline: 0.125rem solid #4d65ff;
                    outline-offset: 0.125rem;
                }

                /* Get rid of top margin on first element in any rich text element */
                .w-richtext> :not(div):first-child,
                .w-richtext>div:first-child> :first-child {
                    margin-top: 0 !important;
                }

                /* Get rid of bottom margin on last element in any rich text element */
                .w-richtext> :last-child,
                .w-richtext ol li:last-child,
                .w-richtext ul li:last-child {
                    margin-bottom: 0 !important;
                }

                /* Prevent all click and hover interaction with an element */
                .pointer-events-off {
                    pointer-events: none;
                }

                /* Enables all click and hover interaction with an element */
                .pointer-events-on {
                    pointer-events: auto;
                }

                /* Make sure containers never lose their center alignment */
                .container-medium,
                .container-small,
                .container-large {
                    margin-right: auto !important;
                    margin-left: auto !important;
                }

                input:-webkit-autofill,
                input:-webkit-autofill:hover,
                input:-webkit-autofill:focus,
                input:-webkit-autofill:active {
                    -webkit-text-fill-color: #080808 !important;
                    -webkit-box-shadow: 0 0 0px 1000px #f5f5f5 inset !important;
                    background-color: #f5f5f5 !important;
                }

                a,
                .w-select,
                .w-tab-link,
                .w-nav-link,
                .w-dropdown-btn,
                .w-dropdown-toggle,
                .w-dropdown-link {
                    color: inherit;
                    text-decoration: inherit;
                    font-size: inherit;
                }

                /* Apply "..." after 3 lines of text */
                .text-style-3lines {
                    display: -webkit-box;
                    overflow: hidden;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;
                }

                /* Apply "..." after 2 lines of text */
                .text-style-2lines {
                    display: -webkit-box;
                    overflow: hidden;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                }

                /* Adds inline flex display */
                .display-inlineflex {
                    display: inline-flex;
                }

                /* These classes are never overwritten */
                .hide {
                    display: none !important;
                }

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

                    .hide,
                    .hide-tablet {
                        display: none !important;
                    }
                }

                @media screen and (max-width: 767px) {
                    .hide-mobile-landscape {
                        display: none !important;
                    }
                }

                @media screen and (max-width: 479px) {
                    .hide-mobile {
                        display: none !important;
                    }
                }

                /*Fluid responsive */
                html {
                    font-size: 1rem;
                }

                @media screen and (min-width: 1920px) {
                    html {
                        font-size: 0.6vw;
                    }
                }

                @media screen and (min-width: 992px) and (max-width: 1919px) {
                    html {
                        font-size: 1vw;
                    }
                }

                @media screen and (max-width: 991px) and (min-width: 768px) {
                    html {
                        font-size: 1vw;
                    }
                }

                .calendly-popup-close {
                    z-index: 1000000;
                }

/* Extracted from case_study.blade.php */
/* Modal container */
  .custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  /* Modal content box */
  .custom-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 400px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }

  .close-btn:hover {
    color: red;
  }

  .service-grid-title {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .service-grid-descript {
    font-size: 1rem;
    margin-top: 10px;
  }

  .btn {
    background-color: #13D3D0;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }

  .btn:hover {
    background-color: #0d8e8c;
  }
  .case-study .section.hero.case{
    height: auto;
  }
  .case-study-modal .modal-content {
    width: 30%;
    top: 50%;
    transform: translateY(-50%) !important;
    padding: 25px;
}
 .case-study-modal .view-form-box-cont{
    padding:0;
}
.case-study-modal .custom-modal-content{
    padding: 25px;
    text-align: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin: 12px;
        top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
 .case-study-modal .custom-modal-content h2{
        font-size: 2rem;
    line-height: 50px;
    color: #FFFFFF;
    font-weight: 500;
    margin-bottom: 16px;
}
.case-study-modal  .form-group{
    margin-bottom: 10px
}
 .case-study-modal .form-control{
    color: #080808;
    background-color: #fff;
    border: 0.0625rem solid #9c9c9c;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 0;
    padding: 10px 16px;
    font-family: Itcavantgardestd Md, sans-serif;
    font-size: 1rem;
    transition: all 0.4s;
    margin-bottom: 3px;
    outline: none;
 }
  button.submit-btn{
        background: #774dff;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
    box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
    min-width: 120px;
    font-size: 16px;
    border: 0;
 }
 .case-study-modal .iti__country-list{
    max-width: 349px;
    overflow-x:hidden;
 }
 .grid-container.cust-case-grid-cont{
    max-width:750px;
 }
 .down-btn span{
    font-size: 14px;
        font-weight: 400;
    /* color: #fe4a23; */
 }
 .badge-sec-main{
   display: flex;
    align-items: center;
    gap: 10px;
 }
     .badge-sec-main .cus-badge{
   width: max-content;
    padding: 7px 12px;
    /* border: 1px solid #f74822; */
    border-radius: 10px;
    font-size: 12px;
    font-weight: 400;
    min-width: 70px;
     }


/*
.badge-blue    { background-color: #007BFF; }
.badge-red     { background-color: #DC3545; }
.badge-green   { background-color: #28A745; }
.badge-orange  { background-color: #FD7E14; }
.badge-purple  { background-color: #6F42C1; }
.badge-pink    { background-color: #E83E8C; }
.badge-cyan    { background-color: #17A2B8; }
.badge-teal    { background-color: #20C997; }
.badge-brown   { background-color: #795548; }
.badge-lime    { background-color: #C0CA33; color: #000; }
.badge-indigo  { background-color: #6610f2; }
.badge-maroon  { background-color: #800000; }
.badge-olive   { background-color: #808000; }
.badge-navy    { background-color: #001f3f; } */

/* .badge-default { background-color: #6C757D; } */
     .badge-sec-main .badge-blue{
        color: #007BFF;
        background: rgb(0 123 255 / 30%);
     }
    .badge-sec-main .badge-red{
        color: #DC3545;
        background: rgb(220 53 69 / 30%);
     }
    .badge-sec-main .badge-yellow{
        color: #795548;
        background : rgb(255 193 7 / 30%);
     }
     .badge-sec-main .badge-orange {
        color:#FD7E14;
        background: rgb(253 126 20 / 30%);
     }
    .badge-sec-main .badge-pink {
        color:#E83E8C;
        background: rgb(232 62 140 / 30%);
     }
     .badge-sec-main .badge-cyan {
        color:#E83E8C;
        background : rgb(232 62 140 / 30%);
     }
    .badge-sec-main .badge-default {
        color:#6C757D;
        background : rgb(108 117 125 / 30%);
     }
    .badge-sec-main .badge-purple  {
        color:#6F42C1;
        background : rgb(111 66 193 / 30%);
     }

@media screen and (max-width: 1024px) {
      .case-study-page .container.hero.margin-top-8.overflow-hidden{
    height: calc(100vh - 492px);
}
}
@media screen and (max-width: 991px) {
      .case-study-page .service-card-sect-box .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .case-study-page .section-tittle {
    font-size: 40px;
}
    .case-study-page .container.hero.margin-top-8.overflow-hidden {
        height: calc(100vh - 395px);
    }
    .case-study-title .subtittle-section-heading {
    max-width: 60%;
}
.case-study-page .grid-container.cust-case-grid-cont {
    max-width: 700px;
}
}
@media screen and (max-width: 767px) {
        .case-study-page .section-tittle {
        font-size: 30px;
        line-height: 36px;
    }
    .case-study-title .subtittle-section-heading {
        max-width: 100%;
    }
        .case-study-page .container.hero.margin-top-8.overflow-hidden {
        height: auto;
    }
    .case-study-page .service-card-sect-box .grid-item-cont{
padding-bottom: 70px;
    }
    .case-study-page .card-bg-color-8 *{
        position:unset;
    }
     .case-study-page .down-btn {
    position: absolute ;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
            gap: 10px;
        align-items: center;
    }
    .case-study-page .badge-sec-main{
            border-bottom: 2px solid #ffffff40;
    padding-bottom: 20px;
    }
    .case-study-modal .custom-modal-content h2 {
    font-size: 1.5rem;
    line-height: 39px;
}
.case-study-modal .custom-modal-content{
        width: 85%;
            left: 46.5%;
}
    .section.hero.case.mobile-pt-2 {
        padding-top: 2rem;
    }
}
.case-study-modal .close-btn{
    color: #aaaaaa;
}
.case-study-modal .close-btn:hover{
    color: #FFFFFF;
}
.case-study-page .card-bg-color-8:hover{

    background: #FFFFFFF;
}
.service-card-sect-box .grid-item-cont:hover {
    background-color: #FFFFFF !important;
}
.case-study-page .card-bg-color-8{
background: #FFFFFF;
color: #000;
}
.case-study-page .service-card-sect-box{
    margin-bottom: 0;
}
.case-study-page .grid-container.cust-case-grid-cont{
    padding-top: 0;
}

/* Extracted from case_study.blade.php */
.case-study-page .container.hero {
                justify-content: flex-start !important;
                padding-top: 140px !important;
                height: auto !important; /* prevent fixed height clipping */
            }
            .featured-case-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                margin: 40px auto 60px auto;
                max-width: 1200px;
                width: 100%;
                text-align: left; 
                padding: 0 5%; /* Adds spacing on left and right */
            }
                .featured-case-card {
                    background: #111827;
                    border: 1px solid #374151;
                    border-radius: 12px;
                    padding: 24px;
                    text-decoration: none !important;
                    color: #fff !important;
                    transition: all 0.3s ease;
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                }
                .featured-case-card:hover {
                    transform: translateY(-5px);
                    border-color: #60a5fa;
                    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
                }
                .featured-case-badge {
                    display: inline-block;
                    background: rgba(16, 185, 129, 0.2);
                    color: #10b981;
                    padding: 4px 12px;
                    border-radius: 20px;
                    font-size: 12px;
                    font-weight: 700;
                    margin-bottom: 15px;
                    align-self: flex-start;
                    text-transform: uppercase;
                }
                .featured-case-title {
                    font-size: 20px;
                    margin-bottom: 12px;
                    font-weight: 700;
                    line-height: 1.3;
                }
                .featured-case-desc {
                    font-size: 14px;
                    color: #9ca3af;
                    margin-bottom: 20px;
                    flex-grow: 1;
                }
                .featured-case-link {
                    color: #60a5fa;
                    font-size: 14px;
                    font-weight: 700;
                    margin-top: auto;
                }
                @media (max-width: 991px) {
                    .featured-case-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }
                }
                @media (max-width: 767px) {
                    .featured-case-grid {
                        grid-template-columns: 1fr;
                    }
                }

/* Extracted from case_study_new.blade.php */
/* Modal container */
  .custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  /* Modal content box */
  .custom-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    width: 400px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }

  .close-btn:hover {
    color: red;
  }

  .service-grid-title {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .service-grid-descript {
    font-size: 1rem;
    margin-top: 10px;
  }

  .btn {
    background-color: #13D3D0;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }

  .btn:hover {
    background-color: #0d8e8c;
  }
  .case-study .section.hero.case{
    height: auto;
  }
  .case-study-modal .modal-content {
    width: 30%;
    top: 50%;
    transform: translateY(-50%) !important;
    padding: 25px;
}
 .case-study-modal .view-form-box-cont{
    padding:0;
}
 .case-study-modal  .custom-modal-content form{
max-width: 80%;
}
 .case-study-modal  .custom-modal-content #loginFormxyz{
width: 90%;
    margin: 0 auto;
}
 .case-study-modal .custom-modal-content .form-control{
    color: #080808;
    background-color: #fff;
    border: 0.0625rem solid #9c9c9c;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 0;
    padding: 10px 16px;
    font-family: Itcavantgardestd Md, sans-serif;
    font-size: 1rem;
    transition: all 0.4s;
    margin-bottom: 3px;
    outline: none;
 }

/* Extracted from contact-us.blade.php */
ul {
                        padding-left: 0;
                      }

                      ul li {
                        list-style: none;
                      }

                      .zf-form-sBox {
                        width: 100%;

                        height: 4.2rem;

                        padding: 1.125rem 1.5rem 0.875rem;

                        border-radius: 0.83333rem;

                        border: 1px solid #f5f5f5;

                        color: rgba(97, 98, 97, 0.4);

                        font-size: 1rem;

                        line-height: 1.5rem;

                        background-color: #f5f5f5;
                      }

                      input[type="text"],
                      .zf-form-sBox {
                        margin-bottom: 0.28rem;
                      }

                      input[type="text"]:focus,
                      .zf-form-sBox:focus,
                      textarea:focus {
                      }

                      .frame {
                        border: none;
                      }

                      .zf-form-sBox {
                        -webkit-appearance: none;

                        -moz-appearance: none;

                        background-image: url("https://d2l3yo0cuzzne0.cloudfront.net/assets/images/down-arrow-icon.svg");

                        background-position: 97%;

                        background-repeat: no-repeat;

                        background-size: 1.5rem 1.5rem;

                        margin-right: 2rem;

                        padding-right: 2rem;
                      }

/* Extracted from cryptocurrency-exchange.blade.php */
.sub-service-page .section-tittle {
        max-width: 100%;
        margin-bottom: 26px
    }

    .sub-service-page .counter-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        list-style-type: none;
        gap: 16px;
        margin: 46px auto 56px auto;
    }

    .sub-service-page .counter-list .counter-listitem {
        position: relative;
        text-align: center;
        color: #fff;
        background: #141414;
        border-radius: 6px;
        padding: 8px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        overflow: hidden;
        will-change: transform, opacity;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Animated Gradient Border */
    .sub-service-page .counter-list .counter-listitem::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 6px;
        padding: 2px;
        background: linear-gradient(45deg, #f3ec78, #af4261, #00dbde, #fc00ff, #f3ec78);
        background-size: 300% 300%;
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: 0;
        animation: gradientFlow 8s linear infinite;
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    .sub-service-page .counter-list .counter-listitem .counter-number {
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        display: inline-block;
        transition: transform 0.3s ease-out;
        margin-bottom: 15px;
        margin-top: 5px;
    }

    .sub-service-page .counter-list .counter-listitem .counter-title {
        font-size: 16px;
        line-height: normal;
        letter-spacing: 1.5px;
    }

    .sub-service-page.bold-text-28 {
        letter-spacing: 1.5px;
    }

    .sub-service-page .text-block-5 {
        font-size: 14px;
    }

    .sub-service-page .solution-card-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        height: 16rem;
    }

    /* Bell Design */

    .experience-cont-box .ico:before,
    .experience-cont-box .ico svg {
        border-radius: 50%;
        transform-origin: 50% 0;
        transform: rotate(-8deg);
        animation: osc 0.3s ease-in-out infinite alternate;
    }

    @keyframes osc {
        to {
            transform: rotate(8deg);
        }
    }

    .experience-cont-box {
        --narr: 1;
        --notnarr: calc(1 - var(--narr));
        --wide: 0;
        --notwide: calc(1 - var(--wide));
        --nor: calc(var(--notnarr)*var(--notwide));
        --or: calc(1 - var(--nor));
        --sum: calc(1 + var(--narr));
        /* display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap; */
        overflow-x: hidden;
        min-height: 100vh;
        /* background: linear-gradient(to right top, #ebedec, #e3e7e6, #dbe1e0, #d3dadb, #ccd4d6); */
    }

    .experience-cont-box:before {
        --uw: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em);
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        height: calc(var(--sum)*2*var(--uw));
        transform: translate(calc(var(--sum)*50%/var(--n)), -50%);
        background: radial-gradient(circle at calc(50% - 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at calc(50% + 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at 50% 39%, #fff calc(0.625em - 1px), rgba(255, 255, 255, 0) 0.625em);
        background-size: calc(50%/(2 - var(--narr))) calc(100%/(1 + var(--narr)));
        clip-path: inset(0 calc(var(--sum)*25%) 0 0);
        filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.2));
        content: "";
    }

    @media (max-width: 480px) {
        .experience-cont-box:before {
            display: none;
        }
    }

    @media (min-width: 38em) {
        .experience-cont-box {
            --narr: 0;
        }
    }

    @media (min-width: 58em) {
        .experience-cont-box {
            --wide: 1;
        }
    }

    .experience-cont-box .hid {
        position: absolute;
        clip-path: inset(50%);
    }

    .experience-cont-box path {
        --s: 2;
        fill: none;
        stroke: currentcolor;
        stroke-width: var(--s);
        stroke-linecap: round;
    }

    .experience-cont-box path.d {
        stroke-dasharray: 0 calc(2*var(--s));
    }

    .experience-cont-box path.t {
        --s: 4;
    }

    .experience-cont-box .experience-detail {
        display: flex;
        flex-direction: column;
        padding: 1em 1em;
        /* min-width: 7.5em; */
        /* width: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em); */
        /* min-width: 12.5em;
        max-width: 12.5em; */
        width: 100%;
        text-align: center;
        text-transform: uppercase;
    }

    .experience-cont-box h3,.experience-cont-box a {
        color: var(--c0);
    }

    .experience-cont-box h3 {
        padding: 1em 0 0.5em;
        font-size: calc(var(--nor)*2vw + var(--or)*1.16em);
        text-transform: none;
        font-weight: bold;
        letter-spacing: 1.5px;
    }

    .experience-cont-box p {
        /* height: 3em; */
        font-size: 12px;
        line-height: normal;
        text-transform: none;
        color: #7f7f7f;
        letter-spacing: 0.5px;
    }

    .experience-cont-box .ico {
        order: -1;
        position: relative;
        margin-bottom: calc(10% + 2.875em + 2px);
        border-radius: 50%;
        box-shadow: inset 0 0 0 0.325em #fff, 11px 11px 12px -9px rgba(27, 14, 0, 0.28);
        background: linear-gradient(135deg, var(--c0), var(--c1)) padding-box;
        height: 120px;
        width: 120px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-cont-box .ico a {
        --sgn: 1;
        box-sizing: border-box;
        display: grid;
        place-content: center;
        padding: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        clip-path: circle(calc(50% - 0.625em));
    }

    .experience-cont-box .ico a:hover {
        --sgn: -1;
    }

    .experience-cont-box .ico svg {
        /* --w: calc(100% - 4em); */
        --w: 66px;
        box-sizing: border-box;
        position: absolute;
        margin: calc(-.5*var(--w));
        border: solid 1em transparent;
        width: var(--w);
        height: var(--w);
        border-radius: 50%;
        box-shadow: calc(var(--sgn)*36px) 27px 11px -5px rgba(27, 14, 0, 0.16);
        background: linear-gradient(135deg, #fff, #d2d2d2) border-box;
        transition: 0.3s ease-out;
    }

    .experience-cont-box .ico:before,
    .ico:after {
        position: absolute;
        content: "";
    }

    .experience-cont-box .ico:before {
        box-sizing: border-box;
        top: calc(135% + 1px);
        /* left: calc(50% - 1.4375em); */
        left: calc(50% - 12px);
        border: solid 0.625em transparent;
        width: 1.875em;
        height: 1.875em;
        box-shadow: 0 0 0 2px #fff;
        background: inherit;
        filter: drop-shadow(1px 3px 2px rgba(0, 0, 0, 0.32));
    }

    .experience-cont-box .ico:after {
        width: 0.375em;
        top: calc(100% - 0.5em);
        left: calc(50% - 0.5em);
        border: solid 0 transparent;
        border-width: 0.5em 0.3125em;
        padding-top: 35%;
        background: linear-gradient(#fff, #fff) padding-box, radial-gradient(circle at 50% 0.5em, #fff calc(0.5em - 1px), rgba(255, 255, 255, 0) 0.5em) border-box, radial-gradient(circle at 50% calc(100% - 0.5em), #fff calc(0.375em - 1px), rgba(255, 255, 255, 0) 0.375em) border-box;
    }

    .experience-grid-box {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }

    /* End Bell Design */
    .sub-service-page .icons_block {
        padding-top: 0px;
    }

    .sub-service-page .experience-cont-box .icons_block .heading-18 {
        margin-bottom: 16px;
        text-align: center;
        font-size: 36px;
    }

    .defi-services .icons_block .heading-18 {
        font-size: 50px;
        margin-bottom:46px;
    }

    .benefits-flexbox {
        display: flex;
        /* flex-direction: row; */
        justify-content: space-around;
        width: 100%;
        flex-wrap: wrap;
        gap:26px;
        row-gap: 36px;
    }

    .benefits-flexcard {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 20%;
        align-items: baseline;
        height: max-content;
        border-radius: 20px;
    }

    .benefits-flexcardNumber {
        width: 70%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        margin: 10px 0px;
        border-radius: 0px 50px 50px 0px;
        color: white;
        text-shadow: 0px 3px 5px black;
        font-weight: 500;
        font-size: 20px;
        position: relative;
    }

    .benefits-flexcardTitle {
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 600;
        line-height: normal;
        min-height: 66px;
    }

    .benefits-flexcardText {
        text-align: center;
        font-weight: 300;
        margin-bottom: 16px;
        min-height: 136px;
    }

    .benefits-flexcardNumber:before {
        content: '';
        width: 34px;
        height: 90px;
        position: absolute;
        left: -33px;
        top: 0px;
        border-radius: 50px 0px 0px 50px;
        /* z-index: -1; */
        /* background: #95B7A2; */
        /* background: -webkit-linear-gradient(bottom, #95B7A2, #AED2BC); */
        background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
        /* background: linear-gradient(to top, #95B7A2, #AED2BC); */
        ;
    }

    .benefits-flexcardNumber:after {
        content: '';
        width: 25px;
        height: 40px;
        position: absolute;
        left: -25px;
        bottom: -40px;
        border-radius: 50px 0px 0px 50px;
        z-index: -1;
    }

    .benefits-flex {
        display: flex;
        justify-content: center;
        align-items:center;
        width: 100%;
        margin: 0px auto;
        padding: 8px;
        text-transform: none;
        text-align: center;
    }

    /* GREEN CARD */

    .benefits-flexcardGreen {
        background: #f9fbfa;
        box-shadow: 4px 4px 4px #AED2BC;
    }

    .benefits-flexcardNumberGreen {
        background: #FCFCFC;
        background: -webkit-linear-gradient(right, #FCFCFC, #AED2BC);
        background: -moz-linear-gradient(right, #FCFCFC, #AED2BC);
        background: linear-gradient(to left, #FCFCFC, #AED2BC);
        box-shadow: 0px 2px 2px #AED2BC;
    }

    .benefits-flexcardNumberGreen:before {
        background: #AED2BC;
    }

    .benefits-flexcardNumberGreen:after {
        background: #95b7a2;
    }

    /* BLUE CARD */

    .benefits-flexcardBlue {
        background: #f7ffff;
        box-shadow: 4px 8px 1px #92E8EB;
    }

    .flexcardNumberBlue {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #92E8EB);
        background: -moz-linear-gradient(right, #FDFFFE, #92E8EB);
        background: linear-gradient(to left, #FDFFFE, #92E8EB);
        box-shadow: 0px 2px 2px #92E8EB;
    }

    .flexcardNumberBlue:before {
        background: #92E8EB;
    }

    .flexcardNumberBlue:after {
        background: #71bdbf;
    }

    /* ORANGE CARD */

    .benefits-flexcardOrange {
        background: #fdf8f3;
        box-shadow: 4px 8px 1px #F68404;
    }

    .flexcardNumberOrange {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #F68404);
        background: -moz-linear-gradient(right, #FDFFFE, #F68404);
        background: linear-gradient(to left, #FDFFFE, #F68404);
        box-shadow: 0px 2px 2px #F68404;
    }

    .flexcardNumberOrange:before {
        background: #F68404;
    }

    .flexcardNumberOrange:after {
        background: #d06f02;
    }

    /* PİNK CARD */

    .benefits-flexcardPink {
        background: #fffafd;
        box-shadow: 4px 8px 1px #F34EAE;
    }

    .flexcardNumberPink:before {
  background: #F34EAE;
}

.flexcardNumberPink:after {
  background: #d24095;
}

    .flexcardNumberPink {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #F34EAE);
        background: -moz-linear-gradient(right, #FDFFFE, #F34EAE);
        background: linear-gradient(to left, #FDFFFE, #F34EAE);
        box-shadow: 0px 2px 2px #F34EAE;
    }

    /* RESPONSİVE */

    @media only screen and (max-width: 800px) {
        .benefits-flexcard {
            width: 35%;
            margin-top: 20px;
        }
    }

    @media only screen and (max-width: 500px) {
        .benefits-flexcard {
            width: 70%;
        }
    }
    .sub-service-page .blockchain-marquee{
        height: 100vh;
    }
    .service-grid-cont{
        display: grid;
        grid-template-columns: 15% 85%;
    }
    .service-icon-box{
        height: 100px;
        width: 100px;
        border-radius:10px;
        border: 4px solid #d9d9d9;
    }
    .service-icon-box img{
        height: 100%;
        width: 100%;
        object-fit: contain;
        border-radius: 10px;
    }
    .sub-service-page .div-block-271 {
        width: 100%;
        max-width: 100%;
        padding: 8px;
        margin-top:0px;
    }
    .sub-service-page .text-block-40 {
        color: #1d1d1f;
        font-size: 16px;
        line-height: 24px;
    }

/* Extracted from cryptocurrency-wallet.blade.php */
.sub-service-page .section-tittle {
        max-width: 100%;
        margin-bottom: 26px
    }

    .sub-service-page .counter-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        list-style-type: none;
        gap: 16px;
        margin: 46px auto 56px auto;
    }

    .sub-service-page .counter-list .counter-listitem {
        position: relative;
        text-align: center;
        color: #fff;
        background: #141414;
        border-radius: 6px;
        padding: 8px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        overflow: hidden;
        will-change: transform, opacity;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Animated Gradient Border */
    .sub-service-page .counter-list .counter-listitem::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 6px;
        padding: 2px;
        background: linear-gradient(45deg, #f3ec78, #af4261, #00dbde, #fc00ff, #f3ec78);
        background-size: 300% 300%;
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: 0;
        animation: gradientFlow 8s linear infinite;
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    .sub-service-page .counter-list .counter-listitem .counter-number {
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        display: inline-block;
        transition: transform 0.3s ease-out;
        margin-bottom: 15px;
        margin-top: 5px;
    }

    .sub-service-page .counter-list .counter-listitem .counter-title {
        font-size: 16px;
        line-height: normal;
        letter-spacing: 1.5px;
    }

    .sub-service-page.bold-text-28 {
        letter-spacing: 1.5px;
    }

    .sub-service-page .text-block-5 {
        font-size: 14px;
    }

    .sub-service-page .solution-card-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        height: 16rem;
    }

    /* Bell Design */

    .experience-cont-box .ico:before,
    .experience-cont-box .ico svg {
        border-radius: 50%;
        transform-origin: 50% 0;
        transform: rotate(-8deg);
        animation: osc 0.3s ease-in-out infinite alternate;
    }

    @keyframes osc {
        to {
            transform: rotate(8deg);
        }
    }

    .experience-cont-box {
        --narr: 1;
        --notnarr: calc(1 - var(--narr));
        --wide: 0;
        --notwide: calc(1 - var(--wide));
        --nor: calc(var(--notnarr)*var(--notwide));
        --or: calc(1 - var(--nor));
        --sum: calc(1 + var(--narr));
        /* display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap; */
        overflow-x: hidden;
        min-height: 100vh;
        /* background: linear-gradient(to right top, #ebedec, #e3e7e6, #dbe1e0, #d3dadb, #ccd4d6); */
    }

    .experience-cont-box:before {
        --uw: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em);
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        height: calc(var(--sum)*2*var(--uw));
        transform: translate(calc(var(--sum)*50%/var(--n)), -50%);
        background: radial-gradient(circle at calc(50% - 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at calc(50% + 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at 50% 39%, #fff calc(0.625em - 1px), rgba(255, 255, 255, 0) 0.625em);
        background-size: calc(50%/(2 - var(--narr))) calc(100%/(1 + var(--narr)));
        clip-path: inset(0 calc(var(--sum)*25%) 0 0);
        filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.2));
        content: "";
    }

    @media (max-width: 480px) {
        .experience-cont-box:before {
            display: none;
        }
    }

    @media (min-width: 38em) {
        .experience-cont-box {
            --narr: 0;
        }
    }

    @media (min-width: 58em) {
        .experience-cont-box {
            --wide: 1;
        }
    }

    .experience-cont-box .hid {
        position: absolute;
        clip-path: inset(50%);
    }

    .experience-cont-box path {
        --s: 2;
        fill: none;
        stroke: currentcolor;
        stroke-width: var(--s);
        stroke-linecap: round;
    }

    .experience-cont-box path.d {
        stroke-dasharray: 0 calc(2*var(--s));
    }

    .experience-cont-box path.t {
        --s: 4;
    }

    .experience-cont-box .experience-detail {
        display: flex;
        flex-direction: column;
        padding: 1em 1em;
        /* min-width: 7.5em; */
        /* width: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em); */
        /* min-width: 12.5em;
        max-width: 12.5em; */
        width: 100%;
        text-align: center;
        text-transform: uppercase;
    }

    .experience-cont-box h3,
    .experience-cont-box a {
        color: var(--c0);
    }

    .experience-cont-box h3 {
        padding: 1em 0 0.5em;
        font-size: calc(var(--nor)*2vw + var(--or)*1.16em);
        text-transform: none;
        font-weight: bold;
        letter-spacing: 1.5px;
    }

    .experience-cont-box p {
        /* height: 3em; */
        font-size: 16px;
        line-height: normal;
        text-transform: none;
        color: #7f7f7f;
        letter-spacing: 0.5px;
    }

    .experience-cont-box .ico {
        order: -1;
        position: relative;
        margin-bottom: calc(10% + 2.875em + 2px);
        border-radius: 50%;
        box-shadow: inset 0 0 0 0.325em #000, 11px 11px 12px -9px rgba(27, 14, 0, 0.28);
        background: linear-gradient(135deg, var(--c0), var(--c1)) padding-box;
        height: 120px;
        width: 120px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-cont-box .ico a {
        --sgn: 1;
        box-sizing: border-box;
        display: grid;
        place-content: center;
        padding: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        clip-path: circle(calc(50% - 0.625em));
    }

    .experience-cont-box .ico a:hover {
        --sgn: -1;
    }

    .experience-cont-box .ico svg {
        /* --w: calc(100% - 4em); */
        --w: 66px;
        box-sizing: border-box;
        position: absolute;
        margin: calc(-.5*var(--w));
        border: solid 1em transparent;
        width: var(--w);
        height: var(--w);
        border-radius: 50%;
        box-shadow: calc(var(--sgn)*36px) 27px 11px -5px rgba(27, 14, 0, 0.16);
        background: linear-gradient(135deg, #fff, #d2d2d2) border-box;
        transition: 0.3s ease-out;
    }

    .experience-cont-box .ico:before,
    .ico:after {
        position: absolute;
        content: "";
    }

    .experience-cont-box .ico:before {
        box-sizing: border-box;
        top: calc(135% + 1px);
        /* left: calc(50% - 1.4375em); */
        left: calc(50% - 12px);
        border: solid 0.625em transparent;
        width: 1.875em;
        height: 1.875em;
        box-shadow: 0 0 0 2px #000;
        background: inherit;
        filter: drop-shadow(1px 3px 2px rgba(0, 0, 0, 0.32));
    }

    .experience-cont-box .ico:after {
        width: 0.375em;
        top: calc(100% - 0.5em);
        left: calc(50% - 0.5em);
        border: solid 0 transparent;
        border-width: 0.5em 0.3125em;
        padding-top: 35%;
        background: linear-gradient(#000, #fff) padding-box, radial-gradient(circle at 50% 0.5em, #000 calc(0.5em - 1px), rgba(255, 255, 255, 0) 0.5em) border-box, radial-gradient(circle at 50% calc(100% - 0.5em), #fff calc(0.375em - 1px), rgba(255, 255, 255, 0) 0.375em) border-box;
    }

    .experience-grid-box {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 100%;
        margin-top: 46px;
        margin-bottom: 46px;
    }

    /* End Bell Design */
    .sub-service-page .icons_block {
        padding-top: 0px;
    }

    .sub-service-page .experience-cont-box .icons_block .heading-18 {
        margin-bottom: 16px;
        text-align: center;
        font-size: 36px;
    }

    .defi-services .icons_block .heading-18 {
        font-size: 50px;
        margin-bottom: 46px;
    }

    .benefits-flexbox {
        display: flex;
        /* flex-direction: row; */
        justify-content: space-around;
        width: 100%;
        flex-wrap: wrap;
        gap: 26px;
        row-gap: 36px;
    }

    .benefits-flexcard {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 20%;
        align-items: baseline;
        height: max-content;
        border-radius: 20px;
    }

    .benefits-flexcardNumber {
        width: 70%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        margin: 10px 0px;
        border-radius: 0px 50px 50px 0px;
        color: white;
        text-shadow: 0px 3px 5px black;
        font-weight: 500;
        font-size: 20px;
        position: relative;
    }

    .benefits-flexcardTitle {
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 600;
        line-height: normal;
        min-height: 66px;
    }

    .benefits-flexcardText {
        text-align: center;
        font-weight: 300;
        margin-bottom: 16px;
        min-height: 96px;
    }

    .benefits-flexcardNumber:before {
        content: '';
        width: 34px;
        height: 90px;
        position: absolute;
        left: -33px;
        top: 0px;
        border-radius: 50px 0px 0px 50px;
        /* z-index: -1; */
        /* background: #95B7A2; */
        /* background: -webkit-linear-gradient(bottom, #95B7A2, #AED2BC); */
        background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
        /* background: linear-gradient(to top, #95B7A2, #AED2BC); */
        ;
    }

    .benefits-flexcardNumber:after {
        content: '';
        width: 25px;
        height: 40px;
        position: absolute;
        left: -25px;
        bottom: -40px;
        border-radius: 50px 0px 0px 50px;
        z-index: -1;
    }

    .benefits-flex {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0px auto;
        padding: 8px;
        text-transform: none;
        text-align: center;
    }

    /* GREEN CARD */

    .benefits-flexcardGreen {
        background: #f9fbfa;
        box-shadow: 4px 4px 4px #AED2BC;
    }

    .benefits-flexcardNumberGreen {
        background: #FCFCFC;
        background: -webkit-linear-gradient(right, #FCFCFC, #AED2BC);
        background: -moz-linear-gradient(right, #FCFCFC, #AED2BC);
        background: linear-gradient(to left, #FCFCFC, #AED2BC);
        box-shadow: 0px 2px 2px #AED2BC;
    }

    .benefits-flexcardNumberGreen:before {
        background: #AED2BC;
    }

    .benefits-flexcardNumberGreen:after {
        background: #95b7a2;
    }

    /* BLUE CARD */

    .benefits-flexcardBlue {
        background: #f7ffff;
        box-shadow: 4px 8px 1px #92E8EB;
    }

    .flexcardNumberBlue {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #92E8EB);
        background: -moz-linear-gradient(right, #FDFFFE, #92E8EB);
        background: linear-gradient(to left, #FDFFFE, #92E8EB);
        box-shadow: 0px 2px 2px #92E8EB;
    }

    .flexcardNumberBlue:before {
        background: #92E8EB;
    }

    .flexcardNumberBlue:after {
        background: #71bdbf;
    }

    /* ORANGE CARD */

    .benefits-flexcardOrange {
        background: #fdf8f3;
        box-shadow: 4px 8px 1px #F68404;
    }

    .flexcardNumberOrange {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #F68404);
        background: -moz-linear-gradient(right, #FDFFFE, #F68404);
        background: linear-gradient(to left, #FDFFFE, #F68404);
        box-shadow: 0px 2px 2px #F68404;
    }

    .flexcardNumberOrange:before {
        background: #F68404;
    }

    .flexcardNumberOrange:after {
        background: #d06f02;
    }

    /* PİNK CARD */

    .benefits-flexcardPink {
        background: #fffafd;
        box-shadow: 4px 8px 1px #F34EAE;
    }

    .flexcardNumberPink:before {
        background: #F34EAE;
    }

    .flexcardNumberPink:after {
        background: #d24095;
    }

    .flexcardNumberPink {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #F34EAE);
        background: -moz-linear-gradient(right, #FDFFFE, #F34EAE);
        background: linear-gradient(to left, #FDFFFE, #F34EAE);
        box-shadow: 0px 2px 2px #F34EAE;
    }

    /* RESPONSİVE */

    @media only screen and (max-width: 800px) {
        .benefits-flexcard {
            width: 35%;
            margin-top: 20px;
        }
    }

    @media only screen and (max-width: 500px) {
        .benefits-flexcard {
            width: 70%;
        }
    }

    .sub-service-page .blockchain-marquee {
        height: 100vh;
    }

    .service-grid-cont {
        display: grid;
        grid-template-columns: 15% 85%;
    }

    .service-icon-box {
        height: 100px;
        width: 100px;
        border-radius: 10px;
        border: 4px solid #d9d9d9;
    }

    .service-icon-box img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        border-radius: 10px;
    }
    .sub-service-page .div-block-271 {
        width: 100%;
        max-width: 100%;
        padding: 8px;
        margin-top: 0px;
    }

    .sub-service-page .text-block-40 {
        color: #1d1d1f;
        font-size: 16px;
        line-height: 24px;
    }

    /* Modal Styles */
    .inquiry-modal-wrapper {
        display: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .inquiry-modal-wrapper .modal-content {
        margin: 2% auto;
        padding: 0px;
        border-radius: 14px;
        width: 90%;
        max-width: max-content;
        position: relative;
        animation: modalSlideIn 0.3s ease-out;
        max-height: max-content;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .inquiry-modal-wrapper .close-modal {
        position: absolute;
        right: 20px;
        top: 10px;
        font-size: 28px;
        font-weight: bold;
        color: #fff;
        cursor: pointer;
        transition: color 0.3s ease;
        z-index: 9;
    }

    .inquiry-modal-wrapper .close-modal:hover {
        color: #fff;
    }

    @keyframes modalSlideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Prevent body scroll when modal is open */
    body.modal-open {
        overflow: hidden;
    }

    .contact-form-box.contact-inqur-form {
        position: relative;
        max-width: 100%;
        top: unset;
        left: unset;
        transform: none;
        padding: 16px 16px;
        border-radius: 6px;
        box-shadow: rgba(255, 255, 255, 0.25) 0px 7px 14px,
            rgba(0, 0, 0, 0.22) 0px 10px 10px;
        width: 100%;
        background: #fafafa;
        overflow-y: auto;
    }

    .inquiry-modal-wrapper.loading-inquiry-modalbox {
        display: block;
    }

    .inquiry-modal-wrapper.loading-inquiry-modalbox .modal-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%) !important;
        left: 0;
        right: 0;
    }

    .section-desc.sect-cnt-detail {
        text-align: start;
        max-width: 100%;
        color: #1a1a1a;
    }

    .social-contlink-box {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .whatsapp-icon-box {
        position: fixed;
        max-width: 100px;
        bottom: 16px;
        left: 26px;
        z-index: 999;
    }

    .whatsapp-icon-box .whatsapp-icon {
        height: 40px;
        width: 40px;
        object-fit: contain;
    }

    .telephone-icon-box {
        position: fixed;
        max-width: 100px;
        bottom: 62px;
        left: 26px;
        z-index: 999;
    }

    .telephone-icon-box .telephone-icon {
        height: 40px;
        width: 40px;
        object-fit: contain;
    }

    .up-arrow-box {
        position: fixed;
        max-width: 100px;
        bottom: 26px;
        right: 26px;
        z-index: 999;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .up-arrow-box:hover {
        transform: translateY(-5px);
    }

    .up-arrow-box .up-arrow-icon {
        height: 40px;
        width: 40px;
        object-fit: contain;
    }

    .serv-list.serv-list-two {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cta-btn-box-cont {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 36px;
        margin-bottom: 36px;
        flex-direction: column;
        gap: 16px;
        background: #0285c9;
        padding: 26px 16px 16px 16px;
        /* width: max-content; */
        margin-left: auto;
        margin-right: auto;
        border-radius: 16px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    #inquiry-sub-page-show .nav_link-c.contact:hover {
        background: #774dff;
    }

    .sub-service-page .nav_link-c.contact:hover {
        background: #774dff;
    }

    #inquiry-sub-page-show .b1.grey.text-ailng-left.max-w-29 {
        max-width: 32.9rem;
    }

    .btm-border-gradi {
        text-align: center;
        border-bottom: 2px solid transparent;
        border-image: linear-gradient(0.25turn, rgba(255, 255, 255), rgba(254, 74, 35), rgba(56, 2, 155, 0));
        border-image-slice: 1;
        width: max-content;
        margin: 26px auto;
    }

    .busin-list-detail {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        list-style-type: none;
        margin-bottom: 26px;
        padding: 0
    }
    .solutions.defi-services .bold-text-28{
        letter-spacing: 0.5px;
    }

    @media screen and (max-width: 767px) {
        .sub-service-page .section-tittle {
            max-width: 100%;
            margin-bottom: 26px;
            margin-top: 46px !important;
        }

        .sub-service-page .div-block-271 {
            grid-template-columns: 100%;
        }

        .sub-service-page .div-block-271 .service-icon-box {
            display: none;
        }

        .experience-cont-box p {
            font-size: 16px;
        }

        .busin-list-detail {
            grid-template-columns: repeat(2, 1fr);
        }

        .cta-btn-box-cont {
            margin: 0;
            border-radius: 0;
            line-height: 30px;
            text-align: center;
        }
    }

    @media screen and (max-width: 575px) {
        .benefits-flexcardText {
            min-height: auto;
        }

        .busin-list-detail {
            grid-template-columns: repeat(1, 1fr);
        }

        .btm-border-gradi .section-desc.sect-cnt-detail {
            font-size: 22px !important;
        }
        .whatsapp-icon-box{
            left: 8px;
        }
        .telephone-icon-box{
            left: 8px;
        }
    }

/* Extracted from defi-developer.blade.php */
.sub-service-page .section-tittle {
    max-width: 100%;
    margin-bottom: 26px
}

.sub-service-page .counter-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    list-style-type: none;
    gap: 16px;
    margin: 46px auto 56px auto;
}

.sub-service-page .counter-list .counter-listitem {
    position: relative;
    text-align: center;
    color: #fff;
    background: #141414;
    border-radius: 6px;
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Animated Gradient Border */
.sub-service-page .counter-list .counter-listitem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    padding: 2px;
    background: linear-gradient(45deg, #f3ec78, #af4261, #00dbde, #fc00ff, #f3ec78);
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
    animation: gradientFlow 8s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.sub-service-page .counter-list .counter-listitem .counter-number {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease-out;
        margin-bottom: 15px;
        margin-top: 5px;
}

.sub-service-page .counter-list .counter-listitem .counter-title {
    font-size: 16px;
    line-height: normal;
    letter-spacing: 1.5px;
}

.sub-service-page.bold-text-28 {
    letter-spacing: 1.5px;
}

.sub-service-page .text-block-5 {
    font-size: 14px;
}

.sub-service-page .solution-card-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    height: 16rem;
}

/* Bell Design */

.experience-cont-box .ico:before,
.experience-cont-box .ico svg {
    border-radius: 50%;
    transform-origin: 50% 0;
    transform: rotate(-8deg);
    animation: osc 0.3s ease-in-out infinite alternate;
}

@keyframes osc {
    to {
        transform: rotate(8deg);
    }
}

.experience-cont-box {
    --narr: 1;
    --notnarr: calc(1 - var(--narr));
    --wide: 0;
    --notwide: calc(1 - var(--wide));
    --nor: calc(var(--notnarr)*var(--notwide));
    --or: calc(1 - var(--nor));
    --sum: calc(1 + var(--narr));
    /* display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap; */
    overflow-x: hidden;
    min-height: 100vh;
    /* background: linear-gradient(to right top, #ebedec, #e3e7e6, #dbe1e0, #d3dadb, #ccd4d6); */
}

.experience-cont-box:before {
    --uw: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em);
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: calc(var(--sum)*2*var(--uw));
    transform: translate(calc(var(--sum)*50%/var(--n)), -50%);
    background: radial-gradient(circle at calc(50% - 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at calc(50% + 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at 50% 39%, #fff calc(0.625em - 1px), rgba(255, 255, 255, 0) 0.625em);
    background-size: calc(50%/(2 - var(--narr))) calc(100%/(1 + var(--narr)));
    clip-path: inset(0 calc(var(--sum)*25%) 0 0);
    filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.2));
    content: "";
}

@media (max-width: 480px) {
    .experience-cont-box:before {
        display: none;
    }
}

@media (min-width: 38em) {
    .experience-cont-box {
        --narr: 0;
    }
}

@media (min-width: 58em) {
    .experience-cont-box {
        --wide: 1;
    }
}

.experience-cont-box .hid {
    position: absolute;
    clip-path: inset(50%);
}

.experience-cont-box path {
    --s: 2;
    fill: none;
    stroke: currentcolor;
    stroke-width: var(--s);
    stroke-linecap: round;
}

.experience-cont-box path.d {
    stroke-dasharray: 0 calc(2*var(--s));
}

.experience-cont-box path.t {
    --s: 4;
}

.experience-cont-box .experience-detail {
    display: flex;
    flex-direction: column;
    padding: 1em 1em;
    /* min-width: 7.5em; */
    /* width: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em); */
    /* min-width: 12.5em;
        max-width: 12.5em; */
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.experience-cont-box h3,
.experience-cont-box a {
    color: var(--c0);
}

.experience-cont-box h3 {
    padding: 1em 0 0.5em;
    font-size: calc(var(--nor)*2vw + var(--or)*1.16em);
    text-transform: none;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.experience-cont-box p {
    /* height: 3em; */
    font-size: 16px;
    line-height: normal;
    text-transform: none;
    color: #7f7f7f;
    letter-spacing: 0.5px;
}

.experience-cont-box .ico {
    order: -1;
    position: relative;
    margin-bottom: calc(10% + 2.875em + 2px);
    border-radius: 50%;
    box-shadow: inset 0 0 0 0.325em #000, 11px 11px 12px -9px rgba(27, 14, 0, 0.28);
    background: linear-gradient(135deg, var(--c0), var(--c1)) padding-box;
    height: 120px;
    width: 120px;
    margin-left: auto;
    margin-right: auto;
}

.experience-cont-box .ico a {
    --sgn: 1;
    box-sizing: border-box;
    display: grid;
    place-content: center;
    padding: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    clip-path: circle(calc(50% - 0.625em));
}

.experience-cont-box .ico a:hover {
    --sgn: -1;
}

.experience-cont-box .ico svg {
    /* --w: calc(100% - 4em); */
    --w: 66px;
    box-sizing: border-box;
    position: absolute;
    margin: calc(-.5*var(--w));
    border: solid 1em transparent;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    box-shadow: calc(var(--sgn)*36px) 27px 11px -5px rgba(27, 14, 0, 0.16);
    background: linear-gradient(135deg, #fff, #d2d2d2) border-box;
    transition: 0.3s ease-out;
}

.experience-cont-box .ico:before,
.ico:after {
    position: absolute;
    content: "";
}

.experience-cont-box .ico:before {
    box-sizing: border-box;
    top: calc(135% + 1px);
    /* left: calc(50% - 1.4375em); */
    left: calc(50% - 12px);
    border: solid 0.625em transparent;
    width: 1.875em;
    height: 1.875em;
    box-shadow: 0 0 0 2px #000;
    background: inherit;
    filter: drop-shadow(1px 3px 2px rgba(0, 0, 0, 0.32));
}

.experience-cont-box .ico:after {
    width: 0.375em;
    top: calc(100% - 0.5em);
    left: calc(50% - 0.5em);
    border: solid 0 transparent;
    border-width: 0.5em 0.3125em;
    padding-top: 35%;
    background: linear-gradient(#000, #fff) padding-box, radial-gradient(circle at 50% 0.5em, #000 calc(0.5em - 1px), rgba(255, 255, 255, 0) 0.5em) border-box, radial-gradient(circle at 50% calc(100% - 0.5em), #fff calc(0.375em - 1px), rgba(255, 255, 255, 0) 0.375em) border-box;
}

.experience-grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin-top: 46px;
    margin-bottom: 46px;
}

/* End Bell Design */
.sub-service-page .icons_block {
    padding-top: 0px;
}

.sub-service-page .experience-cont-box .icons_block .heading-18 {
    margin-bottom: 16px;
    text-align: center;
    font-size: 36px;
}

.defi-services .icons_block .heading-18 {
    font-size: 50px;
    margin-bottom: 46px;
}

.benefits-flexbox {
    display: flex;
    /* flex-direction: row; */
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
    gap: 26px;
    row-gap: 36px;
}

.benefits-flexcard {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 20%;
    align-items: baseline;
    height: max-content;
    border-radius: 20px;
}

.benefits-flexcardNumber {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin: 10px 0px;
    border-radius: 0px 50px 50px 0px;
    color: white;
    text-shadow: 0px 3px 5px black;
    font-weight: 500;
    font-size: 20px;
    position: relative;
}

.benefits-flexcardTitle {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    min-height: 66px;
}

.benefits-flexcardText {
    text-align: center;
    font-weight: 300;
    margin-bottom: 16px;
    min-height: 96px;
}

.benefits-flexcardNumber:before {
    content: '';
    width: 34px;
    height: 90px;
    position: absolute;
    left: -33px;
    top: 0px;
    border-radius: 50px 0px 0px 50px;
    /* z-index: -1; */
    /* background: #95B7A2; */
    /* background: -webkit-linear-gradient(bottom, #95B7A2, #AED2BC); */
    background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
    /* background: linear-gradient(to top, #95B7A2, #AED2BC); */
    ;
}

.benefits-flexcardNumber:after {
    content: '';
    width: 25px;
    height: 40px;
    position: absolute;
    left: -25px;
    bottom: -40px;
    border-radius: 50px 0px 0px 50px;
    z-index: -1;
}

.benefits-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0px auto;
    padding: 8px;
    text-transform: none;
    text-align: center;
}

/* GREEN CARD */

.benefits-flexcardGreen {
    background: #f9fbfa;
    box-shadow: 4px 4px 4px #AED2BC;
}

.benefits-flexcardNumberGreen {
    background: #FCFCFC;
    background: -webkit-linear-gradient(right, #FCFCFC, #AED2BC);
    background: -moz-linear-gradient(right, #FCFCFC, #AED2BC);
    background: linear-gradient(to left, #FCFCFC, #AED2BC);
    box-shadow: 0px 2px 2px #AED2BC;
}

.benefits-flexcardNumberGreen:before {
    background: #AED2BC;
}

.benefits-flexcardNumberGreen:after {
    background: #95b7a2;
}

/* BLUE CARD */

.benefits-flexcardBlue {
    background: #f7ffff;
    box-shadow: 4px 8px 1px #92E8EB;
}

.flexcardNumberBlue {
    background: #FDFFFE;
    background: -webkit-linear-gradient(right, #FDFFFE, #92E8EB);
    background: -moz-linear-gradient(right, #FDFFFE, #92E8EB);
    background: linear-gradient(to left, #FDFFFE, #92E8EB);
    box-shadow: 0px 2px 2px #92E8EB;
}

.flexcardNumberBlue:before {
    background: #92E8EB;
}

.flexcardNumberBlue:after {
    background: #71bdbf;
}

/* ORANGE CARD */

.benefits-flexcardOrange {
    background: #fdf8f3;
    box-shadow: 4px 8px 1px #F68404;
}

.flexcardNumberOrange {
    background: #FDFFFE;
    background: -webkit-linear-gradient(right, #FDFFFE, #F68404);
    background: -moz-linear-gradient(right, #FDFFFE, #F68404);
    background: linear-gradient(to left, #FDFFFE, #F68404);
    box-shadow: 0px 2px 2px #F68404;
}

.flexcardNumberOrange:before {
    background: #F68404;
}

.flexcardNumberOrange:after {
    background: #d06f02;
}

/* PİNK CARD */

.benefits-flexcardPink {
    background: #fffafd;
    box-shadow: 4px 8px 1px #F34EAE;
}

.flexcardNumberPink:before {
    background: #F34EAE;
}

.flexcardNumberPink:after {
    background: #d24095;
}

.flexcardNumberPink {
    background: #FDFFFE;
    background: -webkit-linear-gradient(right, #FDFFFE, #F34EAE);
    background: -moz-linear-gradient(right, #FDFFFE, #F34EAE);
    background: linear-gradient(to left, #FDFFFE, #F34EAE);
    box-shadow: 0px 2px 2px #F34EAE;
}

/* RESPONSİVE */

@media only screen and (max-width: 800px) {
    .benefits-flexcard {
        width: 35%;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .benefits-flexcard {
        width: 70%;
    }
}

.sub-service-page .blockchain-marquee {
    height: 100vh;
}

.service-grid-cont {
    display: grid;
    grid-template-columns: 15% 85%;
}

.service-icon-box {
    height: 100px;
    width: 100px;
    border-radius: 10px;
    border: 4px solid #d9d9d9;
}

.service-icon-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.sub-service-page .div-block-271 {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    margin-top: 0px;
}

.sub-service-page .text-block-40 {
    color: #1d1d1f;
    font-size: 16px;
    line-height: 24px;
}

/* Modal Styles */
.inquiry-modal-wrapper {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.inquiry-modal-wrapper .modal-content {
    margin: 2% auto;
    padding: 0px;
    border-radius: 14px;
    width: 90%;
    max-width: max-content;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    max-height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-modal-wrapper .close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 9;
}

.inquiry-modal-wrapper .close-modal:hover {
    color: #fff;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

.contact-form-box.contact-inqur-form {
    position: relative;
    max-width: 100%;
    top: unset;
    left: unset;
    transform: none;
    padding: 16px 16px;
    border-radius: 6px;
    box-shadow: rgba(255, 255, 255, 0.25) 0px 7px 14px,
        rgba(0, 0, 0, 0.22) 0px 10px 10px;
    width: 100%;
    background: #fafafa;
    overflow-y: auto;
}

.inquiry-modal-wrapper.loading-inquiry-modalbox {
    display: block;
}

.inquiry-modal-wrapper.loading-inquiry-modalbox .modal-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important;
    left: 0;
    right: 0;
}

.section-desc.sect-cnt-detail {
    text-align: start;
    max-width: 100%;
    color: #1a1a1a;
}

.social-contlink-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.whatsapp-icon-box {
    position: fixed;
    max-width: 100px;
    bottom: 16px;
    left: 26px;
    z-index: 999;
}

.whatsapp-icon-box .whatsapp-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.telephone-icon-box {
    position: fixed;
    max-width: 100px;
    bottom: 62px;
    left: 26px;
    z-index: 999;
}

.telephone-icon-box .telephone-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.up-arrow-box {
    position: fixed;
    max-width: 100px;
    bottom: 26px;
    right: 26px;
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.up-arrow-box:hover {
    transform: translateY(-5px);
}

.up-arrow-box .up-arrow-icon {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.serv-list.serv-list-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cta-btn-box-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 36px;
    margin-bottom: 36px;
    flex-direction: column;
    gap: 16px;
    background: #0285c9;
    padding: 26px 16px 16px 16px;
    /* width: max-content; */
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#inquiry-sub-page-show .nav_link-c.contact:hover {
    background: #774dff;
}

.sub-service-page .nav_link-c.contact:hover {
    background: #774dff;
}

#inquiry-sub-page-show .b1.grey.text-ailng-left.max-w-29 {
    max-width: 32.9rem;
}

.btm-border-gradi {
    text-align: center;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(255, 255, 255), rgba(254, 74, 35), rgba(56, 2, 155, 0));
    border-image-slice: 1;
    width: max-content;
    margin: 26px auto;
}

.busin-list-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style-type: none;
    margin-bottom: 26px;
    padding: 0
}

.solutions.defi-services .bold-text-28 {
    letter-spacing: 0.5px;
}

@media screen and (max-width: 767px) {
    .sub-service-page .section-tittle {
        max-width: 100%;
        margin-bottom: 26px;
        margin-top: 46px !important;
    }

    .sub-service-page .div-block-271 {
        grid-template-columns: 100%;
    }

    .sub-service-page .div-block-271 .service-icon-box {
        display: none;
    }

    .experience-cont-box p {
        font-size: 16px;
    }

    .busin-list-detail {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-btn-box-cont {
        margin: 0;
        border-radius: 0;
        line-height: 30px;
        text-align: center;
    }
}

@media screen and (max-width: 575px) {
    .benefits-flexcardText {
        min-height: auto;
    }

    .busin-list-detail {
        grid-template-columns: repeat(1, 1fr);
    }

    .btm-border-gradi .section-desc.sect-cnt-detail {
        font-size: 22px !important;
    }

    .whatsapp-icon-box {
        left: 8px;
    }

    .telephone-icon-box {
        left: 8px;
    }
}

/* Extracted from free_bies.blade.php */
/* Modal container */
        .custom-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }

        /* Modal content box */
        .custom-modal-content {
            background-color: #fff;
            margin: 10% auto;
            padding: 20px;
            width: 400px;
            border-radius: 8px;
            position: relative;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

        /* Close button */
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            font-weight: bold;
            color: #333;
            cursor: pointer;
        }

        .close-btn:hover {
            color: red;
        }

        .service-grid-title {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .service-grid-descript {
            font-size: 1rem;
            margin-top: 10px;
        }

        .btn {
            background-color: #13D3D0;
            color: white;
            padding: 10px 20px;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #0d8e8c;
        }

        .case-study .section.hero.case {
            height: auto;
        }

        .case-study-modal .modal-content {
            width: 30%;
            top: 50%;
            transform: translateY(-50%) !important;
            padding: 25px;
        }

        .case-study-modal .view-form-box-cont {
            padding: 0;
        }

        .case-study-modal .custom-modal-content {
            padding: 25px;
            text-align: center;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            margin: 12px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .case-study-modal .custom-modal-content h2 {
            font-size: 2rem;
            line-height: 50px;
            color: #FFFFFF;
            font-weight: 500;
            margin-bottom: 16px;
        }

        .case-study-modal .form-group {
            margin-bottom: 10px
        }

        .case-study-modal .form-control {
            color: #080808;
            background-color: #fff;
            border: 0.0625rem solid #9c9c9c;
            border-radius: 6px;
            width: 100%;
            margin-bottom: 0;
            padding: 10px 16px;
            font-family: Itcavantgardestd Md, sans-serif;
            font-size: 1rem;
            transition: all 0.4s;
            margin-bottom: 3px;
            outline: none;
        }

        button.submit-btn {
            background: #774dff;
            padding: 12px;
            border-radius: 8px;
            color: #fff;
            font-weight: 600;
            letter-spacing: 2px;
            box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
            min-width: 120px;
            font-size: 16px;
            border: 0;
        }

        .case-study-modal .iti__country-list {
            max-width: 349px;
            overflow-x: hidden;
        }

        .grid-container.cust-case-grid-cont {
            max-width: 750px;
        }

        .down-btn span {
            font-size: 14px;
            font-weight: 400;
            /* color: #fe4a23; */
        }

        .badge-sec-main {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .badge-sec-main .cus-badge {
            width: max-content;
            padding: 7px 12px;
            /* border: 1px solid #f74822; */
            border-radius: 10px;
            font-size: 12px;
            font-weight: 400;
            min-width: 70px;
        }


        /*
                                .badge-blue    { background-color: #007BFF; }
                                .badge-red     { background-color: #DC3545; }
                                .badge-green   { background-color: #28A745; }
                                .badge-orange  { background-color: #FD7E14; }
                                .badge-purple  { background-color: #6F42C1; }
                                .badge-pink    { background-color: #E83E8C; }
                                .badge-cyan    { background-color: #17A2B8; }
                                .badge-teal    { background-color: #20C997; }
                                .badge-brown   { background-color: #795548; }
                                .badge-lime    { background-color: #C0CA33; color: #000; }
                                .badge-indigo  { background-color: #6610f2; }
                                .badge-maroon  { background-color: #800000; }
                                .badge-olive   { background-color: #808000; }
                                .badge-navy    { background-color: #001f3f; } */

        /* .badge-default { background-color: #6C757D; } */
        .badge-sec-main .badge-blue {
            color: #007BFF;
            background: rgb(0 123 255 / 30%);
        }

        .badge-sec-main .badge-red {
            color: #DC3545;
            background: rgb(220 53 69 / 30%);
        }

        .badge-sec-main .badge-yellow {
            color: #795548;
            background: rgb(255 193 7 / 30%);
        }

        .badge-sec-main .badge-orange {
            color: #FD7E14;
            background: rgb(253 126 20 / 30%);
        }

        .badge-sec-main .badge-pink {
            color: #E83E8C;
            background: rgb(232 62 140 / 30%);
        }

        .badge-sec-main .badge-cyan {
            color: #E83E8C;
            background: rgb(232 62 140 / 30%);
        }

        .badge-sec-main .badge-default {
            color: #6C757D;
            background: rgb(108 117 125 / 30%);
        }

        .badge-sec-main .badge-purple {
            color: #6F42C1;
            background: rgb(111 66 193 / 30%);
        }

        @media screen and (max-width: 1024px) {
            .case-study-page .container.hero.margin-top-8.overflow-hidden {
                height: calc(100vh - 492px);
            }
        }

        @media screen and (max-width: 991px) {
            .case-study-page .service-card-sect-box .grid-container {
                grid-template-columns: repeat(1, 1fr);
            }

            .case-study-page .section-tittle {
                font-size: 40px;
            }

            .case-study-page .container.hero.margin-top-8.overflow-hidden {
                height: calc(100vh - 395px);
            }

            .case-study-title .subtittle-section-heading {
                max-width: 60%;
            }

            .case-study-page .grid-container.cust-case-grid-cont {
                max-width: 700px;
            }
        }

        @media screen and (max-width: 767px) {
            .case-study-page .section-tittle {
                font-size: 30px;
                line-height: 36px;
            }

            .case-study-title .subtittle-section-heading {
                max-width: 100%;
            }

            .case-study-page .container.hero.margin-top-8.overflow-hidden {
                height: auto;
            }

            .case-study-page .service-card-sect-box .grid-item-cont {
                padding-bottom: 70px;
            }

            .case-study-page .card-bg-color-8 * {
                position: unset;
            }

            .case-study-page .down-btn {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 10px;
                align-items: center;
            }

            .case-study-page .badge-sec-main {
                border-bottom: 2px solid #ffffff40;
                padding-bottom: 20px;
            }

            .case-study-modal .custom-modal-content h2 {
                font-size: 1.5rem;
                line-height: 39px;
            }

            .case-study-modal .custom-modal-content {
                width: 85%;
                left: 46.5%;
            }

            .section.hero.case.mobile-pt-2 {
                padding-top: 2rem;
            }
        }

        .case-study-modal .close-btn {
            color: #aaaaaa;
        }

        .case-study-modal .close-btn:hover {
            color: #FFFFFF;
        }

        .case-study-page .card-bg-color-8:hover {

            background: #FFFFFFF;
        }

        .service-card-sect-box .grid-item-cont:hover {
            background-color: #FFFFFF !important;
        }

        .case-study-page .card-bg-color-8 {
            background: #FFFFFF;
            color: #000;
        }
        .flex-free-bies.service-card-sect-box .grid-container.cust-case-grid-cont{
            display:grid;
            grid-template-columns: 1fr;
        }
        .case-study-page .service-card-sect-box {
            margin-bottom: 0;
        }

        .case-study-page .grid-container.cust-case-grid-cont {
            padding-top: 0;
        }

        .free-bies-bage-box{
            display:grid;
            grid-template-columns: 15% 65% 20%;
            gap: 10px;
        }

        .free-bies-bage-box .free-bies-img{
            height: 100px;
            width: 100px;
            object-fit:cover;
            border-radius: 10px;
        }
        .service-card-sect-box .service-grid-descript{
            margin: 0 auto;
        }
        .free-bies-bage-box .service-grid-title{
            text-align: start;
        }
        .free-bies-bage-box .down-btn{
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            gap:8px;            
            position: relative;
            bottom: 0;
        }
        @media screen and (max-width: 991px) {
            .free-bies-bage-box{
                grid-template-columns: 100%;
            }
            .case-study-page .service-card-sect-box .service-grid-title{
                text-align: center;
            }
        }

/* Extracted from new-blockchain.blade.php */
.case-heading.set-1 {
        text-align: center;
        /* max-width: 42.7rem; */
        font-size: 48px;
        line-height: 56px;
        letter-spacing: 0;
        color: #fe4a23;
    }
    .custom-heading {
        overflow: unset !important;
    }

    .block-new-main .section-tittle,
    .hero-home-heading-wrap .section-tittle {
        font-size: 32px;
        line-height: 45px;
        margin-bottom: 40px;
        font-weight: 700;
    }

    .block-new-main .section-tittle span,
    .hero-home-heading-wrap .section-tittle span {
        color: #e25611;
    }

    .section-con {
        color: #737373;
        font-size: 15px;
        line-height: 140%;
        margin-bottom: 20px;
        text-align: justify;
    }

    .block-hero-main .hero-row {
        display: grid;
        grid-template-columns: 63% 1fr;
        gap: 40px;
        margin-bottom: 10px;
    }

    /* .section-con a{
        font-weight: 600;
    } */
    @media screen and (min-width: 1920px) {
        .container.serv {
            max-width: 100rem;
        }
    }

    /* .block-hero-main{
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
} */
    .block-hero-right iframe {
        width: 100%;
        height: 100%;
        max-height: 300px;
    }

    .block-new-main .section.hero.case {
        height: auto;
    }

    .inner-counter-sec {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1000px;
        margin: 0 auto;
    }

    .counter-box {
        padding: 20px;
        border: 1px solid #fe4a23;
        border-radius: 5px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        min-width: 180px;
        background: #fe4a23;
        box-shadow: rgb(254 74 35) 0px 8px 24px;
    }

    .counter-box .count-value {
        margin: 0 0 5px 0;
        font-size: 40px;
        line-height: 40px;
        color: #FFFFFF;
    }

    /* .counter-box p{
    margin: 0;
    font-size: 40px;
    line-height: 40px;
    } */
    .main-counter-sec {
        padding-top: 5rem;
    }

    .counter-box .section-con {
        margin: 0;
        color: #FFFFFF;
    }

    .section-con.heading-sub-para {
        font-size: 15px;
        text-align: center;
    }

    .main-services-sec .section-tittle {
        margin-bottom: 40px;
    }

    .card-title {
        /* color: #FFFFFF; */
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: bold;
        /* text-align: center; */
    }

    .service-card-sec .section-con {
        text-align: justify;
    }

    .cta-sec .cta-title {
        color: #080808;
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 30px;
        font-weight: 600;
    }

    .cta-sec .cta-sub-title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .case-study-sec,
    .expert-sec,
    .pt-5rem {
        padding-top: 5rem;
    }


    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #444;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .case-study-slider-sec {
        overflow: hidden;
        position: relative;
    }

    h3 {
        font-size: 20px !important;
        font-weight: bold !important;
    }

    .swiper-slide .swiper-flex {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .slide-left h3 {
        margin-bottom: 20px;
        text-align: left;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;
    }

    .swiper-button-prev img {
        transform: rotate(180deg);
    }

    .swiper-button-prev img,
    .swiper-button-next img {
        filter: brightness(0) saturate(100%) invert(40%) sepia(45%) saturate(2332%) hue-rotate(354deg) brightness(90%) contrast(96%);
    }

    .swiper-button-next {
        right: -7px;
    }

    .swiper-button-prev {
        left: -7px;
    }

    .exper-main-sec .expert-img {
        width: 251px;
        height: 251px;
        object-fit: contain;
        border: 1px solid #fe4a2352;
        border-radius: 5px;
    }

    .main-btn {
        color: #fff;
        background-color: #fe4a23;
        justify-content: center;
        align-items: center;
        display: flex;
        position: relative;
        overflow: hidden;
        border-radius: 0.56rem;
        max-width: max-content;
        padding: 16px 26px;
        font-size: 18px;
        margin-top: 30px !important;
    }

    .expert-sec .exper-main-sec {
        display: flex;
        align-items: center;
        gap: 40px;
        background-color: #fe4a2312;
        padding: 30px;
        border-radius: 30px;
    }

    .expert-con-sec h2 {
        font-size: 26px;
        line-height: 30px;
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .expert-con-sec h2 span{
    color: #fe4a23;
}

    .section-con.quete-text {
        color: var(--dark-black-900);
        font-size: 20px;
        font-style: italic;
    }

    .why-choose-card .service-card-sec {
        padding: 30px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        /* text-align: center; */
            border: 1px solid #fe4a232b;
    }

    .why-choose-card {
        /* padding-bottom: 5rem; */
        margin-top: 50px;
    }

    .service-sec .why-choose-card {
        gap: 50px;
    }

    .client-inner-sec .client-logo-sec {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .client-logo-sec .client-img {
        width: 100%;
        height: 100%;
        /* max-width: 190px; */
        max-width: 200px;
        max-height: 200px;
        object-fit: contain;
    }

    .technology-stack-sec .client-logo-sec .client-img {
        max-width: 80px;
        max-height: 80px;
    }

    .process-sec .why-choose-card {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-sec .why-choose-card .service-card-sec {
        max-width: 430px;
    }

    .accordion {
        max-width: 80%;
        margin: 0 auto;
        background: white;
    }

    .accordion-item {
        border: 2px solid #333;
        margin-bottom: 20px;
        background: white;
    }

    /* .accordion-item:first-child {
        border-radius: 8px 8px 0 0;
    } */

    .accordion-item:last-child {
        margin-bottom: 0;
    }

    .accordion-item:only-child {
        border-radius: 8px;
    }

    /* Hide the radio buttons */
    .accordion-radio {
        display: none;
    }

    /* Style the label (header) */
    .accordion-header {
        display: block;
        padding: 15px 20px;
        background: white;
        cursor: pointer;
        font-weight: normal;
        color: #333;
        position: relative;
        border: none;
        width: 100%;
        font-size: 20px;
        font-weight: bold;
        line-height: 28px;
    }

    .accordion-header:hover {
        background-color: #f8f8f8;
    }

    /* Style the toggle icon - default closed */
    .accordion-header::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        font-weight: bold;
        color: #333;
        transition: transform 0.3s ease;
    }

    /* Change icon when expanded */
    .accordion-radio:checked+.accordion-header::after {
        content: '−';
    }

    /* Style the content - default closed */
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: white;
    }

    .accordion-content-inner {
        padding: 20px;
        color: #737373;
        font-size: 15px;
        line-height: 140%;
        text-align: justify;
    }

    /* Show content when radio button is checked */
    .accordion-radio:checked~.accordion-content {
        max-height: 300px;
        /* Adjust based on your content */
    }

    .faq-sec,
    .service-wrapper {
        padding-bottom: 5rem;
    }

    .hero-home-heading-wrap,
    .block-new-main .section-tittle,
    .hero-home-heading-wrap .section-tittle,
    .hero-heading .hero-home-heading-wrap {
        max-width: 100%;
    }

    h3 {
        color: #9a41ab !important;
    }

    .tabs-wrapper {
        display: flex;
        margin-top: 40px;
        border: 1px solid #f8f9fa;
        border-radius: 10px;
    }

    .tabs-nav {
        flex: 0 0 280px;
        background: #f8f9fa;
        padding: 0px 0;
    }

    .tabs-nav label {
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 13px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #495057;
        font-weight: 500;
        position: relative;
        font-size: 15px;
    }

    .tabs-nav label:hover {
        background: #e9ecef;
        color: #667eea;
    }

    /* .tabs-nav label::before {
            content: attr(data-number);
            display: inline-block;
            width: 30px;
            height: 30px;
            background: #dee2e6;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 12px;
            font-size: 14px;
            transition: all 0.3s ease;
        } */

    input[type="radio"] {
        display: none;
    }

    input[type="radio"]:checked+label {
        background: white;
        color: #667eea;
        border-left-color: #667eea;
        font-weight: 600;
    }

    input[type="radio"]:checked+label::before {
        background: #667eea;
        color: white;
    }

    .tabs-content {
        flex: 1;
        padding: 20px 40px;
        align-items: center;
        display: flex;
    }

    .tab-panel {
        display: none;
        animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #tab1:checked~.tabs-content #content1,
    #tab2:checked~.tabs-content #content2,
    #tab3:checked~.tabs-content #content3,
    #tab4:checked~.tabs-content #content4,
    #tab5:checked~.tabs-content #content5 {
        display: block;
    }

    .tab-panel h3 {
        font-size: 28px;
        color: #212529;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

    /* .tab-panel h3::before {
        content: '◆';
        color: #667eea;
        margin-right: 12px;
        font-size: 20px;
    } */

    .tab-panel p {
        font-size: 16px;
        line-height: 1.8;
        color: #495057;
    }


    .tab-panel {
        display: none;
    }

    .tab-panel.active {
        display: block;
    }

    .tabs-nav label.active {
        color: #774dff;
        /* font-weight: 600; */
    }

    .tabs-nav label.active .tab-icon {
        filter: brightness(0) saturate(100%) invert(37%) sepia(45%) saturate(6090%) hue-rotate(240deg) brightness(99%) contrast(105%);
    }

    .tab-panel.active {
        color: #212529;
    }

    img.tab-icon {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    @media screen and (max-width: 1600px) {
        .process-sec .why-choose-card .service-card-sec {
            max-width: 390px;
        }
    }

    @media screen and (max-width: 1480px) {
        .process-sec .why-choose-card .service-card-sec {
            max-width: 340px;
        }
    }

    @media screen and (max-width: 1280px) {
        .expert-con-sec h2 {
            font-size: 22px;
        }
    }

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

        .block-new-main .section-tittle,
        .hero-home-heading-wrap .section-tittle {
            font-size: 26px;
            line-height: 40px;
        }

        .client-logo-sec .client-img {
            max-width: 160px;
            max-height: 160px;
        }

        .process-sec .why-choose-card .service-card-sec {
            max-width: 270px;
        }

        h3 {
            font-size: 17px !important;
        }

        .block-hero-right iframe {
            max-height: 300px;
        }

        .block-hero-main .hero-row {
            grid-template-columns: 50% 1fr;
            gap: 20px;
        }

        .main-counter-sec .w-layout-grid.grid-3.service-grid-3 {
            grid-column-gap: 26px;
            grid-row-gap: 26px;
        }
    }

    @media screen and (max-width: 1024px) {
        .slide-right iframe {
            max-width: 410px;
            max-height: 250px;
        }

        .exper-main-sec .expert-img {
            max-width: 400px;
        }
        .technology-stack-sec .client-logo-sec .client-img {
    max-width: 70px;
    max-height: 70px;
}
.service-card-sec .card-img {
    width: 60px;
    height: 60px;
}
    }

    @media screen and (max-width: 991px) {
        .hero-home-heading-wrap {
            max-width: 100% !important;
        }

        .block-hero-main .hero-row {
            grid-template-columns: 1fr;
        }

        .block-hero-right iframe {
            height: 300px;
            margin-bottom: 10px;
        }

        .counter-box {
            min-width: 150px;
        }

        .counter-box h6 {
            font-size: 36px;
            line-height: 40px;
        }

        .swiper-slide .swiper-flex {
            flex-direction: column-reverse;
        }

        .expert-sec .exper-main-sec {
            flex-direction: column;
        }

        .exper-main-sec .expert-img {
            max-width: 100%;
        }

        .client-logo-sec .client-img {
            max-width: 120px;
            max-height: 120px;
        }

        .technology-stack-sec .client-logo-sec .client-img {
            max-width: 80px;
            max-height: 80px;
        }

        .accordion-header {
            font-size: 17px;
        }

        .service-sec .why-choose-card {
            gap: 30px;
        }

        .why-choose-card .service-card-sec {
            padding: 20px;
        }

        .block-new-main .section-tittle,
        .hero-home-heading-wrap .section-tittle {
            font-size: 23px;
            line-height: 37px;
        }
        .block-new-main .section-tittle, .hero-home-heading-wrap .section-tittle {
    margin-bottom: 40px;
    padding-top: 5rem;
}
.process-sec .why-choose-card .service-card-sec {
        max-width: 48%;
    }
    .tabs-nav {
    flex: 0 0 250px;
}
    }

    @media screen and (max-width: 767px) {
        .counter-box {
            min-width: 100%;
            border-radius: 0;
        }

        .collection-list-wrapper.w-dyn-list, .collection-list-wrapper-2.w-dyn-list, .featured-img-wrap.main-news-box, .news-info.new-info-cont.max-w-22-7 {
            width: 100%;
            padding: 15px !important;
        }

        .inner-counter-sec {
            flex-wrap: wrap
        }

        .main-counter-sec {
            padding-top: 0;
        }

        .cta-sec {
            padding: 0 20px;
        }

        .cta-sec .cta-title {
            font-size: 22px;
        }

        .slide-right iframe {
            width: 100%;
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 30px;
            height: 30px;
        }

        .slide-left h3 {
            color: #ffffff;
        }

        .expert-sec {
            padding: 0 20px;
            padding-top: 5rem;
        }

        .exper-main-sec .main-btn {
            padding: 16px 25px;
            font-size: 16px;
            width: 100%;
        }

        .exper-main-sec {
            margin-bottom: 20px;
        }

        .exper-main-sec .expert-img {
            height: auto;
        }
         .tabs-wrapper {
            flex-direction: column;
        }

        .tabs-nav {
            flex: none;
            border-right: none;
            border-bottom: 1px solid #e0e0e0;
            padding: 20px 0;
        }

        .tabs-nav label {
            padding: 12px 20px;
            font-size: 14px;
        }

        .tabs-content {
            padding: 30px 20px;
        }

        .tab-panel h3 {
            font-size: 22px;
        }
        .process-sec .why-choose-card .service-card-sec {
        max-width: 100%;
    }
        .section.hero.case, .section.hero.case_2 {
        padding-top: 10rem;
    }
    .block-new-main .section.hero.case{
        padding-top: 9rem;
    }
    .block-hero-right iframe {
        height: 197px;
    }
        .slide-right iframe {
        max-height: 168px;
    }
        .service-sec .why-choose-card {
           grid-template-columns: 1fr;
    }
        .technology-stack-sec .client-logo-sec .client-img {
        max-width: 40px;
        max-height: 40px;
    }
        .client-logo-sec .client-img {
        max-width: 70px;
        max-height: 70px;
    }
    .client-inner-sec .client-logo-sec {
    margin-bottom: 40px;
}
.modal-content.inquiry-modal {
    max-width: 100%;
    width: 90%;
}
    }


    .service-card-sec .card-img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .main-counter-sec .tabs-wrapper {
        margin-bottom: 50px;
    }

    :root {
        --shimmer-hue-1: 213deg;
        --shimmer-sat-1: 95%;
        --shimmer-lit-1: 91%;
        --shimmer-hue-2: 248deg;
        --shimmer-sat-2: 100%;
        --shimmer-lit-2: 86%;
        --shimmer-hue-3: 293deg;
        --shimmer-sat-3: 78%;
        --shimmer-lit-3: 89%;

        --glow-hue: 222deg;
        --shadow-hue: 180deg;
        --spring-easing: linear(0, 0.002, 0.01 0.9%, 0.038 1.8%, 0.156, 0.312 5.8%, 0.789 11.1%, 1.015 14.2%,
                1.096, 1.157, 1.199, 1.224 20.3%, 1.231, 1.231, 1.226, 1.214 24.6%,
                1.176 26.9%, 1.057 32.6%, 1.007 35.5%, 0.984, 0.968, 0.956, 0.949 42%,
                0.946 44.1%, 0.95 46.5%, 0.998 57.2%, 1.007, 1.011 63.3%, 1.012 68.3%,
                0.998 84%, 1);
        --spring-duration: 1.33s;
    }

    @property --mask {
        syntax: "<angle>";
        inherits: false;
        initial-value: 33deg;
    }

    @keyframes spin {
        0% {
            --mask: 0deg;
        }

        100% {
            --mask: 360deg;
        }
    }

    @keyframes wipe {
        0% {
            mask-position: 200% center;
        }

        100% {
            mask-position: 0% center;
        }
    }

    @keyframes pulse {

        0%,
        90%,
        100% {
            opacity: 0;
        }

        20% {
            opacity: 1;
        }
    }

    @keyframes pulse2 {
        0% {
            opacity: 0;
        }

        8% {
            opacity: 1;
        }

        14% {
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes flicker {
        0% {
            opacity: 0.1;
            mask-image: none;
        }

        1% {
            opacity: 1;
        }

        2% {
            opacity: 0.5;
        }

        3% {
            opacity: 0.1;
        }

        4% {
            opacity: 0.7;
        }

        5% {
            opacity: 1;
        }

        7% {
            opacity: 0.7;
            mask-image: linear-gradient(90deg, transparent 15%, black 45%, black 55%, transparent 85%);
        }

        8% {
            opacity: 0.1;
        }

        10% {
            opacity: 0.4;
        }

        13% {
            opacity: 1;
        }

        15% {
            opacity: 0.1;
            mask-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 25%, transparent 45%, black 65%, black 90%, transparent 100%);
        }

        17% {
            opacity: 0.8;
        }

        19% {
            opacity: 0.3;
        }

        21.5% {
            opacity: 0;
        }

        23% {
            opacity: 1;
        }

        39% {
            opacity: 0.7;
        }

        45% {
            opacity: 0.2;
        }

        49% {
            opacity: 0.9;
        }

        52% {
            opacity: 0.7;
        }

        53.5% {
            opacity: 0.2;
            mask-image: linear-gradient(90deg, black 15%, black 45%, rgba(0, 0, 0, 0.4) 75%, transparent 85%);
        }

        57% {
            opacity: 0.8;
        }

        63% {
            opacity: 1;
        }

        75% {
            opacity: .85;
        }

        77% {
            opacity: 1;
        }

        80% {
            opacity: .9;
        }

        82% {
            opacity: .95;
        }

        83% {
            opacity: .85;
        }

        86% {
            opacity: 1;
        }

        89% {
            opacity: .85;
        }

        91% {
            opacity: 1;
        }

        92% {
            opacity: .9;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes shine {
        0% {
            opacity: 0;
        }

        15% {
            opacity: 1;
        }

        55% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes text {
        0% {
            background-position: 100% center;
        }

        100% {
            background-position: -100% center;
        }
    }

    .dark .glow-btn {
        color: var(--bg);
        font-weight: 600;
        font-size: 1.2em;
        background-image: linear-gradient(315deg,
                hsl(var(--shimmer-hue-1), var(--shimmer-sat-1), var(--shimmer-lit-1)) 0.00%,
                hsl(var(--shimmer-hue-2), var(--shimmer-sat-2), var(--shimmer-lit-2)) 47%,
                hsl(var(--shimmer-hue-3), var(--shimmer-sat-3), var(--shimmer-lit-3)) 100.00%);
        padding: .8em 1.4em;
        position: relative;
        isolation: isolate;
        box-shadow: 0 2px 3px 1px hsl(var(--glow-hue) 50% 20% / 50%);
        border: none;
        outline: none;
        border-radius: 0.66em;
        scale: 1;
        transition: all var(--spring-duration) var(--spring-easing);
        text-transform: unset;
    }

    .shimmer {
        position: absolute;
        inset: -40px;
        border-radius: inherit;
        mix-blend-mode: color-dodge;
        mix-blend-mode: plus-lighter;
        pointer-events: none;
    }

    .shimmer::before,
    .shimmer::after {
        transition: all 0.5s ease;
        opacity: 0;
        content: "";
        border-radius: inherit;
        position: absolute;
        inset: 40px;
    }

    .shimmer::before {
        box-shadow: 0 0 3px 2px hsl(var(--shimmer-hue-1) 20% 95%),
            0 0 7px 4px hsl(var(--shimmer-hue-1) 20% 80%),
            0 0 13px 8px hsl(var(--shimmer-hue-2) 40% 60%),
            0 0 22px 6px hsl(var(--shimmer-hue-2) 20% 40%);
        z-index: -1;
    }

    .shimmer::after {
        box-shadow: inset 0 0 0 1px hsl(var(--shimmer-hue-2) 70% 95%),
            inset 0 0 3px 1px hsl(var(--shimmer-hue-2) 100% 80%),
            inset 0 0 9px 1px hsl(var(--shimmer-hue-2) 100% 70%);
        z-index: 2;
    }

    .glow-btn[disabled] {
        background: rgb(76 76 92);
        background-image: none;
    }

    .glow-btn:hover:not(:active):not([disabled]) {
        scale: 1.1;
        transition-duration: calc(var(--spring-duration)*0.5);
    }

    .glow-btn:active:not([disabled]) {
        scale: 1.05;
        transition-duration: calc(var(--spring-duration)*0.5);
    }

    .glow-btn:focus .shimmer,
    .glow-btn:active .shimmer {
        animation-play-state: paused !important;
        mask-image: none !important;
    }

    .glow-btn:hover:not([disabled]),
    .glow-btn:hover:not([disabled]) .shimmer::before,
    .glow-btn:hover:not([disabled]) .shimmer::after {
        opacity: 1;
    }


    .glow-btn .text {
        color: transparent;
        background-clip: text;
        background-color: #080808;
        background-image: linear-gradient(120deg, transparent, hsla(var(--shimmer-hue-1), 100%, 80%, 0.66) 40%, hsla(var(--shimmer-hue-2), 100%, 90%, .9) 50%, transparent 52%);
        background-repeat: no-repeat;
        background-size: 300% 300%;
        background-position: center 200%;
    }

    .glow-btn:not([disabled]):hover .text {
        animation: text .66s ease-in-out 1;
    }

    .glow-btn:not([disabled]) .shimmer::before,
    .glow-btn:not([disabled]) .shimmer::after {
        opacity: 1;
    }

    .glow-btn:not([disabled]) .shimmer {
        mask-image: conic-gradient(from var(--mask, 0deg),
                transparent 0%,
                transparent 10%,
                black 36%,
                black 45%,
                transparent 50%,
                transparent 60%,
                black 85%,
                black 95%,
                transparent 100%);
        mask-size: cover;
        animation: spin 3s linear infinite both -0.5s;
    }

    .glow-btn:not([disabled])[data-effect=wave] .shimmer {
        mask-image: linear-gradient(90deg, transparent 15%, black 45%, black 55%, transparent 85%);
        mask-size: 200% 200%;
        mask-position: center;
        animation: wipe 3s linear infinite both -0.5s;
    }
    .modal-content.inquiry-modal {
        max-width: 600px;
    }
    .inquiry-modal .modal-title{
        font-size: 32px;
    line-height: 45px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFFFFF;
    }
    .inquiry-modal .form-group input,
    .inquiry-modal .form-group textarea{
           color: #080808;
    /* background-color: #9c9c9c; */
    border: 0.0625rem solid #9c9c9c;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 0;
    padding: 10px 16px;
    font-family: Itcavantgardestd Md, sans-serif;
    font-size: 1rem;
    transition: all 0.4s;
    }
    .inquiry-modal .nav_link-c.contact{
        margin: 10px 0 0 auto;
            padding: 0.8rem 1.46rem 0.8rem;
    }
    .blog-sec{
        padding-bottom: 5rem;
    }

/* Extracted from new-blockchain.blade.php */
.tabs-nav label { display: flex; align-items: center; justify-content: space-between; }
.tabs-nav label img { margin-left: 10px; }

/* Extracted from new-blockchain.blade.php */
#clutch .swiper-slide {
    text-align: left !important;
    align-items: stretch !important;
}
#clutch .swiper-slide-top-block {
    text-align: left !important;
    align-items: flex-start !important;
}
#clutch .raiting-wrap {
    justify-content: flex-start !important;
    align-items: flex-end !important;
}
#clutch .heading-5.max-w-380 {
    text-align: left !important;
}
#clutch .rate {
    width: 7.29rem !important;
    max-width: 120px !important;
    height: auto !important;
    object-fit: contain;
}
#clutch .body-b2, #clutch .body-b4 {
    text-align: left !important;
}
#clutch .raiting-data {
    text-align: left !important;
}

/* Extracted from new-blockchain.blade.php */
#clutch .swiper-slide {
    text-align: left !important;
    align-items: stretch !important;
}
#clutch .swiper-slide-top-block {
    text-align: left !important;
    align-items: flex-start !important;
}
#clutch .raiting-wrap {
    justify-content: flex-start !important;
    align-items: flex-end !important;
}
#clutch .heading-5.max-w-380 {
    text-align: left !important;
}
#clutch .rate {
    width: 7.29rem !important;
    max-width: 120px !important;
    height: auto !important;
    object-fit: contain;
}
#clutch .body-b2, #clutch .body-b4 {
    text-align: left !important;
}
#clutch .raiting-data {
    text-align: left !important;
}

/* Extracted from new-metaverse.blade.php */
.case-heading.set-1 {
        text-align: center;
        /* max-width: 42.7rem; */
        font-size: 48px;
        line-height: 56px;
        letter-spacing: 0;
        color: #fe4a23;
    }

    .block-new-main .section-tittle,
    .hero-home-heading-wrap .section-tittle {
        font-size: 32px;
        line-height: 45px;
        margin-bottom: 60px;
        font-weight: 700;
    }

    .block-new-main .section-tittle span,
    .hero-home-heading-wrap .section-tittle span {
        color: #e25611;
    }

    .section-con {
        color: #737373;
        font-size: 15px;
        line-height: 140%;
        margin-bottom: 20px;
        text-align: justify;
    }

    .block-hero-main .hero-row {
        display: grid;
        grid-template-columns: 63% 1fr;
        gap: 40px;
        margin-bottom: 10px;
    }

    /* .section-con a{
        font-weight: 600;
    } */
    @media screen and (min-width: 1920px) {
        .container.serv {
            max-width: 100rem;
        }
    }

    /* .block-hero-main{
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
} */
    .block-hero-right iframe {
        width: 100%;
        height: 100%;
        max-height: 300px;
    }

    .block-new-main .section.hero.case {
        height: auto;
    }

    .inner-counter-sec {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1000px;
        margin: 0 auto;
    }

    .counter-box {
        padding: 20px;
        border: 1px solid #fe4a23;
        border-radius: 5px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        min-width: 180px;
        background: #fe4a23;
        box-shadow: rgb(254 74 35) 0px 8px 24px;
    }

    .counter-box .count-value {
        margin: 0 0 5px 0;
        font-size: 40px;
        line-height: 40px;
        color: #FFFFFF;
    }

    /* .counter-box p{
    margin: 0;
    font-size: 40px;
    line-height: 40px;
    } */
    .main-counter-sec {
        padding-top: 5rem;
    }

    .counter-box .section-con {
        margin: 0;
        color: #FFFFFF;
    }

    .section-con.heading-sub-para {
        font-size: 15px;
        text-align: center;
    }

    .main-services-sec .section-tittle {
        margin-bottom: 30px;
    }

    .card-title {
        /* color: #FFFFFF; */
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: bold;
        /* text-align: center; */
    }

    .service-card-sec .section-con {
        text-align: justify;
    }

    .cta-sec .cta-title {
        color: #080808;
        font-size: 26px;
        margin-bottom: 20px;
        line-height: 30px;
        font-weight: 600;
    }

    .cta-sec .cta-sub-title {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .case-study-sec,
    .expert-sec,
    .pt-5rem {
        padding-top: 5rem;
    }


    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #444;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .case-study-slider-sec {
        overflow: hidden;
        position: relative;
    }

    h3 {
        font-size: 20px !important;
        font-weight: bold !important;
    }

    .swiper-slide .swiper-flex {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .slide-left h3 {
        margin-bottom: 20px;
        text-align: left;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;
    }

    .swiper-button-prev img {
        transform: rotate(180deg);
    }

    .swiper-button-prev img,
    .swiper-button-next img {
        filter: brightness(0) saturate(100%) invert(40%) sepia(45%) saturate(2332%) hue-rotate(354deg) brightness(90%) contrast(96%);
    }

    .swiper-button-next {
        right: -7px;
    }

    .swiper-button-prev {
        left: -7px;
    }

    .exper-main-sec .expert-img {
        width: 251px;
        height: 251px;
        object-fit: contain;
        border: 1px solid #fe4a2352;
        border-radius: 5px;
    }

    .main-btn {
        color: #fff;
        background-color: #fe4a23;
        justify-content: center;
        align-items: center;
        display: flex;
        position: relative;
        overflow: hidden;
        border-radius: 0.56rem;
        max-width: max-content;
        padding: 16px 26px;
        font-size: 18px;
    }

    .expert-sec .exper-main-sec {
        display: flex;
        align-items: center;
        gap: 40px;
        background-color: #fe4a2312;
        padding: 30px;
        border-radius: 30px;
    }

    .expert-con-sec h2 {
        font-size: 26px;
        line-height: 30px;
        font-weight: bold;
        margin-bottom: 20px;
    }
.expert-con-sec h2 span{
    color: #fe4a23;
}
    .section-con.quete-text {
        color: var(--dark-black-900);
        font-size: 20px;
        font-style: italic;
    }

    .why-choose-card .service-card-sec {
        padding: 30px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        /* text-align: center; */
            border: 1px solid #fe4a232b;
    }

    .why-choose-card {
        padding-bottom: 5rem;
        margin-top: 50px;
    }

    .service-sec .why-choose-card {
        gap: 50px;
    }

    .client-inner-sec .client-logo-sec {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .client-logo-sec .client-img {
        width: 100%;
        height: 100%;
        /* max-width: 190px; */
        max-width: 200px;
        max-height: 200px;
        object-fit: contain;
    }

    .technology-stack-sec .client-logo-sec .client-img {
        max-width: 80px;
        max-height: 80px;
    }

    .process-sec .why-choose-card {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-sec .why-choose-card .service-card-sec {
        max-width: 430px;
    }

    .accordion {
        max-width: 80%;
        margin: 0 auto;
        background: white;
    }

    .accordion-item {
        border: 2px solid #333;
        margin-bottom: 20px;
        background: white;
    }

    /* .accordion-item:first-child {
        border-radius: 8px 8px 0 0;
    } */

    .accordion-item:last-child {
        margin-bottom: 0;
    }

    .accordion-item:only-child {
        border-radius: 8px;
    }

    /* Hide the radio buttons */
    .accordion-radio {
        display: none;
    }

    /* Style the label (header) */
    .accordion-header {
        display: block;
        padding: 15px 20px;
        background: white;
        cursor: pointer;
        font-weight: normal;
        color: #333;
        position: relative;
        border: none;
        width: 100%;
        font-size: 20px;
        font-weight: bold;
        line-height: 28px;
    }

    .accordion-header:hover {
        background-color: #f8f8f8;
    }

    /* Style the toggle icon - default closed */
    .accordion-header::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        font-weight: bold;
        color: #333;
        transition: transform 0.3s ease;
    }

    /* Change icon when expanded */
    .accordion-radio:checked+.accordion-header::after {
        content: '−';
    }

    /* Style the content - default closed */
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: white;
    }

    .accordion-content-inner {
        padding: 20px;
        color: #737373;
        font-size: 15px;
        line-height: 140%;
        text-align: justify;
    }

    /* Show content when radio button is checked */
    .accordion-radio:checked~.accordion-content {
        max-height: 300px;
        /* Adjust based on your content */
    }

    .faq-sec,
    .service-wrapper {
        padding-bottom: 5rem;
    }

    .hero-home-heading-wrap,
    .block-new-main .section-tittle,
    .hero-home-heading-wrap .section-tittle,
    .hero-heading .hero-home-heading-wrap {
        max-width: 100%;
    }

    h3 {
        color: #9a41ab !important;
    }

    .tabs-wrapper {
        display: flex;
        margin-top: 40px;
        border: 1px solid #f8f9fa;
        border-radius: 10px;
    }

    .tabs-nav {
        flex: 0 0 280px;
        background: #f8f9fa;
        padding: 0px 0;
    }

    .tabs-nav label {
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 13px 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #495057;
        font-weight: 500;
        position: relative;
        font-size: 15px;
    }

    .tabs-nav label:hover {
        background: #e9ecef;
        color: #667eea;
    }

    /* .tabs-nav label::before {
            content: attr(data-number);
            display: inline-block;
            width: 30px;
            height: 30px;
            background: #dee2e6;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 12px;
            font-size: 14px;
            transition: all 0.3s ease;
        } */

    input[type="radio"] {
        display: none;
    }

    input[type="radio"]:checked+label {
        background: white;
        color: #667eea;
        border-left-color: #667eea;
        font-weight: 600;
    }

    input[type="radio"]:checked+label::before {
        background: #667eea;
        color: white;
    }

    .tabs-content {
        flex: 1;
        padding: 20px 40px;
        align-items: center;
        display: flex;
    }

    .tab-panel {
        display: none;
        animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #tab1:checked~.tabs-content #content1,
    #tab2:checked~.tabs-content #content2,
    #tab3:checked~.tabs-content #content3,
    #tab4:checked~.tabs-content #content4,
    #tab5:checked~.tabs-content #content5 {
        display: block;
    }

    .tab-panel h3 {
        font-size: 28px;
        color: #212529;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

    /* .tab-panel h3::before {
        content: '◆';
        color: #667eea;
        margin-right: 12px;
        font-size: 20px;
    } */

    .tab-panel p {
        font-size: 16px;
        line-height: 1.8;
        color: #495057;
    }





    .tab-panel {
        display: none;
    }

    .tab-panel.active {
        display: block;
    }

    .tabs-nav label.active {
        color: #774dff;
        /* font-weight: 600; */
    }

    .tabs-nav label.active .tab-icon {
        filter: brightness(0) saturate(100%) invert(37%) sepia(45%) saturate(6090%) hue-rotate(240deg) brightness(99%) contrast(105%);
    }

    .tab-panel.active {
        color: #212529;
    }

    img.tab-icon {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    @media screen and (max-width: 1600px) {
        .process-sec .why-choose-card .service-card-sec {
            max-width: 390px;
        }
    }

    @media screen and (max-width: 1480px) {
        .process-sec .why-choose-card .service-card-sec {
            max-width: 340px;
        }
    }

    @media screen and (max-width: 1280px) {
        .expert-con-sec h2 {
            font-size: 22px;
        }
    }

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

        .block-new-main .section-tittle,
        .hero-home-heading-wrap .section-tittle {
            font-size: 26px;
            line-height: 40px;
        }

        .client-logo-sec .client-img {
            max-width: 160px;
            max-height: 160px;
        }

        .process-sec .why-choose-card .service-card-sec {
            max-width: 270px;
        }

        h3 {
            font-size: 17px !important;
        }

        .block-hero-right iframe {
            max-height: 300px;
        }

        .block-hero-main .hero-row {
            grid-template-columns: 50% 1fr;
            gap: 20px;
        }

        .main-counter-sec .w-layout-grid.grid-3.service-grid-3 {
            grid-column-gap: 26px;
            grid-row-gap: 26px;
        }
    }

    @media screen and (max-width: 1024px) {
        .slide-right iframe {
            max-width: 410px;
            max-height: 250px;
        }

        .exper-main-sec .expert-img {
            max-width: 400px;
        }
        .technology-stack-sec .client-logo-sec .client-img {
    max-width: 70px;
    max-height: 70px;
}
.service-card-sec .card-img {
    width: 60px;
    height: 60px;
}
    }

    @media screen and (max-width: 991px) {
        .hero-home-heading-wrap {
            max-width: 100% !important;
        }

        .block-hero-main .hero-row {
            grid-template-columns: 1fr;
        }

        .block-hero-right iframe {
            height: 300px;
            margin-bottom: 10px;
        }

        .counter-box {
            min-width: 150px;
        }

        .counter-box h6 {
            font-size: 36px;
            line-height: 40px;
        }

        .swiper-slide .swiper-flex {
            flex-direction: column-reverse;
        }

        .expert-sec .exper-main-sec {
            flex-direction: column;
        }

        .exper-main-sec .expert-img {
            max-width: 100%;
        }

        .client-logo-sec .client-img {
            max-width: 120px;
            max-height: 120px;
        }

        .technology-stack-sec .client-logo-sec .client-img {
            max-width: 80px;
            max-height: 80px;
        }

        .accordion-header {
            font-size: 17px;
        }

        .service-sec .why-choose-card {
            gap: 30px;
        }

        .why-choose-card .service-card-sec {
            padding: 20px;
        }

        .block-new-main .section-tittle,
        .hero-home-heading-wrap .section-tittle {
            font-size: 23px;
            line-height: 37px;
        }
        .block-new-main .section-tittle, .hero-home-heading-wrap .section-tittle {
    margin-bottom: 40px;
}
.process-sec .why-choose-card .service-card-sec {
        max-width: 48%;
    }
    .tabs-nav {
    flex: 0 0 250px;
}
    }

    @media screen and (max-width: 767px) {
        .counter-box {
            min-width: 100%;
            border-radius: 0;
        }

        .inner-counter-sec {
            flex-wrap: wrap
        }

        .main-counter-sec {
            padding-top: 0;
        }

        .cta-sec {
            padding: 0 20px;
        }

        .cta-sec .cta-title {
            font-size: 22px;
        }

        .slide-right iframe {
            width: 100%;
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 30px;
            height: 30px;
        }

        .slide-left h3 {
            color: #ffffff;
        }

        .expert-sec {
            padding: 0 20px;
        }

        .exper-main-sec .main-btn {
            padding: 16px 25px;
            font-size: 16px;
            width: 100%;
        }

        .exper-main-sec {
            margin-bottom: 20px;
        }

        .exper-main-sec .expert-img {
            height: auto;
        }
         .tabs-wrapper {
            flex-direction: column;
        }

        .tabs-nav {
            flex: none;
            border-right: none;
            border-bottom: 1px solid #e0e0e0;
            padding: 20px 0;
        }

        .tabs-nav label {
            padding: 12px 20px;
            font-size: 14px;
        }

        .tabs-content {
            padding: 30px 20px;
        }

        .tab-panel h3 {
            font-size: 22px;
        }
        .process-sec .why-choose-card .service-card-sec {
        max-width: 100%;
    }
        .section.hero.case, .section.hero.case_2 {
        padding-top: 10rem;
    }
    .block-new-main .section.hero.case{
        padding-top: 9rem;
    }
    .block-hero-right iframe {
        height: 197px;
    }
        .slide-right iframe {
        max-height: 168px;
    }
        .service-sec .why-choose-card {
           grid-template-columns: 1fr;
    }
        .technology-stack-sec .client-logo-sec .client-img {
        max-width: 40px;
        max-height: 40px;
    }
        .client-logo-sec .client-img {
        max-width: 70px;
        max-height: 70px;
    }
    .client-inner-sec .client-logo-sec {
    margin-bottom: 40px;
}
.modal-content.inquiry-modal {
    max-width: 100%;
    width: 90%;
}
    }


    .service-card-sec .card-img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .main-counter-sec .tabs-wrapper {
        margin-bottom: 50px;
    }

    :root {
        --shimmer-hue-1: 213deg;
        --shimmer-sat-1: 95%;
        --shimmer-lit-1: 91%;
        --shimmer-hue-2: 248deg;
        --shimmer-sat-2: 100%;
        --shimmer-lit-2: 86%;
        --shimmer-hue-3: 293deg;
        --shimmer-sat-3: 78%;
        --shimmer-lit-3: 89%;

        --glow-hue: 222deg;
        --shadow-hue: 180deg;
        --spring-easing: linear(0, 0.002, 0.01 0.9%, 0.038 1.8%, 0.156, 0.312 5.8%, 0.789 11.1%, 1.015 14.2%,
                1.096, 1.157, 1.199, 1.224 20.3%, 1.231, 1.231, 1.226, 1.214 24.6%,
                1.176 26.9%, 1.057 32.6%, 1.007 35.5%, 0.984, 0.968, 0.956, 0.949 42%,
                0.946 44.1%, 0.95 46.5%, 0.998 57.2%, 1.007, 1.011 63.3%, 1.012 68.3%,
                0.998 84%, 1);
        --spring-duration: 1.33s;
    }

    @property --mask {
        syntax: "<angle>";
        inherits: false;
        initial-value: 33deg;
    }

    @keyframes spin {
        0% {
            --mask: 0deg;
        }

        100% {
            --mask: 360deg;
        }
    }

    @keyframes wipe {
        0% {
            mask-position: 200% center;
        }

        100% {
            mask-position: 0% center;
        }
    }

    @keyframes pulse {

        0%,
        90%,
        100% {
            opacity: 0;
        }

        20% {
            opacity: 1;
        }
    }

    @keyframes pulse2 {
        0% {
            opacity: 0;
        }

        8% {
            opacity: 1;
        }

        14% {
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes flicker {
        0% {
            opacity: 0.1;
            mask-image: none;
        }

        1% {
            opacity: 1;
        }

        2% {
            opacity: 0.5;
        }

        3% {
            opacity: 0.1;
        }

        4% {
            opacity: 0.7;
        }

        5% {
            opacity: 1;
        }

        7% {
            opacity: 0.7;
            mask-image: linear-gradient(90deg, transparent 15%, black 45%, black 55%, transparent 85%);
        }

        8% {
            opacity: 0.1;
        }

        10% {
            opacity: 0.4;
        }

        13% {
            opacity: 1;
        }

        15% {
            opacity: 0.1;
            mask-image: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 25%, transparent 45%, black 65%, black 90%, transparent 100%);
        }

        17% {
            opacity: 0.8;
        }

        19% {
            opacity: 0.3;
        }

        21.5% {
            opacity: 0;
        }

        23% {
            opacity: 1;
        }

        39% {
            opacity: 0.7;
        }

        45% {
            opacity: 0.2;
        }

        49% {
            opacity: 0.9;
        }

        52% {
            opacity: 0.7;
        }

        53.5% {
            opacity: 0.2;
            mask-image: linear-gradient(90deg, black 15%, black 45%, rgba(0, 0, 0, 0.4) 75%, transparent 85%);
        }

        57% {
            opacity: 0.8;
        }

        63% {
            opacity: 1;
        }

        75% {
            opacity: .85;
        }

        77% {
            opacity: 1;
        }

        80% {
            opacity: .9;
        }

        82% {
            opacity: .95;
        }

        83% {
            opacity: .85;
        }

        86% {
            opacity: 1;
        }

        89% {
            opacity: .85;
        }

        91% {
            opacity: 1;
        }

        92% {
            opacity: .9;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes shine {
        0% {
            opacity: 0;
        }

        15% {
            opacity: 1;
        }

        55% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes text {
        0% {
            background-position: 100% center;
        }

        100% {
            background-position: -100% center;
        }
    }

    .dark .glow-btn {
        color: var(--bg);
        font-weight: 600;
        font-size: 1.2em;
        background-image: linear-gradient(315deg,
                hsl(var(--shimmer-hue-1), var(--shimmer-sat-1), var(--shimmer-lit-1)) 0.00%,
                hsl(var(--shimmer-hue-2), var(--shimmer-sat-2), var(--shimmer-lit-2)) 47%,
                hsl(var(--shimmer-hue-3), var(--shimmer-sat-3), var(--shimmer-lit-3)) 100.00%);
        padding: .8em 1.4em;
        position: relative;
        isolation: isolate;
        box-shadow: 0 2px 3px 1px hsl(var(--glow-hue) 50% 20% / 50%);
        border: none;
        outline: none;
        border-radius: 0.66em;
        scale: 1;
        transition: all var(--spring-duration) var(--spring-easing);
        text-transform: unset;
    }

    .shimmer {
        position: absolute;
        inset: -40px;
        border-radius: inherit;
        mix-blend-mode: color-dodge;
        mix-blend-mode: plus-lighter;
        pointer-events: none;
    }

    .shimmer::before,
    .shimmer::after {
        transition: all 0.5s ease;
        opacity: 0;
        content: "";
        border-radius: inherit;
        position: absolute;
        inset: 40px;
    }

    .shimmer::before {
        box-shadow: 0 0 3px 2px hsl(var(--shimmer-hue-1) 20% 95%),
            0 0 7px 4px hsl(var(--shimmer-hue-1) 20% 80%),
            0 0 13px 8px hsl(var(--shimmer-hue-2) 40% 60%),
            0 0 22px 6px hsl(var(--shimmer-hue-2) 20% 40%);
        z-index: -1;
    }

    .shimmer::after {
        box-shadow: inset 0 0 0 1px hsl(var(--shimmer-hue-2) 70% 95%),
            inset 0 0 3px 1px hsl(var(--shimmer-hue-2) 100% 80%),
            inset 0 0 9px 1px hsl(var(--shimmer-hue-2) 100% 70%);
        z-index: 2;
    }

    .glow-btn[disabled] {
        background: rgb(76 76 92);
        background-image: none;
    }

    .glow-btn:hover:not(:active):not([disabled]) {
        scale: 1.1;
        transition-duration: calc(var(--spring-duration)*0.5);
    }

    .glow-btn:active:not([disabled]) {
        scale: 1.05;
        transition-duration: calc(var(--spring-duration)*0.5);
    }

    .glow-btn:focus .shimmer,
    .glow-btn:active .shimmer {
        animation-play-state: paused !important;
        mask-image: none !important;
    }

    .glow-btn:hover:not([disabled]),
    .glow-btn:hover:not([disabled]) .shimmer::before,
    .glow-btn:hover:not([disabled]) .shimmer::after {
        opacity: 1;
    }


    .glow-btn .text {
        color: transparent;
        background-clip: text;
        background-color: #080808;
        background-image: linear-gradient(120deg, transparent, hsla(var(--shimmer-hue-1), 100%, 80%, 0.66) 40%, hsla(var(--shimmer-hue-2), 100%, 90%, .9) 50%, transparent 52%);
        background-repeat: no-repeat;
        background-size: 300% 300%;
        background-position: center 200%;
    }

    .glow-btn:not([disabled]):hover .text {
        animation: text .66s ease-in-out 1;
    }

    .glow-btn:not([disabled]) .shimmer::before,
    .glow-btn:not([disabled]) .shimmer::after {
        opacity: 1;
    }

    .glow-btn:not([disabled]) .shimmer {
        mask-image: conic-gradient(from var(--mask, 0deg),
                transparent 0%,
                transparent 10%,
                black 36%,
                black 45%,
                transparent 50%,
                transparent 60%,
                black 85%,
                black 95%,
                transparent 100%);
        mask-size: cover;
        animation: spin 3s linear infinite both -0.5s;
    }

    .glow-btn:not([disabled])[data-effect=wave] .shimmer {
        mask-image: linear-gradient(90deg, transparent 15%, black 45%, black 55%, transparent 85%);
        mask-size: 200% 200%;
        mask-position: center;
        animation: wipe 3s linear infinite both -0.5s;
    }
    .modal-content.inquiry-modal {
        max-width: 600px;
    }
    .inquiry-modal .modal-title{
        font-size: 32px;
    line-height: 45px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFFFFF;
    }
    .inquiry-modal .form-group input,
    .inquiry-modal .form-group textarea{
           color: #080808;
    /* background-color: #9c9c9c; */
    border: 0.0625rem solid #9c9c9c;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 0;
    padding: 10px 16px;
    font-family: Itcavantgardestd Md, sans-serif;
    font-size: 1rem;
    transition: all 0.4s;
    }
    .inquiry-modal .nav_link-c.contact{
        margin: 10px 0 0 auto;
            padding: 0.8rem 1.46rem 0.8rem;
    }
    .blog-sec{
        padding-bottom: 5rem;
    }

/* Extracted from nft-marketplace.blade.php */
.sub-service-page .section-tittle {
        max-width: 100%;
        margin-bottom: 26px
    }

    .sub-service-page .counter-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        list-style-type: none;
        gap: 16px;
        margin: 46px auto 56px auto;
    }

    .sub-service-page .counter-list .counter-listitem {
        position: relative;
        text-align: center;
        color: #fff;
        background: #141414;
        border-radius: 6px;
        padding: 8px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        overflow: hidden;
        will-change: transform, opacity;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Animated Gradient Border */
    .sub-service-page .counter-list .counter-listitem::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 6px;
        padding: 2px;
        background: linear-gradient(45deg, #f3ec78, #af4261, #00dbde, #fc00ff, #f3ec78);
        background-size: 300% 300%;
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: 0;
        animation: gradientFlow 8s linear infinite;
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    .sub-service-page .counter-list .counter-listitem .counter-number {
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        display: inline-block;
        transition: transform 0.3s ease-out;
        margin-bottom: 15px;
        margin-top: 5px;
    }

    .sub-service-page .counter-list .counter-listitem .counter-title {
        font-size: 16px;
        line-height: normal;
        letter-spacing: 1.5px;
    }

    .sub-service-page.bold-text-28 {
        letter-spacing: 1.5px;
    }

    .sub-service-page .text-block-5 {
        font-size: 14px;
    }

    .sub-service-page .solution-card-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        height: 16rem;
    }

    /* Bell Design */

    .experience-cont-box .ico:before,
    .experience-cont-box .ico svg {
        border-radius: 50%;
        transform-origin: 50% 0;
        transform: rotate(-8deg);
        animation: osc 0.3s ease-in-out infinite alternate;
    }

    @keyframes osc {
        to {
            transform: rotate(8deg);
        }
    }

    .experience-cont-box {
        --narr: 1;
        --notnarr: calc(1 - var(--narr));
        --wide: 0;
        --notwide: calc(1 - var(--wide));
        --nor: calc(var(--notnarr)*var(--notwide));
        --or: calc(1 - var(--nor));
        --sum: calc(1 + var(--narr));
        /* display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap; */
        overflow-x: hidden;
        min-height: 100vh;
        /* background: linear-gradient(to right top, #ebedec, #e3e7e6, #dbe1e0, #d3dadb, #ccd4d6); */
    }

    .experience-cont-box:before {
        --uw: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em);
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        height: calc(var(--sum)*2*var(--uw));
        transform: translate(calc(var(--sum)*50%/var(--n)), -50%);
        background: radial-gradient(circle at calc(50% - 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at calc(50% + 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at 50% 39%, #fff calc(0.625em - 1px), rgba(255, 255, 255, 0) 0.625em);
        background-size: calc(50%/(2 - var(--narr))) calc(100%/(1 + var(--narr)));
        clip-path: inset(0 calc(var(--sum)*25%) 0 0);
        filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.2));
        content: "";
    }

    @media (max-width: 480px) {
        .experience-cont-box:before {
            display: none;
        }
    }

    @media (min-width: 38em) {
        .experience-cont-box {
            --narr: 0;
        }
    }

    @media (min-width: 58em) {
        .experience-cont-box {
            --wide: 1;
        }
    }

    .experience-cont-box .hid {
        position: absolute;
        clip-path: inset(50%);
    }

    .experience-cont-box path {
        --s: 2;
        fill: none;
        stroke: currentcolor;
        stroke-width: var(--s);
        stroke-linecap: round;
    }

    .experience-cont-box path.d {
        stroke-dasharray: 0 calc(2*var(--s));
    }

    .experience-cont-box path.t {
        --s: 4;
    }

    .experience-cont-box .experience-detail {
        display: flex;
        flex-direction: column;
        padding: 1em 1em;
        /* min-width: 7.5em; */
        /* width: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em); */
        /* min-width: 12.5em;
        max-width: 12.5em; */
        width: 100%;
        text-align: center;
        text-transform: uppercase;
    }

    .experience-cont-box h3,.experience-cont-box a {
        color: var(--c0);
    }

    .experience-cont-box h3 {
        padding: 1em 0 0.5em;
        font-size: calc(var(--nor)*2vw + var(--or)*1.16em);
        text-transform: none;
        font-weight: bold;
        letter-spacing: 1.5px;
    }

    .experience-cont-box p {
        /* height: 3em; */
        font-size: 12px;
        line-height: normal;
        text-transform: none;
        color: #7f7f7f;
        letter-spacing: 0.5px;
    }

    .experience-cont-box .ico {
        order: -1;
        position: relative;
        margin-bottom: calc(10% + 2.875em + 2px);
        border-radius: 50%;
        box-shadow: inset 0 0 0 0.325em #fff, 11px 11px 12px -9px rgba(27, 14, 0, 0.28);
        background: linear-gradient(135deg, var(--c0), var(--c1)) padding-box;
        height: 120px;
        width: 120px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-cont-box .ico a {
        --sgn: 1;
        box-sizing: border-box;
        display: grid;
        place-content: center;
        padding: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        clip-path: circle(calc(50% - 0.625em));
    }

    .experience-cont-box .ico a:hover {
        --sgn: -1;
    }

    .experience-cont-box .ico svg {
        /* --w: calc(100% - 4em); */
        --w: 66px;
        box-sizing: border-box;
        position: absolute;
        margin: calc(-.5*var(--w));
        border: solid 1em transparent;
        width: var(--w);
        height: var(--w);
        border-radius: 50%;
        box-shadow: calc(var(--sgn)*36px) 27px 11px -5px rgba(27, 14, 0, 0.16);
        background: linear-gradient(135deg, #fff, #d2d2d2) border-box;
        transition: 0.3s ease-out;
    }

    .experience-cont-box .ico:before,
    .ico:after {
        position: absolute;
        content: "";
    }

    .experience-cont-box .ico:before {
        box-sizing: border-box;
        top: calc(135% + 1px);
        /* left: calc(50% - 1.4375em); */
        left: calc(50% - 12px);
        border: solid 0.625em transparent;
        width: 1.875em;
        height: 1.875em;
        box-shadow: 0 0 0 2px #fff;
        background: inherit;
        filter: drop-shadow(1px 3px 2px rgba(0, 0, 0, 0.32));
    }

    .experience-cont-box .ico:after {
        width: 0.375em;
        top: calc(100% - 0.5em);
        left: calc(50% - 0.5em);
        border: solid 0 transparent;
        border-width: 0.5em 0.3125em;
        padding-top: 35%;
        background: linear-gradient(#fff, #fff) padding-box, radial-gradient(circle at 50% 0.5em, #fff calc(0.5em - 1px), rgba(255, 255, 255, 0) 0.5em) border-box, radial-gradient(circle at 50% calc(100% - 0.5em), #fff calc(0.375em - 1px), rgba(255, 255, 255, 0) 0.375em) border-box;
    }

    .experience-grid-box {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }

    /* End Bell Design */
    .sub-service-page .icons_block {
        padding-top: 0px;
    }

    .sub-service-page .experience-cont-box .icons_block .heading-18 {
        margin-bottom: 16px;
        text-align: center;
        font-size: 36px;
    }

    .defi-services .icons_block .heading-18 {
        font-size: 50px;
        margin-bottom:46px;
    }

    .benefits-flexbox {
        display: flex;
        /* flex-direction: row; */
        justify-content: space-around;
        width: 100%;
        flex-wrap: wrap;
        gap:26px;
        row-gap: 36px;
    }

    .benefits-flexcard {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 20%;
        align-items: baseline;
        height: max-content;
        border-radius: 20px;
    }

    .benefits-flexcardNumber {
        width: 70%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        margin: 10px 0px;
        border-radius: 0px 50px 50px 0px;
        color: white;
        text-shadow: 0px 3px 5px black;
        font-weight: 500;
        font-size: 20px;
        position: relative;
    }

    .benefits-flexcardTitle {
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 600;
        line-height: normal;
        min-height: 66px;
    }

    .benefits-flexcardText {
        text-align: center;
        font-weight: 300;
        margin-bottom: 16px;
        min-height: 136px;
    }

    .benefits-flexcardNumber:before {
        content: '';
        width: 34px;
        height: 90px;
        position: absolute;
        left: -33px;
        top: 0px;
        border-radius: 50px 0px 0px 50px;
        /* z-index: -1; */
        /* background: #95B7A2; */
        /* background: -webkit-linear-gradient(bottom, #95B7A2, #AED2BC); */
        background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
        /* background: linear-gradient(to top, #95B7A2, #AED2BC); */
        ;
    }

    .benefits-flexcardNumber:after {
        content: '';
        width: 25px;
        height: 40px;
        position: absolute;
        left: -25px;
        bottom: -40px;
        border-radius: 50px 0px 0px 50px;
        z-index: -1;
    }

    .benefits-flex {
        display: flex;
        justify-content: center;
        align-items:center;
        width: 100%;
        margin: 0px auto;
        padding: 8px;
        text-transform: none;
        text-align: center;
    }

    /* GREEN CARD */

    .benefits-flexcardGreen {
        background: #f9fbfa;
        box-shadow: 4px 4px 4px #AED2BC;
    }

    .benefits-flexcardNumberGreen {
        background: #FCFCFC;
        background: -webkit-linear-gradient(right, #FCFCFC, #AED2BC);
        background: -moz-linear-gradient(right, #FCFCFC, #AED2BC);
        background: linear-gradient(to left, #FCFCFC, #AED2BC);
        box-shadow: 0px 2px 2px #AED2BC;
    }

    .benefits-flexcardNumberGreen:before {
        background: #AED2BC;
    }

    .benefits-flexcardNumberGreen:after {
        background: #95b7a2;
    }

    /* BLUE CARD */

    .benefits-flexcardBlue {
        background: #f7ffff;
        box-shadow: 4px 8px 1px #92E8EB;
    }

    .flexcardNumberBlue {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #92E8EB);
        background: -moz-linear-gradient(right, #FDFFFE, #92E8EB);
        background: linear-gradient(to left, #FDFFFE, #92E8EB);
        box-shadow: 0px 2px 2px #92E8EB;
    }

    .flexcardNumberBlue:before {
        background: #92E8EB;
    }

    .flexcardNumberBlue:after {
        background: #71bdbf;
    }

    /* ORANGE CARD */

    .benefits-flexcardOrange {
        background: #fdf8f3;
        box-shadow: 4px 8px 1px #F68404;
    }

    .flexcardNumberOrange {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #F68404);
        background: -moz-linear-gradient(right, #FDFFFE, #F68404);
        background: linear-gradient(to left, #FDFFFE, #F68404);
        box-shadow: 0px 2px 2px #F68404;
    }

    .flexcardNumberOrange:before {
        background: #F68404;
    }

    .flexcardNumberOrange:after {
        background: #d06f02;
    }

    /* PİNK CARD */

    .benefits-flexcardPink {
        background: #fffafd;
        box-shadow: 4px 8px 1px #F34EAE;
    }

    .flexcardNumberPink:before {
  background: #F34EAE;
}

.flexcardNumberPink:after {
  background: #d24095;
}

    .flexcardNumberPink {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #F34EAE);
        background: -moz-linear-gradient(right, #FDFFFE, #F34EAE);
        background: linear-gradient(to left, #FDFFFE, #F34EAE);
        box-shadow: 0px 2px 2px #F34EAE;
    }

    /* RESPONSİVE */

    @media only screen and (max-width: 800px) {
        .benefits-flexcard {
            width: 35%;
            margin-top: 20px;
        }
    }

    @media only screen and (max-width: 500px) {
        .benefits-flexcard {
            width: 70%;
        }
    }
    .sub-service-page .blockchain-marquee{
        height: 100vh;
    }
    .service-grid-cont{
        display: grid;
        grid-template-columns: 15% 85%;
    }
    .service-icon-box{
        height: 100px;
        width: 100px;
        border-radius:10px;
        border: 4px solid #d9d9d9;
    }
    .service-icon-box img{
        height: 100%;
        width: 100%;
        object-fit: contain;
        border-radius: 10px;
    }
    .sub-service-page .div-block-271 {
        width: 100%;
        max-width: 100%;
        padding: 8px;
        margin-top:0px;
    }
    .sub-service-page .text-block-40 {
        color: #1d1d1f;
        font-size: 16px;
        line-height: 24px;
    }

/* Extracted from our-partnersIframe.blade.php */
.icon-left-0 {
            offset-path: path("M2.92676 772.512C2.92676 772.512 297.701 524.512 797.927 524.512"
                );
            transform-origin: 50% 50%;
            offset-rotate: 0deg;
            animation: animation-0 var(--animation-total-time, 8s) ease-in-out infinite;
            animation-delay: var(--animation-delay, 0s);
        }

        @keyframes animation-0 {
            0% {
                offset-distance: 0;
                transform: translate(70px, 38px) scale(0.1);
            }

            20% {
                opacity: 0;
            }

            25% {
                opacity: 1;
            }

            50% {
                transform: translate(755px, 360px) scale(1);
            }

            to {
                offset-distance: 100%;
                transform: translate(145px, 70px) scale(0.2);
                opacity: 1;
            }
        }

        .icon-left-1 {
            offset-path: path("M1.57324 147.512C1.57324 147.512 296.348 493.512 796.573 493.512"
                );
            transform-origin: 50% 50%;
            offset-rotate: 0deg;
            animation: animation-1 var(--animation-total-time, 8s) ease-in-out infinite;
            animation-delay: var(--animation-delay, 0s);
        }

        @keyframes animation-1 {
            0% {
                offset-distance: 0;
                transform: translate(75px, 35px) scale(0.1);
            }

            20% {
                opacity: 0;
            }

            25% {
                opacity: 1;
            }

            50% {
                transform: translate(750px, 345px) scale(1);
            }

            to {
                offset-distance: 100%;
                transform: translate(150px, 70px) scale(0.2);
                opacity: 1;
            }
        }

        .icon-left-2 {
            offset-path: path("M2.92676 660.512C2.92676 660.512 297.701 519.512 797.927 519.512"
                );
            transform-origin: 50% 50%;
            offset-rotate: 0deg;
            animation: animation-2 var(--animation-total-time, 8s) ease-in-out infinite;
            animation-delay: var(--animation-delay, 0s);
        }

        @keyframes animation-2 {
            0% {
                offset-distance: 0;
                transform: translate(75px, 35px) scale(0.1);
            }

            20% {
                opacity: 0;
            }

            25% {
                opacity: 1;
            }

            50% {
                transform: translate(755px, 345px) scale(1);
            }

            to {
                offset-distance: 100%;
                transform: translate(150px, 70px) scale(0.2);
                opacity: 1;
            }
        }

        .icon-left-3 {
            offset-path: path("M2.92676 360.512C2.92676 360.512 297.701 501.512 797.927 501.512"
                );
            transform-origin: 50% 50%;
            offset-rotate: 0deg;
            animation: animation-3 var(--animation-total-time, 8s) ease-in-out infinite;
            animation-delay: var(--animation-delay, 0s);
        }

        @keyframes animation-3 {
            0% {
                offset-distance: 0;
                transform: translate(75px, 35px) scale(0.1);
            }

            20% {
                opacity: 0;
            }

            25% {
                opacity: 1;
            }

            50% {
                transform: translate(745px, 340px) scale(1);
            }

            to {
                offset-distance: 100%;
                transform: translate(140px, 68px) scale(0.2);
                opacity: 1;
            }
        }

        .icon-right-0 {
            offset-path: path("M1591.07 360.512C1591.07 360.512 1296.3 501.512 796.073 501.512"
                );
            transform-origin: 50% 50%;
            offset-rotate: 0deg;
            animation: animation-4 var(--animation-total-time, 8s) ease-in-out infinite;
            animation-delay: var(--animation-delay, 0s);
        }

        @keyframes animation-4 {
            0% {
                offset-distance: 100%;
                transform: translate(140px, 70px) scale(0.2);
                opacity: 1;
            }

            50% {
                transform: translate(760px, 345px) scale(1);
            }

            80% {
                opacity: 1;
            }

            85% {
                opacity: 0;
            }

            to {
                offset-distance: 0;
                transform: translate(90px, 33px) scale(0.1);
            }
        }

        .icon-right-1 {
            offset-path: path("M1591.07 660.512C1591.07 660.512 1296.3 519.512 796.073 519.512"
                );
            transform-origin: 50% 50%;
            offset-rotate: 0deg;
            animation: animation-5 var(--animation-total-time, 8s) ease-in-out infinite;
            animation-delay: var(--animation-delay, 0s);
        }

        @keyframes animation-5 {
            0% {
                offset-distance: 100%;
                transform: translate(155px, 70px) scale(0.2);
                opacity: 1;
            }

            50% {
                transform: translate(760px, 348px) scale(1);
            }

            80% {
                opacity: 1;
            }

            85% {
                opacity: 0;
            }

            to {
                offset-distance: 0;
                transform: translate(95px, 35px) scale(0.1);
            }
        }

        .icon-right-2 {
            offset-path: path("M1591.07 147.512C1591.07 147.512 1296.3 493.512 796.073 493.512"
                );
            transform-origin: 50% 50%;
            offset-rotate: 0deg;
            animation: animation-6 var(--animation-total-time, 8s) ease-in-out infinite;
            animation-delay: var(--animation-delay, 0s);
        }

        @keyframes animation-6 {
            0% {
                offset-distance: 100%;
                transform: translate(155px, 70px) scale(0.2);
                opacity: 1;
            }

            50% {
                transform: translate(765px, 345px) scale(1);
            }

            80% {
                opacity: 1;
            }

            85% {
                opacity: 0;
            }

            to {
                offset-distance: 0;
                transform: translate(80px, 33px) scale(0.1);
            }
        }

        .icon-right-3 {
            offset-path: path("M1591.07 772.512C1591.07 772.512 1296.3 524.512 796.073 524.512"
                );
            transform-origin: 50% 50%;
            offset-rotate: 0deg;
            animation: animation-7 var(--animation-total-time, 8s) ease-in-out infinite;
            animation-delay: var(--animation-delay, 0s);
        }

        @keyframes animation-7 {
            0% {
                offset-distance: 100%;
                transform: translate(160px, 70px) scale(0.2);
                opacity: 1;
            }

            50% {
                transform: translate(760px, 348px) scale(1);
            }

            80% {
                opacity: 1;
            }

            85% {
                opacity: 0;
            }

            to {
                offset-distance: 0;
                transform: translate(82px, 35px) scale(0.1);
            }
        }

        .icon-right-4 {
            offset-path: path("M1591.07 249.512C1591.07 249.512 1296.3 497.512 796.073 497.512"
                );
            transform-origin: 50% 50%;
            offset-rotate: 0deg;
            animation: animation-8 var(--animation-total-time, 8s) ease-in-out infinite;
            animation-delay: var(--animation-delay, 0s);
        }

        @keyframes animation-8 {
            0% {
                offset-distance: 100%;
                transform: translate(155px, 70px) scale(0.2);
                opacity: 1;
            }

            50% {
                transform: translate(763px, 348px) scale(1);
            }

            80% {
                opacity: 1;
            }

            85% {
                opacity: 0;
            }

            to {
                offset-distance: 0;
                transform: translate(85px, 32px) scale(0.1);
            }
        }

        @media (prefers-reduced-motion) {
            .\!icon {
                animation-play-state: paused !important;
            }

            .icon {
                animation-play-state: paused;
            }
        }

/* Extracted from privacy-policy.blade.php */
.privacy-pd{
        padding-top: 120px;
    }
    .privacy-policy-cont {
        margin-bottom: 100px;
    }

    .privacy-policy-cont .privacy-date-update {
        font-size: 16px;
        color: #666;
        text-align: center
    }

    .privacy-policy-cont .break-line {
        border: 0;
        height: 1px;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.75), rgba(0, 0, 0, 0));
    }

    .privacy-descript-cont {
        margin-top: 46px;
    }

    .privacy-descript-cont .privacy-descript {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 8px;
        font-weight: 400;
        color: #333;
    }
    .privacy-policy-cont .privacy-title{
        font-size: 24px;
        margin-top: 16px;
        margin-bottom: 16px;
        color: #111;
    }
    .privacy-policy-cont .privacy-subtitle{
        font-size: 20px;
        margin-top: 16px;
        margin-bottom: 16px;
        color: #222;
    }
    .privacy-policy-cont .privacy-descript-list li{
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 1.6;
        font-weight:400;
        color: #333;
    }
    @media only screen and (max-width: 991px) {
        .privacy-policy-cont .privacy-title{
            font-size: 20px;
        }
        .privacy-policy-cont .privacy-subtitle{
            font-size: 18px;
        }
        .privacy-descript-cont .privacy-descript{
            font-size: 14px;
        }
        .privacy-policy-cont .privacy-descript-list li{
            margin-bottom: 8px;
            font-size: 14px;
        }
    }

/* Extracted from smart-contract.blade.php */
.sub-service-page .section-tittle {
        max-width: 100%;
        margin-bottom: 26px
    }

    .sub-service-page .counter-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        list-style-type: none;
        gap: 16px;
        margin: 46px auto 56px auto;
    }

    .sub-service-page .counter-list .counter-listitem {
        position: relative;
        text-align: center;
        color: #fff;
        background: #141414;
        border-radius: 6px;
        padding: 8px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        overflow: hidden;
        will-change: transform, opacity;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Animated Gradient Border */
    .sub-service-page .counter-list .counter-listitem::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 6px;
        padding: 2px;
        background: linear-gradient(45deg, #f3ec78, #af4261, #00dbde, #fc00ff, #f3ec78);
        background-size: 300% 300%;
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: 0;
        animation: gradientFlow 8s linear infinite;
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    .sub-service-page .counter-list .counter-listitem .counter-number {
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        display: inline-block;
        transition: transform 0.3s ease-out;
        margin-bottom: 15px;
        margin-top: 5px;
    }

    .sub-service-page .counter-list .counter-listitem .counter-title {
        font-size: 16px;
        line-height: normal;
        letter-spacing: 1.5px;
    }

    .sub-service-page.bold-text-28 {
        letter-spacing: 1.5px;
    }

    .sub-service-page .text-block-5 {
        font-size: 14px;
    }

    .sub-service-page .solution-card-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        height: 16rem;
    }

    /* Bell Design */

    .experience-cont-box .ico:before,
    .experience-cont-box .ico svg {
        border-radius: 50%;
        transform-origin: 50% 0;
        transform: rotate(-8deg);
        animation: osc 0.3s ease-in-out infinite alternate;
    }

    @keyframes osc {
        to {
            transform: rotate(8deg);
        }
    }

    .experience-cont-box {
        --narr: 1;
        --notnarr: calc(1 - var(--narr));
        --wide: 0;
        --notwide: calc(1 - var(--wide));
        --nor: calc(var(--notnarr)*var(--notwide));
        --or: calc(1 - var(--nor));
        --sum: calc(1 + var(--narr));
        /* display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap; */
        overflow-x: hidden;
        min-height: 100vh;
        /* background: linear-gradient(to right top, #ebedec, #e3e7e6, #dbe1e0, #d3dadb, #ccd4d6); */
    }

    .experience-cont-box:before {
        --uw: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em);
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        height: calc(var(--sum)*2*var(--uw));
        transform: translate(calc(var(--sum)*50%/var(--n)), -50%);
        background: radial-gradient(circle at calc(50% - 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at calc(50% + 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at 50% 39%, #fff calc(0.625em - 1px), rgba(255, 255, 255, 0) 0.625em);
        background-size: calc(50%/(2 - var(--narr))) calc(100%/(1 + var(--narr)));
        clip-path: inset(0 calc(var(--sum)*25%) 0 0);
        filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.2));
        content: "";
    }

    @media (max-width: 480px) {
        .experience-cont-box:before {
            display: none;
        }
    }

    @media (min-width: 38em) {
        .experience-cont-box {
            --narr: 0;
        }
    }

    @media (min-width: 58em) {
        .experience-cont-box {
            --wide: 1;
        }
    }

    .experience-cont-box .hid {
        position: absolute;
        clip-path: inset(50%);
    }

    .experience-cont-box path {
        --s: 2;
        fill: none;
        stroke: currentcolor;
        stroke-width: var(--s);
        stroke-linecap: round;
    }

    .experience-cont-box path.d {
        stroke-dasharray: 0 calc(2*var(--s));
    }

    .experience-cont-box path.t {
        --s: 4;
    }

    .experience-cont-box .experience-detail {
        display: flex;
        flex-direction: column;
        padding: 1em 1em;
        /* min-width: 7.5em; */
        /* width: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em); */
        /* min-width: 12.5em;
        max-width: 12.5em; */
        width: 100%;
        text-align: center;
        text-transform: uppercase;
    }

    .experience-cont-box h3,.experience-cont-box a {
        color: var(--c0);
    }

    .experience-cont-box h3 {
        padding: 1em 0 0.5em;
        font-size: calc(var(--nor)*2vw + var(--or)*1.16em);
        text-transform: none;
        font-weight: bold;
        letter-spacing: 1.5px;
    }

    .experience-cont-box p {
        /* height: 3em; */
        font-size: 12px;
        line-height: normal;
        text-transform: none;
        color: #7f7f7f;
        letter-spacing: 0.5px;
    }

    .experience-cont-box .ico {
        order: -1;
        position: relative;
        margin-bottom: calc(10% + 2.875em + 2px);
        border-radius: 50%;
        box-shadow: inset 0 0 0 0.325em #fff, 11px 11px 12px -9px rgba(27, 14, 0, 0.28);
        background: linear-gradient(135deg, var(--c0), var(--c1)) padding-box;
        height: 120px;
        width: 120px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-cont-box .ico a {
        --sgn: 1;
        box-sizing: border-box;
        display: grid;
        place-content: center;
        padding: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        clip-path: circle(calc(50% - 0.625em));
    }

    .experience-cont-box .ico a:hover {
        --sgn: -1;
    }

    .experience-cont-box .ico svg {
        /* --w: calc(100% - 4em); */
        --w: 66px;
        box-sizing: border-box;
        position: absolute;
        margin: calc(-.5*var(--w));
        border: solid 1em transparent;
        width: var(--w);
        height: var(--w);
        border-radius: 50%;
        box-shadow: calc(var(--sgn)*36px) 27px 11px -5px rgba(27, 14, 0, 0.16);
        background: linear-gradient(135deg, #fff, #d2d2d2) border-box;
        transition: 0.3s ease-out;
    }

    .experience-cont-box .ico:before,
    .ico:after {
        position: absolute;
        content: "";
    }

    .experience-cont-box .ico:before {
        box-sizing: border-box;
        top: calc(135% + 1px);
        /* left: calc(50% - 1.4375em); */
        left: calc(50% - 12px);
        border: solid 0.625em transparent;
        width: 1.875em;
        height: 1.875em;
        box-shadow: 0 0 0 2px #fff;
        background: inherit;
        filter: drop-shadow(1px 3px 2px rgba(0, 0, 0, 0.32));
    }

    .experience-cont-box .ico:after {
        width: 0.375em;
        top: calc(100% - 0.5em);
        left: calc(50% - 0.5em);
        border: solid 0 transparent;
        border-width: 0.5em 0.3125em;
        padding-top: 35%;
        background: linear-gradient(#fff, #fff) padding-box, radial-gradient(circle at 50% 0.5em, #fff calc(0.5em - 1px), rgba(255, 255, 255, 0) 0.5em) border-box, radial-gradient(circle at 50% calc(100% - 0.5em), #fff calc(0.375em - 1px), rgba(255, 255, 255, 0) 0.375em) border-box;
    }

    .experience-grid-box {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }

    /* End Bell Design */
    .sub-service-page .icons_block {
        padding-top: 0px;
    }

    .sub-service-page .experience-cont-box .icons_block .heading-18 {
        margin-bottom: 16px;
        text-align: center;
        font-size: 36px;
    }

    .defi-services .icons_block .heading-18 {
        font-size: 50px;
        margin-bottom:46px;
    }

    .benefits-flexbox {
        display: flex;
        /* flex-direction: row; */
        justify-content: space-around;
        width: 100%;
        flex-wrap: wrap;
        gap:26px;
        row-gap: 36px;
    }

    .benefits-flexcard {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 20%;
        align-items: baseline;
        height: max-content;
        border-radius: 20px;
    }

    .benefits-flexcardNumber {
        width: 70%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        margin: 10px 0px;
        border-radius: 0px 50px 50px 0px;
        color: white;
        text-shadow: 0px 3px 5px black;
        font-weight: 500;
        font-size: 20px;
        position: relative;
    }

    .benefits-flexcardTitle {
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 600;
        line-height: normal;
        min-height: 66px;
    }

    .benefits-flexcardText {
        text-align: center;
        font-weight: 300;
        margin-bottom: 16px;
        min-height: 136px;
    }

    .benefits-flexcardNumber:before {
        content: '';
        width: 34px;
        height: 90px;
        position: absolute;
        left: -33px;
        top: 0px;
        border-radius: 50px 0px 0px 50px;
        /* z-index: -1; */
        /* background: #95B7A2; */
        /* background: -webkit-linear-gradient(bottom, #95B7A2, #AED2BC); */
        background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
        /* background: linear-gradient(to top, #95B7A2, #AED2BC); */
        ;
    }

    .benefits-flexcardNumber:after {
        content: '';
        width: 25px;
        height: 40px;
        position: absolute;
        left: -25px;
        bottom: -40px;
        border-radius: 50px 0px 0px 50px;
        z-index: -1;
    }

    .benefits-flex {
        display: flex;
        justify-content: center;
        align-items:center;
        width: 100%;
        margin: 0px auto;
        padding: 8px;
        text-transform: none;
        text-align: center;
    }

    /* GREEN CARD */

    .benefits-flexcardGreen {
        background: #f9fbfa;
        box-shadow: 4px 4px 4px #AED2BC;
    }

    .benefits-flexcardNumberGreen {
        background: #FCFCFC;
        background: -webkit-linear-gradient(right, #FCFCFC, #AED2BC);
        background: -moz-linear-gradient(right, #FCFCFC, #AED2BC);
        background: linear-gradient(to left, #FCFCFC, #AED2BC);
        box-shadow: 0px 2px 2px #AED2BC;
    }

    .benefits-flexcardNumberGreen:before {
        background: #AED2BC;
    }

    .benefits-flexcardNumberGreen:after {
        background: #95b7a2;
    }

    /* BLUE CARD */

    .benefits-flexcardBlue {
        background: #f7ffff;
        box-shadow: 4px 8px 1px #92E8EB;
    }

    .flexcardNumberBlue {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #92E8EB);
        background: -moz-linear-gradient(right, #FDFFFE, #92E8EB);
        background: linear-gradient(to left, #FDFFFE, #92E8EB);
        box-shadow: 0px 2px 2px #92E8EB;
    }

    .flexcardNumberBlue:before {
        background: #92E8EB;
    }

    .flexcardNumberBlue:after {
        background: #71bdbf;
    }

    /* ORANGE CARD */

    .benefits-flexcardOrange {
        background: #fdf8f3;
        box-shadow: 4px 8px 1px #F68404;
    }

    .flexcardNumberOrange {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #F68404);
        background: -moz-linear-gradient(right, #FDFFFE, #F68404);
        background: linear-gradient(to left, #FDFFFE, #F68404);
        box-shadow: 0px 2px 2px #F68404;
    }

    .flexcardNumberOrange:before {
        background: #F68404;
    }

    .flexcardNumberOrange:after {
        background: #d06f02;
    }

    /* PİNK CARD */

    .benefits-flexcardPink {
        background: #fffafd;
        box-shadow: 4px 8px 1px #F34EAE;
    }

    .flexcardNumberPink:before {
  background: #F34EAE;
}

.flexcardNumberPink:after {
  background: #d24095;
}

    .flexcardNumberPink {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #F34EAE);
        background: -moz-linear-gradient(right, #FDFFFE, #F34EAE);
        background: linear-gradient(to left, #FDFFFE, #F34EAE);
        box-shadow: 0px 2px 2px #F34EAE;
    }

    /* RESPONSİVE */

    @media only screen and (max-width: 800px) {
        .benefits-flexcard {
            width: 35%;
            margin-top: 20px;
        }
    }

    @media only screen and (max-width: 500px) {
        .benefits-flexcard {
            width: 70%;
        }
    }
    .sub-service-page .blockchain-marquee{
        height: 100vh;
    }
    .service-grid-cont{
        display: grid;
        grid-template-columns: 15% 85%;
    }
    .service-icon-box{
        height: 100px;
        width: 100px;
        border-radius:10px;
        border: 4px solid #d9d9d9;
    }
    .service-icon-box img{
        height: 100%;
        width: 100%;
        object-fit: contain;
        border-radius: 10px;
    }
    .sub-service-page .div-block-271 {
        width: 100%;
        max-width: 100%;
        padding: 8px;
        margin-top:0px;
    }
    .sub-service-page .text-block-40 {
        color: #1d1d1f;
        font-size: 16px;
        line-height: 24px;
    }

/* Extracted from thankyou.blade.php */
.content-center {
        text-align: center;
        color: white;
    }

    .error {
        font-size: 100px;
        margin-bottom: 1px;
    }

    .content-center p {
        font-weight: bold;
    }

    .content-center .button {
        border: 1px solid white;
        padding: 10px;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        background: #FF512F;
        background: -webkit-linear-gradient(to right, #F09819, #FF512F);
        background: linear-gradient(to right, #F09819, #FF512F);
        color: white;
        font-weight: bold;
        cursor: pointer;
        margin-top: 20px;
    }

    .error-box-cont {
        height: 100vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .error-box-cont img {
        height: 300px;
        width: 100%;
        /* filter: invert(1); */
    }

    .error-box-cont h6{
        /* color: white; */
        font-size: 20px;
        font-weight: 500;
        margin-top: 20px;
        text-align: center;
    }

    /* @media only screen and (max-width: 767px) {
  .error-box-cont{
    align-items: center;
  }
} */

/* Extracted from token-development.blade.php */
.sub-service-page .section-tittle {
        max-width: 100%;
        margin-bottom: 26px
    }

    .sub-service-page .counter-list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        list-style-type: none;
        gap: 16px;
        margin: 46px auto 56px auto;
    }

    .sub-service-page .counter-list .counter-listitem {
        position: relative;
        text-align: center;
        color: #fff;
        background: #141414;
        border-radius: 6px;
        padding: 8px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        overflow: hidden;
        will-change: transform, opacity;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Animated Gradient Border */
    .sub-service-page .counter-list .counter-listitem::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 6px;
        padding: 2px;
        background: linear-gradient(45deg, #f3ec78, #af4261, #00dbde, #fc00ff, #f3ec78);
        background-size: 300% 300%;
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        z-index: 0;
        animation: gradientFlow 8s linear infinite;
    }

    @keyframes gradientFlow {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    .sub-service-page .counter-list .counter-listitem .counter-number {
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        display: inline-block;
        transition: transform 0.3s ease-out;
        margin-bottom: 15px;
        margin-top: 5px;
    }

    .sub-service-page .counter-list .counter-listitem .counter-title {
        font-size: 16px;
        line-height: normal;
        letter-spacing: 1.5px;
    }

    .sub-service-page.bold-text-28 {
        letter-spacing: 1.5px;
    }

    .sub-service-page .text-block-5 {
        font-size: 14px;
    }

    .sub-service-page .solution-card-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        height: 16rem;
    }

    /* Bell Design */

    .experience-cont-box .ico:before,
    .experience-cont-box .ico svg {
        border-radius: 50%;
        transform-origin: 50% 0;
        transform: rotate(-8deg);
        animation: osc 0.3s ease-in-out infinite alternate;
    }

    @keyframes osc {
        to {
            transform: rotate(8deg);
        }
    }

    .experience-cont-box {
        --narr: 1;
        --notnarr: calc(1 - var(--narr));
        --wide: 0;
        --notwide: calc(1 - var(--wide));
        --nor: calc(var(--notnarr)*var(--notwide));
        --or: calc(1 - var(--nor));
        --sum: calc(1 + var(--narr));
        /* display: flex;
        align-items: center;
        justify-content: space-around;
        flex-wrap: wrap; */
        overflow-x: hidden;
        min-height: 100vh;
        /* background: linear-gradient(to right top, #ebedec, #e3e7e6, #dbe1e0, #d3dadb, #ccd4d6); */
    }

    .experience-cont-box:before {
        --uw: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em);
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        height: calc(var(--sum)*2*var(--uw));
        transform: translate(calc(var(--sum)*50%/var(--n)), -50%);
        background: radial-gradient(circle at calc(50% - 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at calc(50% + 1em) calc(39% - 1em), #fff calc(0.25em - 1px), rgba(255, 255, 255, 0) 0.25em), radial-gradient(circle at 50% 39%, #fff calc(0.625em - 1px), rgba(255, 255, 255, 0) 0.625em);
        background-size: calc(50%/(2 - var(--narr))) calc(100%/(1 + var(--narr)));
        clip-path: inset(0 calc(var(--sum)*25%) 0 0);
        filter: drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.2));
        content: "";
    }

    @media (max-width: 480px) {
        .experience-cont-box:before {
            display: none;
        }
    }

    @media (min-width: 38em) {
        .experience-cont-box {
            --narr: 0;
        }
    }

    @media (min-width: 58em) {
        .experience-cont-box {
            --wide: 1;
        }
    }

    .experience-cont-box .hid {
        position: absolute;
        clip-path: inset(50%);
    }

    .experience-cont-box path {
        --s: 2;
        fill: none;
        stroke: currentcolor;
        stroke-width: var(--s);
        stroke-linecap: round;
    }

    .experience-cont-box path.d {
        stroke-dasharray: 0 calc(2*var(--s));
    }

    .experience-cont-box path.t {
        --s: 4;
    }

    .experience-cont-box .experience-detail {
        display: flex;
        flex-direction: column;
        padding: 1em 1em;
        /* min-width: 7.5em; */
        /* width: calc(var(--nor)*(100% - var(--n)*2em)/var(--n) + var(--or)*12.5em); */
        /* min-width: 12.5em;
        max-width: 12.5em; */
        width: 100%;
        text-align: center;
        text-transform: uppercase;
    }

    .experience-cont-box h3,.experience-cont-box a {
        color: var(--c0);
    }

    .experience-cont-box h3 {
        padding: 1em 0 0.5em;
        font-size: calc(var(--nor)*2vw + var(--or)*1.16em);
        text-transform: none;
        font-weight: bold;
        letter-spacing: 1.5px;
    }

    .experience-cont-box p {
        /* height: 3em; */
        font-size: 12px;
        line-height: normal;
        text-transform: none;
        color: #7f7f7f;
        letter-spacing: 0.5px;
    }

    .experience-cont-box .ico {
        order: -1;
        position: relative;
        margin-bottom: calc(10% + 2.875em + 2px);
        border-radius: 50%;
        box-shadow: inset 0 0 0 0.325em #fff, 11px 11px 12px -9px rgba(27, 14, 0, 0.28);
        background: linear-gradient(135deg, var(--c0), var(--c1)) padding-box;
        height: 120px;
        width: 120px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-cont-box .ico a {
        --sgn: 1;
        box-sizing: border-box;
        display: grid;
        place-content: center;
        padding: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        clip-path: circle(calc(50% - 0.625em));
    }

    .experience-cont-box .ico a:hover {
        --sgn: -1;
    }

    .experience-cont-box .ico svg {
        /* --w: calc(100% - 4em); */
        --w: 66px;
        box-sizing: border-box;
        position: absolute;
        margin: calc(-.5*var(--w));
        border: solid 1em transparent;
        width: var(--w);
        height: var(--w);
        border-radius: 50%;
        box-shadow: calc(var(--sgn)*36px) 27px 11px -5px rgba(27, 14, 0, 0.16);
        background: linear-gradient(135deg, #fff, #d2d2d2) border-box;
        transition: 0.3s ease-out;
    }

    .experience-cont-box .ico:before,
    .ico:after {
        position: absolute;
        content: "";
    }

    .experience-cont-box .ico:before {
        box-sizing: border-box;
        top: calc(135% + 1px);
        /* left: calc(50% - 1.4375em); */
        left: calc(50% - 12px);
        border: solid 0.625em transparent;
        width: 1.875em;
        height: 1.875em;
        box-shadow: 0 0 0 2px #fff;
        background: inherit;
        filter: drop-shadow(1px 3px 2px rgba(0, 0, 0, 0.32));
    }

    .experience-cont-box .ico:after {
        width: 0.375em;
        top: calc(100% - 0.5em);
        left: calc(50% - 0.5em);
        border: solid 0 transparent;
        border-width: 0.5em 0.3125em;
        padding-top: 35%;
        background: linear-gradient(#fff, #fff) padding-box, radial-gradient(circle at 50% 0.5em, #fff calc(0.5em - 1px), rgba(255, 255, 255, 0) 0.5em) border-box, radial-gradient(circle at 50% calc(100% - 0.5em), #fff calc(0.375em - 1px), rgba(255, 255, 255, 0) 0.375em) border-box;
    }

    .experience-grid-box {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 100%;
    }

    /* End Bell Design */
    .sub-service-page .icons_block {
        padding-top: 0px;
    }

    .sub-service-page .experience-cont-box .icons_block .heading-18 {
        margin-bottom: 16px;
        text-align: center;
        font-size: 36px;
    }

    .defi-services .icons_block .heading-18 {
        font-size: 50px;
        margin-bottom:46px;
    }

    .benefits-flexbox {
        display: flex;
        /* flex-direction: row; */
        justify-content: space-around;
        width: 100%;
        flex-wrap: wrap;
        gap:26px;
        row-gap: 36px;
    }

    .benefits-flexcard {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 20%;
        align-items: baseline;
        height: max-content;
        border-radius: 20px;
    }

    .benefits-flexcardNumber {
        width: 70%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        margin: 10px 0px;
        border-radius: 0px 50px 50px 0px;
        color: white;
        text-shadow: 0px 3px 5px black;
        font-weight: 500;
        font-size: 20px;
        position: relative;
    }

    .benefits-flexcardTitle {
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 600;
        line-height: normal;
        min-height: 66px;
    }

    .benefits-flexcardText {
        text-align: center;
        font-weight: 300;
        margin-bottom: 16px;
        min-height: 136px;
    }

    .benefits-flexcardNumber:before {
        content: '';
        width: 34px;
        height: 90px;
        position: absolute;
        left: -33px;
        top: 0px;
        border-radius: 50px 0px 0px 50px;
        /* z-index: -1; */
        /* background: #95B7A2; */
        /* background: -webkit-linear-gradient(bottom, #95B7A2, #AED2BC); */
        background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
        /* background: linear-gradient(to top, #95B7A2, #AED2BC); */
        ;
    }

    .benefits-flexcardNumber:after {
        content: '';
        width: 25px;
        height: 40px;
        position: absolute;
        left: -25px;
        bottom: -40px;
        border-radius: 50px 0px 0px 50px;
        z-index: -1;
    }

    .benefits-flex {
        display: flex;
        justify-content: center;
        align-items:center;
        width: 100%;
        margin: 0px auto;
        padding: 8px;
        text-transform: none;
        text-align: center;
    }

    /* GREEN CARD */

    .benefits-flexcardGreen {
        background: #f9fbfa;
        box-shadow: 4px 4px 4px #AED2BC;
    }

    .benefits-flexcardNumberGreen {
        background: #FCFCFC;
        background: -webkit-linear-gradient(right, #FCFCFC, #AED2BC);
        background: -moz-linear-gradient(right, #FCFCFC, #AED2BC);
        background: linear-gradient(to left, #FCFCFC, #AED2BC);
        box-shadow: 0px 2px 2px #AED2BC;
    }

    .benefits-flexcardNumberGreen:before {
        background: #AED2BC;
    }

    .benefits-flexcardNumberGreen:after {
        background: #95b7a2;
    }

    /* BLUE CARD */

    .benefits-flexcardBlue {
        background: #f7ffff;
        box-shadow: 4px 8px 1px #92E8EB;
    }

    .flexcardNumberBlue {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #92E8EB);
        background: -moz-linear-gradient(right, #FDFFFE, #92E8EB);
        background: linear-gradient(to left, #FDFFFE, #92E8EB);
        box-shadow: 0px 2px 2px #92E8EB;
    }

    .flexcardNumberBlue:before {
        background: #92E8EB;
    }

    .flexcardNumberBlue:after {
        background: #71bdbf;
    }

    /* ORANGE CARD */

    .benefits-flexcardOrange {
        background: #fdf8f3;
        box-shadow: 4px 8px 1px #F68404;
    }

    .flexcardNumberOrange {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #F68404);
        background: -moz-linear-gradient(right, #FDFFFE, #F68404);
        background: linear-gradient(to left, #FDFFFE, #F68404);
        box-shadow: 0px 2px 2px #F68404;
    }

    .flexcardNumberOrange:before {
        background: #F68404;
    }

    .flexcardNumberOrange:after {
        background: #d06f02;
    }

    /* PİNK CARD */

    .benefits-flexcardPink {
        background: #fffafd;
        box-shadow: 4px 8px 1px #F34EAE;
    }

    .flexcardNumberPink:before {
  background: #F34EAE;
}

.flexcardNumberPink:after {
  background: #d24095;
}

    .flexcardNumberPink {
        background: #FDFFFE;
        background: -webkit-linear-gradient(right, #FDFFFE, #F34EAE);
        background: -moz-linear-gradient(right, #FDFFFE, #F34EAE);
        background: linear-gradient(to left, #FDFFFE, #F34EAE);
        box-shadow: 0px 2px 2px #F34EAE;
    }

    /* RESPONSİVE */

    @media only screen and (max-width: 800px) {
        .benefits-flexcard {
            width: 35%;
            margin-top: 20px;
        }
    }

    @media only screen and (max-width: 500px) {
        .benefits-flexcard {
            width: 70%;
        }
    }
    .sub-service-page .blockchain-marquee{
        height: 100vh;
    }
    .service-grid-cont{
        display: grid;
        grid-template-columns: 15% 85%;
    }
    .service-icon-box{
        height: 100px;
        width: 100px;
        border-radius:10px;
        border: 4px solid #d9d9d9;
    }
    .service-icon-box img{
        height: 100%;
        width: 100%;
        object-fit: contain;
        border-radius: 10px;
    }
    .sub-service-page .div-block-271 {
        width: 100%;
        max-width: 100%;
        padding: 8px;
        margin-top:0px;
    }
    .sub-service-page .text-block-40 {
        color: #1d1d1f;
        font-size: 16px;
        line-height: 24px;
    }

/* Extracted from waitlist.blade.php */
ul {
                        padding-left: 0;
                      }

                      ul li {
                        list-style: none;
                      }

                      .zf-form-sBox {
                        width: 100%;

                        height: 4.2rem;

                        padding: 1.125rem 1.5rem 0.875rem;

                        border-radius: 0.83333rem;

                        border: 1px solid #f5f5f5;

                        color: rgba(97, 98, 97, 0.4);

                        font-size: 1rem;

                        line-height: 1.5rem;

                        background-color: #f5f5f5;
                      }

                      input[type="text"],
                      .zf-form-sBox {
                        margin-bottom: 0.28rem;
                      }

                      input[type="text"]:focus,
                      .zf-form-sBox:focus,
                      textarea:focus {
                      }

                      .frame {
                        border: none;
                      }

                      .zf-form-sBox {
                        -webkit-appearance: none;

                        -moz-appearance: none;

                        background-image: url("assets/images/down-arrow-icon.svg");

                        background-position: 97%;

                        background-repeat: no-repeat;

                        background-size: 1.5rem 1.5rem;

                        margin-right: 2rem;

                        padding-right: 2rem;
                      }
