@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html,
body {
    font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, 'Noto Sans', sans-serif;
}

/* SweetAlert padding-right sorunu çözümü */
body.swal2-shown {
    padding-right: 0 !important;
}

body.swal2-height-auto {
    padding-right: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Exo 2', sans-serif !important;
}


/* ana kodlar */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

div {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:active,
a:focus,
a:visited {
    color: inherit;
    text-decoration: none;
    outline: none;
}

/* ana kodlar sonu*/

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #0e2239;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
    opacity: 0;
    transform: translateY(12px) scale(0.95);
    transition: opacity .35s ease, transform .35s ease, background-color .2s ease;
    pointer-events: none;
}

.back-to-top:hover {
    background: #1974b6;
}

.back-to-top:active {
    transform: translateY(2px) scale(0.98);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: none;
    }
}


/* index hero alanı */

#hero-area {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #133c62 0%, #1e293b 100%);
}

#hero-area .blue{
    color: #0dcaf0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(19, 60, 98, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 40% 90%, rgba(25, 116, 182, 0.12) 0%, transparent 30%);
    animation: backgroundMove 25s ease-in-out infinite;
    pointer-events: none;
}

.web3-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(74, 144, 226, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 144, 226, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
    pointer-events: none;
}

#hero-area .row {
    align-items: center;
}

#hero-area .row h1,
#hero-area .row p {
    color: #fff;
}

#hero-area .hero-bg,
#hero-area .web3-grid {
    z-index: 0;
}

#hero-area .container {
    position: relative;
    z-index: 1;
}

#hero-area h1 {
    font-family: "Exo 2", sans-serif !important;
    font-size: 4rem;
    font-weight: 700;

    color: #fff;
}

#hero-area p {
    font-size: 1.2rem;
    font-weight: 400;

    color: #fff;
}

.btn-demo {
    background-color: #4a90e2;
    color: #fff !important;
    padding: 7px 18px;
    font-size: 16px;
    border: 2px solid #4a90e2;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-demo:hover {
    background-color: #1e293b;
    border: 2px solid #4a90e2;
    color: #4a90e2;
}

/* index hero alanı sonu */


/* index çözümlerimiz alanı */

#solutions-area .solution-card {
    position: relative;
    text-align: center;
    height: 100%;
    background: #4a90e2;
    border-radius: 20px;
    padding: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%);
    transition: 0.3s ease;
}

#solutions-area h1 {
    font-family: "Exo 2", sans-serif !important;
    font-weight: bold;
    text-align: center;
}

#solutions-area .solution-card:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #fff;
    border-radius: 18px;
    clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%);
    z-index: -1;
}

#solutions-area .solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #1974b6;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    transition: 0.2s ease;
}

#solutions-area .solution-card:hover .solution-icon {
    background-color: #133c62;
}

#solutions-area .solution-card .solution-icon i {
    font-size: 25px;
}

#solutions-area .solution-card .sub-text {
    font-size: 14px;
}

#solutions-area .solution-card .solution-title {
    font-family: "Exo 2", sans-serif !important;
    color: #133c62;
    text-align: start;
    font-weight: bold;
}

#solutions-area .solution-card .solution-sub-title {
    text-align: start;
}

#solutions-area .solution-card .features-list {
    text-align: start;
    font-size: 6px;
}

#solutions-area .solution-card .features-list-sub {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

#solutions-area .solution-card .features-list-sub i {
    color: #4a90e2;
}

/* index çözümlerimiz alanı sonu */


/* index mockup alanı */

#mockup-area {
    position: relative;
    overflow: hidden;
}

#mockup-area h1 {
    font-family: "Exo 2", sans-serif !important;
    text-align: center;
    font-weight: bold;
}

#mockup-area::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(53, 122, 189, 0.05));
    border-radius: 50%;
    z-index: 0;
}

#mockup-area .blue{
    color:#133c62 !important;
}

#mockup-area .container {
    position: relative;
    z-index: 1;
}

#mockup-area .mockup-img-area {
    display: flex;
    justify-content: center;
    align-items: center;;
}

