html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.hero-section-common {
    border-radius: 10px;
    border: 1px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.hero-section-common-extra {
    border-radius: 10px;
    border: 1px;
    box-shadow: 0 10px 100px rgba(0, 0, 0, 0.1);
}

.img-custom-style {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion-button-custom-style {
    background-color: #fff;
    color: #144ee3;
    font-weight: 400;
    font-size: 20px;
    padding: 15px 20px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
}

.accordion-button-custom-style:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button-custom-style:not(.collapsed) {
    background-color: #f4f2ff;
    color: #144ee3;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    border-radius: 0;
}

.accordion-body {
    padding: 15px 20px;
    font-size: 18px;
    color: #666;
    background: #f9f9f9;
    border-left: 4px solid #144ee3;
}

.accordion-collapse {
    transition: max-height 0.3s ease-out;
}

.img-custom-style {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cs_case_study_1_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

.cs_case_study {
    width: 100%;
}

.cs_case_study {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    justify-content: center;
}


.cs_case_study:hover img {
    transform: scale(1.05);
}

.card {
    border: none;
}

.btn-area1 .header-btn12 {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #144ee3;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-area1 .header-btn12:hover {
    background: #144ee3;
    transform: translateY(-2px);
}

.nav-tabs {
    border-bottom: none;
    display: flex;
    gap: 20px;
}

.nav-tabs .nav-link {
    color: #555;
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    background: none;
}

.nav-tabs .nav-link.active {
    border-radius: 10px;
    color: #007bff;
    background-color: #f8f9fa;
}

.nav-tabs .nav-link:hover {
    color: #0056b3;
}

/* Tab Content Box */
.tab-content {
    border-top: none;
    padding: 20px;
    border-radius: 10px;
}


.background-color {
    background-color: #F6F8FA;
}

.background-color2 {
    background-color: #f1f1f1;
}

.tab-content img {
    max-width: 100%;
    height: auto;
}

.cs_case_study {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.cs_case_study img {
    width: 100%;
    transition: transform 0.3s;
    border-radius: 20px;
}

.cs_case_study:hover img {
    transform: scale(1.05);
}

.cs_case_study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, transparent 10%, #1a1a1a50); */
    opacity: 1;
    transition: opacity 0.3s;
    border-radius: 20px;
    z-index: 1;
}

.cs_case_study:hover::before {
    opacity: 1;
}

body.modal-open {
    height: 100vh;
    overflow-y: hidden;
}

.img-fluid {
    border-radius: 10px;
}

.tab-pane {
    -webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.tab-pane.fade.show {
    opacity: 1;
}

.nice-select {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nice-select.open .list {
    height: 230px;
    overflow: auto;
}

.attribute-section-common {
    width: 100%;
    max-width: 540px;
    height: auto;
}

#cta {
    display: none;

    position: fixed;
    bottom: -150px;
    z-index: 64546;
    transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 600px) {
    #cta {
        padding-bottom: 25px;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .attribute-section-common {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .case4-section-area .cs_case_study.cs_style_1.cs_hover_active {
        margin: 0 0 24px 0;
        display: contents;
    }
}

@media (max-width: 768px) {
    #customTabs {
        padding: 10px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    #customTabs .nav-item {
        flex: 0 0 auto;
    }

    #customTabs::-webkit-scrollbar {
        display: none;
    }
}


@-webkit-keyframes tab-pane {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
}