#mockup-area .mockup-img-area img {
    width:  100%;    
    height: auto;
}

/* index mockup alanı sonu */

/* index hakkımızda alanı */

#about-area {
    background-color: #000;
    color: #fff;
}

#about-area h1 {
    color: #4a90e2;
    font-family: "Exo 2", sans-serif !important;
    text-align: center;
    font-weight: bold;
}

#about-area h3 {
    color: #4a90e2 !important;
    font-family: "Exo 2", sans-serif !important;
}

#about-area .feature-card {
    position: relative;
    color: #fff;
    border: none;
    background: linear-gradient(135deg, rgb(10, 32, 53), rgb(17, 54, 88));
    border-radius: 20px;
}

#about-area .card-area {
    display: flex;
    align-items: start;
}

#about-area .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;
    background: #4a90e2;
    flex-shrink: 0;
}

#about-area .feature-icon i {
    font-size: 1.5rem;
}

#about-area .feature-content h5 {
    font-weight: bold;
}

/* index hakkımızda alanı sonu */


/* index sss alanı */

#sss-accordion h1 {
    text-align: center;
    font-weight: bold;
    font-family: "Exo 2", sans-serif !important;
}

.sss-info-card {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 552px;
}

.sss-img {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 350px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.8;
}

.sss-info-card::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    width: 350px;
    height: 500px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.4), rgba(53, 122, 189, 0.6));
    border-radius: 20px;
    z-index: 1;
}

.sss-info-card .sss-banner {
    position: relative;
    z-index: 10;
    padding-top: 42px;
    padding-left: 78px;
    margin: 0 auto;
}

#sss-accordion .sss-mini-header-top {
    text-align: start;
    margin-bottom: 0 !important;
    font-size: 45px;
    font-family: "Exo 2", sans-serif !important;
}

#sss-accordion .sss-mini-header-top span {
    color: #133c62;
}

#sss-accordion .sss-mini-header-bottom {
    text-align: start;
    font-size: 45px;
    margin-top: 0 !important;
    padding-left: 30px;
    font-family: "Exo 2", sans-serif !important;
}

#sss-accordion .sss-mini-header-bottom span {
    color: #133c62;
}

.sss-info-card h3 {
    color: #242424;
    font-size: 1.5rem;
    text-align: center;
}

.sss-info-card .button-text-start {
    text-align: start;
}

.sss-info-card .btn-another-question {
    margin-left: 90px !important;
    background-color: #2b2f33;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.sss-info-card .btn-another-question:hover {
    background: #133c62;
    color: #fff !important;
    transform: translateY(-2px);
}


#sss-accordion-area .accordion {
    --bs-accordion-border-color: none;
    gap: 1rem;
}

#sss-accordion-area .accordion-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

#sss-accordion-area .accordion-item:hover {
    transform: translateY(-2px);
}

#sss-accordion-area .accordion-button {
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    position: relative;
}

#sss-accordion-area .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #4a90e2;
    box-shadow: none;
}

#sss-accordion-area .accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
    outline: none !important;
}

#sss-accordion-area .accordion-button::after {
    background-image: none;
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #4a90e2;
    border-bottom: 2px solid #4a90e2;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

#sss-accordion-area .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
}

#sss-accordion-area .accordion-body {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

#sss-accordion-area i {
    color: #4a90e2;
    margin-top: 3px;
    margin-right: 0.75rem;
    font-size: 16px;
}

/* soru alanı index sonu */


/* solutions.html sayfası */
.breadcrumb-area-solutions {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1974b6 0%, #2a5f8f 100%);
    height: auto;
    padding: 35px 0;
    color: #fff;
}

.breadcrumb-area-solutions .breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.12) 0%, transparent 30%);
    z-index: 0;
}

.breadcrumb-area-solutions .breadcrumb-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: breadcrumbGridMove 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.breadcrumb-area-solutions h1 {
    font-family: "Exo 2", sans-serif !important;
    font-weight: bold;
    text-align: center;
}

.breadcrumb-area-solutions p {
    text-align: center;
}


.kobi3-solutions {
    background: #fff;
    padding: 40px 0 10px;
}

.kobi3-solutions .solution-hero {
    border-radius: 20px;
    padding: 32px;
    will-change: clip-path, opacity, transform;
}

.kobi3-solutions .solution-hero .row {
    align-items: center;
}

.anchor-target {
    scroll-margin-top: 120px;
}

#solution-img-area {
    position: relative;
    overflow: hidden;
}

#solution-img-area h1 {
    font-family: "Exo 2", sans-serif !important;
    text-align: center;
    font-weight: bold;
}

#solution-img-area::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(53, 122, 189, 0.05));
    border-radius: 50%;
    z-index: 0;
}

#solution-img-area .container {
    position: relative;
    z-index: 1;
}

#solution-img-area .mockup-img-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kobi3-solutions .solution-title {
    font-family: "Exo 2", sans-serif !important;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.kobi3-solutions .solution-title span {
    background: linear-gradient(90deg, #1974b6, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kobi3-solutions .solution-lead {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 14px;
}

.kobi3-solutions .solution-bullets {
    margin: 0;
    padding-left: 1.1rem;
    color: #48556a;
}

.kobi3-solutions .solution-bullets li {
    margin-bottom: 8px;
}

.kobi3-solutions .solution-img-area {
    width: 100%;

}

.kobi3-solutions .solution-img-area img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 1px solid black;
}

.features-standard {
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(25, 116, 182, .06), transparent 60%),
        radial-gradient(1200px 600px at 90% 110%, rgba(19, 60, 98, .06), transparent 60%),
        #f6f9fc;
}

.features-standard .fs-heading {
    font-weight: 800;
    font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
    color: #133c62;
    text-align: center;
}

.features-standard .fs-heading .fs-accent {
    color: #1974b6;
}

.features-standard .fs-sub {
    text-align: center;
    color: #607089;
}

.features-standard .fs-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e7eef6;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
    transition: transform 0.3s ease;
}

.features-standard .fs-item:hover {
    transform: translateY(-4px);
}

.fs-item+.fs-item {
    margin-top: .75rem;
}

.features-standard .fs-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: #1974b6;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    transition: 0.2s ease;
}

.features-standard .fs-item:hover .fs-icon {
    background-color: #133c62;
}

.features-standard .fs-text {
    font-weight: 600;
    color: #2b2f33;
}

/* solutions.html sayfası sonu */


/* packages.html sayfası */

.packages-main {
    background-image: url('../images/packages-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
}

.packages-breadcrumb {
    text-align: center;
}

.packages-breadcrumb h1 {
    position: relative;
    overflow: hidden;

    background: linear-gradient(160deg, #0e2239 0%, #133c62 55%, #1974b6 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.packages-breadcrumb p {
    font-size: 20px;
}

.form-switch .form-check-input {
    width: 70px;
    height: 30px;

}


.form-check-input {
    width: 3rem;
    height: 1.6rem;
    cursor: pointer;
    box-shadow: none !important;
    outline: none !important;
}

.form-check-input:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: transparent !important;
}

.form-check-input:checked{
    background-color:#133c62;
    border-color:#133c62;
}

.switch-text {
    font-size: 20px;
    font-weight: bold;
}

.tab-container .nav-tabs {
    justify-content: center;
    display: none !important;
}

.tab-container .tab-pane {
    transition: none !important;
}

.tab-container .tab-pane.fade {
    transition: none !important;
}

.pricing-slider  .owl-item {
    opacity: 0.7;
    transform: scale(0.9);
}

.pricing-slider .pricing-card {
    height: 100%;
    border: 1px solid #e6e9ef;
    border-radius: 10px;
    padding: 1.25rem;
    background: #ffffff;
    height: 100%;
    position: relative;
    transition: .2s ease;
}

.pricing-slider .pricing-card h4 {
    color: #4a90e2;
    font-weight: bold;
}

.pricing-slider .pricing-card .pricing-area {
    display: flex;
    align-items: baseline;
}

.pricing-slider .price {
    font-size: 2rem;
    font-weight: 800;
    color: #0e2239;
}

.pricing-slider .pricing-card .per {
    font-size: 1rem;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
}

.pricing-slider .pricing-card-line {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg,
            rgba(25, 116, 182, 0.4),
            rgba(74, 144, 226, 0.25),
            rgba(255, 255, 255, 0.6));
    margin-bottom: 14px;
}

.pricing-slider .feat-list li {
    font-size: 14px;
    margin-bottom: .35rem;
}

.pricing-slider .pricing-card .btn-dark {
    background-color: #133c62;
    border-color: #133c62;
}

.pricing-slider .pricing-card .btn-dark:hover {
    background-color: #1974b6;
    border-color: #1974b6;
}


.pricing-slider .pricing-card .badge {
    position: absolute;
    top: -30px;
    right: 0;
    margin: 1rem;
    font-size: 14px;
    background-color: #4a90e2;
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 1rem;
}

.pricing-slider .pricing-card-line--dark {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.75),
            rgba(74, 144, 226, 0.45),
            color-mix(in srgb, #1974b6 20%, transparent));
    margin-bottom: 14px;
}

.pricing-slider .pricing-card.featured {
    position: relative;
    background: linear-gradient(160deg, #0e2239 0%, #133c62 55%, #1974b6 120%);
    color: #fff;
    border-color: transparent;
}

.pricing-slider .featured .price {
    color: #fff;
}

.pricing-slider .featured .per {
    color: #d3e2f5;
}

.pricing-slider .pricing-card.featured .btn-light {
    background-color: #fff;
    color: #0e2239;
    border-color: transparent;
}

.pricing-slider .pricing-card.featured .btn-light:hover {
    background-color: #f0f4f8;
    color: #0e2239;
    border-color: transparent;
}

.pricing-slider .owl-stage-outer {
    overflow: visible !important;
    padding-top: 24px;
}

.pricing-slider .owl-item.active.center {
    transform: translateY(-20px) scale(1);
    opacity: 1;
    z-index: 2;
}

.pricing-slider.owl-carousel .owl-nav button.owl-next,
.pricing-slider .owl-nav button.owl-next {
    background-color: #fff !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    color: #133c62 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.pricing-slider.owl-carousel .owl-nav button.owl-prev,
.pricing-slider .owl-nav button.owl-prev {
    background-color: #fff !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    color: #133c62 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.pricing-slider .owl-nav .owl-prev,
.pricing-slider .owl-nav .owl-next {
    color: #133c62 !important;
    pointer-events: all;
    border: none !important;
    cursor: pointer;
    padding: 0 20px !important;
}

.pricing-slider .owl-nav .owl-prev:hover,
.pricing-slider .owl-nav .owl-next:hover {
    color: #1974b6 !important;
}


.pricing-slider .owl-item {
    opacity: 0.7;
    transform: scale(0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pricing-slider .owl-item.active.center {
    transform: translateY(-20px) scale(1);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pricing-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

.pricing-slider .owl-nav .owl-prev,
.pricing-slider .owl-nav .owl-next {
    color: #133c62 !important;
    pointer-events: all;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    font-size: 2rem !important;
    padding: 0 20px !important;
}

/* packages.html alt kart alanı */

#packages-detail-area .update-subscription {
    border: 1px solid rgba(25, 116, 182, .25);
    border-radius: 16px;
    padding: 28px;

}

.update-subscription .us-title {
    font-weight: 800;
    margin-bottom: .5rem;
    color: #0e2239;
}

.update-subscription .us-lead {
    color: #2b2f33;
    margin-bottom: 1rem;
}

.update-subscription li {
    margin-bottom: 10px;
}

.update-subscription li i {
    margin-right: 4px;
}

.us-list .filled-check {
    background: #4a90e2;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.us-list .filled-check i {
    color: #fff;
}

.update-subscription .us-list i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #133c62;
    color: #fff;
    font-size: .9rem;
    margin-top: .2rem;
}

.update-subscription .us-list li:last-child {
    border-bottom: none;
}

.update-subscription .us-footnote {
    font-size: .9rem;
    color: #6c7a89;
}

/* packages.html sayfası sonu*/

/* about-us.html sayfası */

#about-us-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: #fff;

    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1974b6 0%, #2a5f8f 100%);
    padding: 40px 0;
}

#about-us-breadcrumb .breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.12) 0%, transparent 30%);
    z-index: 0;
}

#about-us-breadcrumb .breadcrumb-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: breadcrumbGridMove 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}


#about-us-breadcrumb h1,
#about-us-breadcrumb p,
.section-title,
.section-subtitle,
.story-card,
#about-us-why-kobi3 .content-title,
#about-us-why-kobi3 .content-text {
    opacity: 0;
    transform: translateY(30px);
}

#about-us-breadcrumb h1 {
    font-weight: bold;
}

.vision-mision-area {
    background: linear-gradient(135deg, #133c62 0%, #1e293b 100%);
}

.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1974b6, #4a90e2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(25, 116, 182, 0.3);
}

.about-card .card-title {
    color: #4a90e2;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card .card-text {
    color: #e9eef6;
    line-height: 1.6;
    font-size: 1rem;
}


.our-story-area {
    background: rgba(74, 144, 226, 0.05);
}

.our-story-area .row {
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1974b6, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.our-story-area .story-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.our-story-area .story-title {
    color: #4a90e2;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.our-story-area .story-text {
    color: #343a40;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.our-story-area .story-text:last-child {
    margin-bottom: 0;
}

#about-us-why-kobi3 {
    background: linear-gradient(135deg, #133c62 0%, #1e293b 100%);
}

#about-us-why-kobi3 .row {
    justify-content: center;
    text-align: center;
}

.content-title {
    background: linear-gradient(90deg, #1974b6, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-text {
    text-align: justify;
    color: #fff !important;
}

.content-text:last-child {
    margin-bottom: 0;
}

/* about-us.html sayfası sonu */


/* contact.html sayfası */

.breadcrumb-area-contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1974b6 0%, #2a5f8f 100%);
    height: auto;
    padding: 35px 0;
}

.breadcrumb-area-contact .breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.12) 0%, transparent 30%);
    z-index: 0;
}

.breadcrumb-area-contact .breadcrumb-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: breadcrumbGridMove 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.breadcrumb-area-contact .container {
    z-index: 1;
}

.breadcrumb-area-contact .row {
    justify-content: center;
}

.breadcrumb-area-contact h1 {
    color: #fff;
    font-weight: 700;
}

.breadcrumb-area-contact h2 {
    color: #fff;
}

.contact-container {
    position: relative;
    width: 100%;
}

.contact-map-wrapper {
    position: relative;
    width: 100%;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 320px;
    border: none !important;
    display: block;
    vertical-align: top;
}

.contact-form-overlay {
    position: absolute;
    top: 280px;
    right: 100px;
    transform: translateY(-50%);
    z-index: 10;
    width: 450px;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 2rem;
    margin-bottom: 41px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.contact-form-card .form-title {
    color: #2b2f33;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

#contact-area .contact-form-card .form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

#contact-area .contact-form-card .form-control {
    background: transparent;
    border: 1px solid #aaa;
    color: black;
    border-radius: 5px;
}

@media (max-width: 1200px) {
    #contact-area .contact-form-card .form-control {
        border: 1px solid #133c62;
    }

    .demo-card .form-control{
        border: 1px solid #133c62;
    }

}

#contact-area .contact-form-card .form-control:focus {
    border-color: #1974b6;
    background: transparent;
    color: black;
}

#contact-area .contact-form-card .form-control+label {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: #aaa;
    border-radius: 10px;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 5;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 4px;
}

#contact-area .contact-form-card .your-message-area .form-control+label {
    position: absolute;
    top: 20%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: #aaa;
    border-radius: 10px;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 5;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 4px;
}


#contact-area .contact-form-card .form-check .form-check-label {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    background: transparent;
    padding: 0;
    pointer-events: auto;
    z-index: auto;
    font-size: 1rem;
    color: inherit;
}


#contact-area .contact-form-card .form-control:focus+label,
#contact-area .contact-form-card .form-control:not(:placeholder-shown)+label {
    top: -0.6rem;
    font-size: 0.75rem;
    color: #4a90e2;
    transform: none;
}


#contact-area .contact-form-card textarea+label {
    position: absolute;
    top: 10px;
    left: 0.75rem;
    transform: none;
    color: #aaa;
    border-radius: 10px;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 5;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 4px;
}

#contact-area .contact-form-card textarea:focus+label,
#contact-area .contact-form-card textarea:not(:placeholder-shown)+label {
    top: -0.6rem;
    font-size: 0.75rem;
    color: #4a90e2;
    transform: none;
}

#contact-area .contact-form-card .kvkk-area {
    font-size: 14px;

}


#contact-area .contact-form-card .form-control:focus {
    box-shadow: none !important;
}

#contact-area .form-check-input {
    box-shadow: none !important;
    margin-right: 3px;
    margin-bottom: 4px;
    border-color: #133c62;
}

#contact-area .form-check-input:checked {
    background-color: #1974b6;
    border-color: #1974b6;
}

#contact-area .form-check-input:focus {
    border-color: #1974b6;
}

#contact-area .form-check-input:indeterminate {
    background-color: #1974b6;
    border-color: #1974b6;
}

/* KVKK checkbox: decouple from global .form-check-input sizing */
#contact-area .kvkk-area .kvkk-checkbox {
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 6px;
}

/* KVKK checkbox: always show a visible border in all states */
#contact-area .kvkk-area .kvkk-checkbox,
#contact-area .kvkk-area .kvkk-checkbox:checked,
#contact-area .kvkk-area .kvkk-checkbox:indeterminate {
    border: 2px solid #133c62;
}

#contact-area .kvkk-area .kvkk-checkbox:focus,
#contact-area .kvkk-area .kvkk-checkbox:active {
    border-color: #133c62 !important;
    box-shadow: none !important;
    outline: none !important;
}

.contact-form-overlay .btn-send {
    background-color: #133c62;
    color: #fff !important;
    padding: 7px 18px;
    font-size: 16px;
    border: 2px solid #133c62;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-overlay .btn-send:hover {
    background-color: #4a90e2;
    color: #fff !important;
    border: 2px solid #4a90e2;
}

#contact-info {
    background: linear-gradient(135deg, #133c62 0%, #1e293b 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 0;
    color: #e9eef6;
}

#contact-info .ci-title {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

#contact-info .margin-32 {
    margin-top: 32px;
}

#contact-info .ci-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.02));
    margin-bottom: 14px;
}

#contact-info .ci-text {
    color: #c9d3e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

#contact-info .ci-text i {
    color: #4a90e2;
}

#contact-info .ci-link {
    color: #c9d3e1;
    text-decoration: none;
}


/* contact.html sayfası sonu */

/* demo sayfası */

.breadcrumb-area-demo .breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.10) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.12) 0%, transparent 30%);
    z-index: 0;
}

.breadcrumb-area-demo .breadcrumb-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: breadcrumbGridMove 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.breadcrumb-area-demo .container {
    position: relative;
    z-index: 1;
}

.breadcrumb-area-demo {
    background: linear-gradient(135deg, #133c62 0%, #1e293b 100%);
    color: #fff;
    height: auto;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-area-demo .row {
    justify-content: center;
}

#demo-area .demo-subscription {
    border: 1px solid rgba(25, 116, 182, .25);
    border-radius: 16px;
    padding: 28px;
}

#demo-area .demo-subscription .us-title {
    font-weight: 800;
    margin-bottom: .5rem;
    color: #0e2239;
}

#demo-area .demo-subscription .us-lead {
    color: #2b2f33;
    margin-bottom: 1rem;
}

#demo-area .demo-subscription li {
    margin-bottom: 0px;
}

#demo-area .demo-subscription li i {
    margin-right: 4px;
}

#demo-area .us-list .filled-check {
    background: transparent;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;

    color: #0e2239;
}

#demo-area .us-list .filled-check i {
    color: #fff;
}

#demo-area .demo-subscription .us-list i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #133c62;
    color: #fff;
    font-size: .9rem;
    margin-top: .2rem;
}

#demo-area .demo-subscription .us-list li:last-child {
    border-bottom: none;
}



.demo-section {
    padding: 60px 0;
}

.demo-section .row {
    align-items: start;
}

.demo-section h4 {
    font-weight: bold;
}

.demo-bullets {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 0;
}

.demo-bullets li {
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 0.95rem;
    color: #133c62;
}

.demo-bullets .mega-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background-color: #133c62;
    color: #fff;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.demo-card {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.demo-card .card-body {
    padding: 28px;
}

.demo-card h5 {
    font-weight: bold;
}

.demo-card .form-control:focus {
    box-shadow: none !important;
}

.demo-card .input-group-text i {
    width: 18px;
    text-align: center;
}

.demo-card .form-note {
    font-size: .9rem;
    color: #6c757d;
}

.demo-card .form-control {
    padding: 12px !important;
}

.demo-card .form-control::placeholder {
    text-indent: 24px;
    font-size: 16px;
    padding-left: 4px;
}

.demo-card .input-icon {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    font-size: 16px;
    padding-left: 4px;
}


.position-relative .input-icon {
    transition: opacity 0.1s ease;
}

.position-relative input:not(:placeholder-shown)~.input-icon {
    opacity: 0;
}

.link-kvkk {
    color: #4a90e2;
    text-decoration: underline;
}

#frmDemoFormAdd .btn-send {
    background-color: #133c62;
    color: #fff !important;
    padding: 7px 18px;
    font-size: 16px;
    border: 2px solid #133c62;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#frmDemoFormAdd .btn-send:hover {
    background-color: #4a90e2;
    color: #fff !important;
    border: 2px solid #4a90e2;
}

/* demo sayfası sonu */


/* yasal bilgilendirme sayfaları */

/* solutions.html sayfası */
.pages-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1974b6 0%, #2a5f8f 100%);
    height: auto;
    padding: 35px 0;
    color: #fff;
}

.pages-breadcrumb .breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.12) 0%, transparent 30%);
    z-index: 0;
}

.pages-breadcrumb .breadcrumb-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: breadcrumbGridMove 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 575.98px) {
    .anchor-target {
        scroll-margin-top: 70px;
    }

    .fs-text {
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .contact-form-overlay {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 2rem;
        padding: 0 15px;
    }

    .contact-form-card {
        margin: 0;
        padding: 1.5rem;
    }

    .pricing-slider .owl-item.active.center {
        transform: translateY(-10px) scale(1);
    }

    .pricing-slider .owl-nav .owl-prev,
    .pricing-slider .owl-nav .owl-next {
        font-size: 30px !important;
        padding: 0 10px !important;
    }

}

@media (max-width: 991.98px) {

    .anchor-target {
        scroll-margin-top: 90px;
    }

    .sss-info-card {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 400px;
        margin-bottom: 24px;
    }

    .sss-info-card h3 {
        text-align: center !important;
    }

    .sss-img {
        width: 100%;
        left: 0;
        top: 0;
        height: 100%;
    }

    .sss-info-card::after {
        width: 100%;
        left: 0;
        top: 0;
        height: 100%;
    }

    .sss-info-card .sss-banner {
        padding: 24px;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;

        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center !important;
    }

    .sss-info-card .button-text-start {
        text-align: center !important;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .sss-info-card .btn-another-question {
        margin-left: 0 !important;
    }

    #sss-accordion .sss-mini-header-top,
    #sss-accordion .sss-mini-header-bottom {
        text-align: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Hero image scaling for <= 992px */
    #hero-area img {
        width: 80%;
        padding-top: 24px;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

}

/* Hero image scaling for <= 768px */
@media (max-width: 767.98px) {
    #hero-area img {
        padding-top: 24px;
        width: 70%;
    }

}

@media (max-width: 1200px) {

    /* HERO */
    #hero-area,
    #hero-area h1,
    #hero-area p,
    #hero-area .btn,
    #hero-area .col-xl-6 {
        text-align: center !important;
    }

    #hero-area {
        padding: 70px 0;
    }

    #hero-area img {
        width: 80%;
        padding-top: 24px;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #hero-area h1 {
        font-size: 50px !important;
        line-height: 1.3;
    }

    #hero-area .btn {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }

    /* ABOUT */
    #about-area,
    #about-area h1,
    #about-area .about-text h3,
    #about-area .about-text p,
    #about-area .col-xl-8,
    #about-area .col-xl-4,
    #about-area .about-content,
    #about-area .about-text,
    #about-area .features-cards {
        text-align: center !important;
    }

    #about-area .feature-card h4,
    #about-area .feature-card p,
    #about-area .feature-content {
        text-align: left !important;
    }

    #about-area .about-text {
        padding-bottom: 20px !important;
    }

    /* SSS kartları (992–1200 için) */
    .sss-info-card {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 400px;
        margin-bottom: 24px;
    }

    .sss-info-card h3 {
        text-align: center !important;
    }

    .sss-img,
    .sss-info-card::after {
        width: 100%;
        left: 0;
        top: 0;
        height: 100%;
    }

    .sss-info-card .sss-banner {
        padding: 24px;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .sss-info-card .button-text-start {
        text-align: center !important;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .sss-info-card .btn-another-question {
        margin-left: 0 !important;
    }

    /* Demo & Contact */
    .about-card {
        padding: 2rem;
    }

    .about-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    #demo-area h4,
    #demo-area .demo-bullets {
        text-align: center !important;
        justify-content: center;
    }


    #contact-info.contact-info-section {
        padding: 28px 0;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
    }

    .contact-form-overlay {
        position: static !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        padding-bottom: 0 !important;
        order: 1;
    }

    .contact-map-wrapper {
        order: 2;
    }

    .contact-form-card {
        box-shadow: none !important;
        border: none !important;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    #contact-area iframe {
        height: 250px;
    }

    #contact-info .row {
        text-align: center;
    }

    #contact-info .col-xl-3,
    #contact-info .col-xl-4 {
        margin-bottom: 30px;
    }

    .kobi3-solutions .solution-img-area {
        margin-top: 16px !important;
    }

    .kobi3-solutions .solution-hero {
        padding: 0 16px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1280px) {
    .contact-form-overlay {
        right: 30px;
    }

}


@media (max-width: 1400px) and (min-width: 1199px) {
    br {
        display: block;
    }


    .sss-info-card .sss-banner {
        padding-top: 0 !important;
    }

    .sss-info-card .btn-another-question {
        margin-left: 0px !important;
    }


    #sss-accordion .sss-mini-header-bottom {
        padding-left: 0px;
    }

}

@media not all and (max-width: 1400px) and (min-width: 1199px) {
    #sss-accordion br {
        display: none;
    }

}

@media (max-width: 1400px) {
    #mockup-area img {
        width: 100%;
        height: auto;
    }

    #sss-accordion .sss-mini-header-top {
        color: white !important;
    }

    #sss-accordion .sss-mini-header-top span {
        color: white;
    }


    #sss-accordion .sss-mini-header-bottom span {
        color: white;
    }

}

/* SweetAlert Custom Modal Styles */
.custom-swal-modal {
    width: 750px !important;
    max-height: 500px !important;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
    padding: 0;
}

.custom-swal-html {
    padding: 15px;
    overflow-y: auto;
    height: 400px;
}

.custom-swal-html h1 {
    font-size: 11pt;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.custom-swal-html h2 {
    font-size: 10pt;
    margin-top: 10px;
    font-weight: bold;
    text-align: left;
}

.custom-swal-html p {
    font-size: 9pt;
    line-height: 1.4;
    text-align: left;
}

.swal2-actions {
    padding: 10px;
    margin-top: 5px;
}