/* Global Styles */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');
:root {
    --primary-color: #0068b7;
    --primary: #0068b7;
    --secondary-color: #ff7c13;
    --dark-blue: #072032;
    --light-blue: #e7f5ff;
    --text-color: #2b3033;
    --medium-text-color: #374852;
    --light-text-color: #708591;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --primary-blue: #0066cc;
    --primary-orange: #f68f3c;
    --dark-blue: #001f3f;
    --white-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Note: Beatrice Trial font would need to be properly licensed and included */

@font-face {
    font-family: 'Beatrice Trial';
    src: url('/assets/fonts/Beatrice_Trial_fonts/BeatriceTRIAL-Light-BF64829e8b17e87.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Beatrice Trial';
    src: url('/assets/fonts/Beatrice_Trial_fonts/BeatriceTRIAL-Medium-BF64829e8ac35f2.woff') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Beatrice Trial';
    src: url('/assets/fonts/Beatrice_Trial_fonts/BeatriceTRIAL-Semibold-BF64829e8a9fb34.woff') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Beatrice Trial';
    src: url('/assets/fonts/Beatrice_Trial_fonts/BeatriceTRIAL-Extrabold-BF64829e8b6b9f2.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}


/* Custom styles */

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Beatrice Trial', sans-serif, Arial;
    font-weight: 500;
}

p {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    color: var(--medium-text-color);
}

.text-color {
    color: var(--text-color);
}

.text-color-50 {
    color: #ffffff80 !important;
}

.text-left {
    text-align: left;
}

.bold {
    font-weight: 700;
}

.swiper-button-next,
.swiper-button-prev {
    background: white;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #072032 !important;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    color: #072032 !important;
}

.slider .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    top: 40%;
}

.slider .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    top: 40%;
}


/* home page */


/* Hero Section */

.hero-section {
    background: url('/assets/images/home/hero-section/hero-section-bg.svg') no-repeat center center/cover;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    margin-top: 86px;
}

.hero-section h4 {
    padding-top: 12px;
    padding-right: 14px;
    padding-bottom: 12px;
    padding-left: 14px;
    gap: 10px;
    border-radius: 8px;
    background: var(--white-color);
    width: fit-content;
    font-size: 20px;
}

.hero-section h1 {
    font-size: 86px;
}

.hero-section p {
    line-height: 42.07px;
    letter-spacing: 0;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: var(--white-color);
    border: none;
    font-weight: 500;
    box-shadow: 0px 4px 20px 0px #f68f3c3d;
    font-size: 20px;
}

.btn-orange:hover {
    background-color: #e56e00;
    border-color: #e56e00;
    color: var(--white-color);
}

.btn-orange-border {
    background: transparent !important;
    border: 1px solid #ff7f40 !important;
    color: #ff7f40 !important;
    box-shadow: none !important;
}

.navbar-brand img {
    height: 50px;
}

.frame-users h5 {
    font-size: 44px;
    font-weight: 500;
}

/* Top border for the whole box */
/* .frame-users {
    border-top: 1px solid #e0e0e0;
    padding-top: 24px;
    position: relative;
    display: flex;
    align-items: flex-start;
    width: 80%;
}

.frame-users > div:not(:first-child) {
    border-left: none;
    padding-left: 32px;
    margin-left: 32px;
    position: relative;
}

.frame-users > div:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 145px; 
    width: 1px;
    background: #e0e0e0;
    transform: translateY(-24px); 
}


@media (max-width: 991.98px) {
  .frame-users {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 16px;
  }
  .frame-users > div:not(:first-child) {
    border-left: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .frame-users > div:not(:first-child)::before {
    display: none !important;
  }
}

@media (max-width: 1400px) {
  .frame-users {
    width: 100%;
  }
} */

.trusted-by h6 {
    font-size: 24px;
    font-weight: 500;
    color: #5a7582;
}

.resolve-disputes {
    background-color: #072032;
    gap: 67.08px;
    padding-top: 70px;
    padding-bottom: 60px;
    border-radius: 20.25px;
}

.resolve-disputes p {
    line-height: 32.36px;
    color: #c6d0d6;
}

.resolve-disputes .min-ht {
    min-height: 126px;
}

.resolve-disputes h2 {
    font-size: 56px;
    font-weight: 500;
}

.resolve-disputes h3 {
    font-size: 40px;
}

.resolve-disputes h4 {
    font-size: 24px;
    margin-bottom: 0;
}

.try-free-btn {
    background: transparent !important;
    border: 1px solid #ffffff !important;
}

.dispute-card {
    background-color: #10293a;
    border-radius: 20.25px;
    transition: all 0.3s ease;
    height: 100%;
}

.dispute-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.dispute-pagination {
    position: relative;
    text-align: center;
    bottom: 72px !important;
}

.dispute-swiper {
    padding: 20px 0;
}

.dispute-swiper .swiper-wrapper {
    padding: 20px 0;
}

.dispute-swiper .swiper-slide {
    width: 33.33%;
    height: auto;
}

.row.mx-3.align-items-center {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.row.mx-3.align-items-center:not(.d-none) {
    opacity: 1;
    transform: translateY(0);
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #10293a !important;
    opacity: 1 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.swiper-pagination-bullet:first-child {
    border-top-left-radius: 126.56px !important;
    border-bottom-left-radius: 126.56px !important;
}

.swiper-pagination-bullet:last-child {
    border-top-right-radius: 126.56px !important;
    border-bottom-right-radius: 126.56px !important;
}

.swiper-pagination-bullet-active {
    background: #3e6681 !important;
    width: 30px !important;
}


/* why-choose */

.why-choose {
    background: url('/assets/images/home/why-choose/bg-img.svg') no-repeat center center/cover;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.why-choose h2 {
    font-weight: 500;
    font-size: 72px;
    letter-spacing: 0px;
    text-align: center;
}

.why-choose p {
    letter-spacing: 0px;
    text-align: center;
    width: 70%;
    margin: auto;
}

.faq-image img {
    max-height: 80vh;
}

.accordion-item {
    border-width: 1px !important;
    border-radius: 20.25px !important;
    border: 1px solid #dde0e2 !important;
    background-color: transparent;
}

.accordion-header {
    font-size: 28px !important;
}

.accordion-body {
    font-size: 20px;
    color: #5d707a;
    padding-top: 0;
}

.accordion-button {
    background-color: transparent;
    font-size: 20px;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--text-color);
}

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


/* journey-section  */

.journey-section {
    background-color: #eff8ff;
    text-align: center;
}

.journey-section .text-subtitle {
    font-weight: 400;
    font-size: 24px;
}

.journey-section h2 {
    font-size: 56px;
}

.journey-section .lead {
    width: 70%;
    margin: auto;
}

/* .process-steps {
    position: relative;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-step h5 {
    font-size: 36px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
} */

.process-steps {
            position: relative;
            margin-top: 50px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 15px;
        }
        
        .process-step h5 {
            font-size: 36px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        
        .process-step p {
            font-size: 16px;
            color: #666;
            line-height: 1.5;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            background-color: #fff;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .step-icon svg {
            width: 40px;
            height: 40px;
        }
        
        /* Image-based dotted connecting lines */
        .dotted-line-image {
            position: absolute;
            top: 30px;
            right: -26%;
            width: 55%;
            height: auto;
            z-index: 1;
            
        }

        .dotted-line-image2 {
            position: absolute;
            top: 0px;
            right: -26%;
            width: 55%;
            height: auto;
            z-index: 1;
            
        }
        
        .get-started-btn {
            background-color: #ff6b35;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 600;
            margin-top: 40px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .get-started-btn:hover {
            background-color: #e55a2b;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .dotted-line-image {
                display: none !important;
            }
            .dotted-line-image2 {
                display: none !important;
            }
            
            .process-step h5 {
                font-size: 28px;
            }
            
            .hero-section h1 {
                font-size: 36px;
            }
        }


/* ai-section */

.ai-section {
    background: url('/assets/images/home/copilot/copilot_bg_image.svg') no-repeat center center / cover;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    position: relative;
    padding: 80px 0;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.ai-section .container {
    position: relative;
    z-index: 2;
}

.ai-section h2 {
    font-weight: 600;
    font-size: 64px;
}


/* enterprise-section */

.enterprise-section h2 {
    font-weight: 600;
    font-size: 52px;
}

.enterprise-section {
    padding: 70px 0;
}

.feature-section {
    background: #072032;
    text-align: center;
    color: var(--white-color);
    border-radius: 32px;
    padding: 40px 8px;
}

.feature-section h5 {
    font-weight: 500;
    font-size: 26px;
}

.feature-section p {
    color: #c6d0d6;
    min-height: 126px;
}

.feature-section a {
    color: var(--white-color);
}


/* marketplace-section */

.marketplace-section {
    padding: 70px 0;
    background: url('/assets/images/home/digital-adr/bg-img.svg') no-repeat center center/cover;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    position: relative;
}

.marketplace-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.marketplace-section .container {
    position: relative;
    z-index: 2;
}

.marketplace-section h2 {
    font-size: 48px;
}

.feature-body {
    padding: 20px;
    text-align: center;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.marketplace-section {
    padding: 70px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.testimonial-section {
    padding: 70px 0;
}

.testimonial-section .badge {
    gap: 10px;
    border-radius: 100px;
    border: 1px solid var(--primary-orange);
    background: #fff2ee;
    color: #ff845d;
}

.testimonial-section .client-count {
    font-size: 20px;
    font-weight: 500;
}

.testimonial-section .client-count span {
    text-decoration: underline;
}

.testimonial-section h2 {
    font-size: 64px;
    font-weight: 600;
}

.testimonial-section h2 span {
    text-decoration: underline;
    color: var(--primary-orange);
}

.digital-adr {
    color: var(--primary-color);
    font-weight: 500;
}


/* testimonials */

.home-testimonials-section {
    padding: 80px 0px;
}

.home-testimonials-section h5 {
    font-size: 32px;
}

.testimonial-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.testimonial-bg img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 460px;
}

.home-testimonials-section {
    position: relative;
    z-index: 1;
}

.home-testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-section {
    background: url('/assets/images/online-adr/user_feedback_bg.svg') no-repeat center center/cover;
    width: 100%;
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.home-testimonials-section .container {
    position: relative;
    z-index: 2;
}

.home-testimonials-section .title {
    font-size: 48px;
}

.home-testimonials-section p {
    line-height: 32px;
}

.home-testimonials-section .carousel-control-prev {
    left: -8%;
}

.home-testimonials-section .carousel-control-next {
    right: -8%;
}

.home-testimonials-section .testimonial-card {
    background: #f9f9fc;
}

.why-jupitice .home-testimonials-section .testimonial-text {
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    color: var(--medium-text-color);
    font-style: italic;
}

.why-jupitice .home-testimonials-section h5 {
    font-size: 28px;
}


/* Consultation */

.gradient-bg {
    background: url('/assets/images/consultation/consultation_bg.svg') no-repeat center center/cover;
    height: 150vh;
    width: 100%;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    color: var(--text-color);
    position: relative;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.gradient-bg .section-container {
    position: relative;
    z-index: 2;
    margin-top: 86px;
}

.form-container {
    background-color: var(--white-color);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid #c6d0d6;
}


/* ----------------------- */
.dotted-line-connection {
          position: sticky;
    top: 50%;
    right: 0%;
    z-index: 1;
    transform: translateY(-50%);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .dotted-line-connection {
                display: none !important;
            }
            
            .conection .col-md-4 {
                justify-content: center !important;
                text-align: center !important;
            }
        }

/* --------------------- */

.gradient-bg h1 {
    font-weight: 500;
    font-size: 82px;
}

.dark-section {
    background: url('/assets/images/consultation/connect_bg.svg') no-repeat center center/cover;
    height: 100%;
    color: var(--white-color);
    padding: 5rem 0;
    border-radius: 20px;
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.dark-section .container {
    position: relative;
    z-index: 2;
}

.dark-section .feature-card {
    background-color: #10293a;
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    transition: transform 0.3s;
}

.dark-section .feature-card:hover {
    transform: translateY(-5px);
}

.dark-section h2 {
    font-size: 52px;
    font-weight: 500;
}

.dark-section h4 {
    font-size: 26px;
    font-weight: 500;
}

.dark-section p {
    color: #c6d0d6;
}

.form-check-input:checked {
    background-color: #2591d0;
    border-color: #2591d0;
}

.form-check-input[type='checkbox']:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

label {
    color: var(--medium-text-color);
}

.file-upload-container {
    max-width: 1000px;
    margin: 30px auto;
}

.file-upload-area {
    border: 2px dashed #c6d0d6;
    border-radius: 8px;
    padding: 60px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.file-upload-area:hover {
    border-color: #aaa;
    background-color: #f9f9f9;
}

.file-upload-area.drag-over {
    border-color: #007bff;
    background-color: #f0f7ff;
}

.file-upload-text {
    margin: 0;
}

.file-upload-link {
    color: #2591d0;
    text-decoration: none;
    cursor: pointer;
}

.file-upload-link:hover {
    text-decoration: underline;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-list {
    margin-top: 20px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.file-name {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;
}

.file-size {
    color: #666;
    font-size: 14px;
    margin-right: 10px;
}

.remove-file {
    color: #dc3545;
    cursor: pointer;
    padding: 0 10px;
}

.legal-guidance h2 {
    font-weight: 500;
    font-size: 64px;
    letter-spacing: 0px;
}

.legal-guidance .legal-guidance-card {
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #cddfed;
}

.legal-guidance .legal-guidance-card h4 {
    font-size: 22px;
}

.legal-guidance .legal-guidance-card p {
    font-size: 16px;
}

.how-it-work-section {
    background-color: #eff8ff;
    padding: 80px 0px;
}

.how-it-work-section .badge {
    background: #dbf2ff;
    width: fit-content;
    margin: auto;
    padding: 6px 14px;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.how-it-work-section h2 {
    font-size: 62px;
}

.how-it-work-section .conection {
    border: 1px solid #bfdaef;
    padding: 24px;
    border-radius: 16px;
}

.how-it-work-section .conection p {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-color);
    text-align: start;
    line-height: 28px;
    margin-bottom: 0;
}

.adr-section-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.adr-section .badge {
    background-color: #caf6e0;
    width: fit-content;
    margin: auto;
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 20px;
}

.adr-section h2 {
    font-size: 62px;
}

.submit-btn {
    background-color: var(--primary-orange);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 20px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #e67e3a;
}


/* why jupitice */

.badge-ai {
    background: linear-gradient( 90deg, rgba(246, 143, 60, 0.4) 0%, rgba(76, 255, 222, 0.4) 43%, rgba(76, 201, 240, 0.4) 100%);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 20px;
}

.user-count-card {
    border-radius: 20px;
    padding: 24px;
    background-color: var(--white-color);
}

.user-counts {
    font-weight: 600;
    text-decoration: underline;
}

.user-count h4 {
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
}

.btn-get-started {
    background-color: var(--primary-orange);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #ff5a1f;
    transform: translateY(-2px);
}


/* Advisory Board Section */

.advisory-section {
    padding: 80px 0;
    background-color: white;
}

.advisory-section h2 {
    font-size: 52px;
}

.advisor-card {
    text-align: center;
    padding: 20px 20px 40px 20px;
}

.advisor-image {
    width: 100%;
    height: 420px;
    border-radius: 25%;
    margin-bottom: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.advisor-image:hover {
    transform: translateY(-5px);
}

.advisor-name {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0 5px;
}

.advisor-role {
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Stats Section */

.why-jupitice .stats-section {
    padding-top: 0px;
}

.why-jupitice .stat-item {
    max-width: 25%;
}

.why-jupitice .stats-section h2 {
    font-size: 56px;
}

.stats-section {
    padding: 0px 0px 70px 0px;
}

.stat-item {
    text-align: center;
    border: 1.33px solid #dddddd;
    border-right-width: 0;
    border-bottom: 0;
    transition: transform 0.3s ease;
    max-width: 20%;
}

.stat-item:last-child {
    border-right: 1px solid #dddddd;
}

.stat-number {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--medium-text-color);
}

.user-count {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.user-count h4 {
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
}

.platform-preview {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.platform-preview:hover {
    transform: translateY(-5px);
}


/* Features Section */

.features-section {
    background-color: var(--dark-blue);
    color: white;
    padding: 80px 0;
    border-radius: 20px;
    margin: 40px 20px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-get-started {
    background-color: var(--primary-orange);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: #ff5a1f;
    transform: translateY(-2px);
}


/* Stats Section */

.stat-card {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
}


/* Process Section */

.process-section {
    padding: 80px 0;
    background: #eff8ff;
}

.process-section h2 {
    font-size: 62px;
}

.process-steps {
    position: relative;
}

.why-jupitice .process-steps:before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #4cc9f0;
    z-index: 0;
}

.step-item {
    position: relative;
    padding-top: 20px;
}

.step-number {
    color: var(--text-color);
    display: inline-block;
    font-size: 16px;
    margin-bottom: 15px;
    background: white;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 100px;
}

.step-item h3 {
    font-weight: 600;
    font-size: 36px;
    letter-spacing: 0px;
    margin-bottom: 20px;
}

.step-item.active .step-number {
    background-color: #e6f5f8;
    color: #2ba9c0;
    font-weight: bold;
}


/* Testimonials Section */

.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 20px;
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-author h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #666;
}

.award-card {
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #edc4c4;
}

.award-card p {
    font-size: 16px;
}

.award-card p .span {
    color: var(--primary-orange);
    padding-right: 10px;
    width: auto;
    height: auto;
}

.btn-nav {
    background: none;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--primary-orange);
    color: white;
}


/* Certifications Section */

.certifications-section {
    padding: 40px 0;
    background-color: #fff;
}

.certifications-section p {
    font-size: 24px;
    font-weight: 500;
    color: #5a7582;
}


/* Talk to Expert Section */

.talk-expert-section {
    padding: 80px 0;
    margin: 40px 20px;
}

.talk-expert-section .container {
    background: url('../images/why_jupitice/Frame 1973344329.svg') no-repeat center center/cover;
    border-radius: 32px;
    padding: 70px 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    position: relative;
    position: relative;
    z-index: 2;
}

.talk-expert-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.expert-content {
    position: relative;
    z-index: 10;
}

.badge-expert {
    background-color: var(--white-color);
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 20px;
    backdrop-filter: blur(4px);
}

.expert-content h2 {
    font-weight: 500;
    font-size: 56px;
}

.btn-book-appointment {
    background-color: var(--dark-blue);
    color: white;
    padding: 18px 40px;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 20px 0px #7474ff3d;
    font-size: 20px;
}

.btn-book-appointment:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.rounded-pill {
    border-radius: 50rem !important;
}


/* Navigation */

.navbar {
    transition: background-color 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
}

.nav-link b {
    color: var(--text-color);
}

.nav-link {
    color: var(--light-text-color);
    font-weight: 400;
    padding: 0.5rem 1rem;
    font-size: 18px;
    position: relative;
}

.auth-action a {
    border-radius: 100px;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
}

.login {
    background-color: var(--white-color);
}

.sign-up {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.step-icon .rounded-circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}


/* Foundation Section */

.foundation-section .legal-list li {
    position: relative;
    padding-left: 10px;
    font-size: 24px;
}

.foundation-section h3 {
    font-size: 56px;
}

.foundation-image {
    border-radius: 12px;
    overflow: hidden;
}


/* Testimonials */

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
}

.testimonial-quote {
    opacity: 0.7;
}


/* FAQ Section */

.accordion-item {
    overflow: hidden;
}


/* Contact Form */

.contact-form-wrapper {
    border-radius: 12px;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #c6d0d6;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(77, 198, 173, 0.25);
}


/* contact-section */

.contact-section {
    background: #f9f9fc;
    padding: 70px 0px;
}

.contact-section h2 {
    font-size: 50px;
    font-weight: 600;
}

.contact-section .subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--medium-text-color);
}


/* Footer */

footer {
    background-color: #072032;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 24px;
}

footer ul li a {
    color: #c6d0d6;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: 400;
}

footer .copyright {
    background-color: #07273d;
}

footer .copyright p {
    font-size: 14px;
}

.scroll-to-top {
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-btn {
    position: absolute;
    top: -36px;
    width: 73px;
    height: 73px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
    border: 6.66px solid #072032;
}

.scroll-btn i {
    font-size: 32px;
    color: #0b1736;
    /* Dark blue color matching your theme */
}

.scroll-btn i::before {
    font-weight: 700 !important;
}

.scroll-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


/* For fixed position variant (optional) */

.scroll-btn.fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    top: auto;
    opacity: 0;
    visibility: hidden;
}

.scroll-btn.fixed.visible {
    opacity: 1;
    visibility: visible;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}


/* Professionals Section */

.professionals-section {
    padding: 4rem 0;
    background-color: #fff;
}

.professionals-section h2 {
    font-size: 42px;
}

.pro-feature-card {
    background: #eff8ff;
    border-radius: 24px;
    height: 100%;
}

.professional-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional-image img {
    max-height: 100%;
    object-fit: contain;
    border-radius: 24px;
}

.pro-feature h5 {
    font-size: 32px;
    font-weight: 600;
}


/* Features Section */

.features-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.features-section:before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(128, 0, 255, 0.3) 0%, rgba(128, 0, 255, 0) 70%);
    z-index: 0;
}

.features-section:after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.2) 0%, rgba(255, 0, 128, 0) 70%);
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}


/* .feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
} */


/* 
.feature-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: rgba(77, 198, 173, 0.1);
    color: #4dc6ad;
    font-size: 24px;
    margin-bottom: 1rem;
} */


/* Testimonials */

.testimonials-section {
    padding: 4rem 0;
    background-color: #fff;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
}

.testimonial-quote {
    color: var(--primary);
    opacity: 0.7;
}

.testimonial-controls .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* Success Section */

.success-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    position: relative;
}

.team-avatars {
    position: relative;
    height: 60px;
    margin-bottom: 20px;
    display: inline-block;
}

.avatar-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.metric-card {
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}


/* CTA Section */

.cta-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
    border-radius: 10px;
    margin: 2rem 0;
}

.cta-section h2 {
    font-size: 2.2rem;
}

.btn-dark {
    background-color: var(--text-color);
    border-color: var(--text-color);
    font-size: 20px;
    box-shadow: 0px 4px 20px 0px #f68f3c3d;
}

.btn-dark:hover {
    background-color: #0d2042;
    border-color: #0d2042;
}


/* abr-service-provider-section */

.gateway-section {
    background-color: #072032;
    color: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gateway-section p {
    color: #c6d0d6;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.stat-card {
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.feature-item-title {
    font-weight: 600 !important;
}

.feature-item-sub-title {
    font-size: 16px;
}

.stat-pink {
    background-color: #ffecec;
}

.stat-blue {
    background-color: #f2faff;
}

.stat-green {
    background-color: #e8fdf3;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.opportunity-stat-card {
    font-weight: 600;
    border-radius: 32px;
    height: 100%;
}

.stat-pink-number {
    color: #da4747;
    font-size: 64px !important;
    line-height: 1;
}

.stat-blue-number {
    color: #2b93d4;
    font-size: 64px !important;
    line-height: 1;
}

.stat-green-number {
    color: #23cb7b;
    font-size: 64px !important;
    line-height: 1;
}

.stat-card-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 2;
}

.stat-card-sub-title {
    font-size: 28px !important;
    font-weight: 500;
}

.join-section {
    padding: 60px 0;
    text-align: center;
}

.join-section-card {
    background: #f9f9f9;
    border-radius: 24px;
}

.join-section-card h5 {
    text-align: left;
}

.join-section-card-header {
    background: #fff;
    border-radius: 24px;
    padding: 12px;
}

.join-section-card .tab {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.join-section-card .tab.active {
    background: #eff8ff;
    color: #0d6efd;
}

.join-section-type li {
    text-align: left;
    font-size: 32px;
    padding: 14px 0px;
    color: var(--medium-text-color);
}

.join-section-type li .independent-neutrals-icon {
    color: #7a76ff;
}

.organisation-icon {
    color: #ff8585;
}

.ecosystem-service-providers-icon {
    color: #5dc988;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.professional-type {
    margin-bottom: 10px;
}

.professional-type li {
    margin-bottom: 10px;
    color: #4a56e2;
}

.category-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}


/* New styles for the extended sections */

.get-started-section {
    background: #fff;
    padding: 0px 0px 60px 0px;
}

.steps-list {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
}

.steps-list li {
    position: relative;
    padding-left: 50px;
    font-size: 24px;
    color: var(--medium-text-color);
    font-weight: 500;
}

.steps-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #e5f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2591d0;
    font-size: 24px;
    padding: 18px;
}

.faq-section {
    background: #fff;
}

.faq-section h2 {
    font-size: 56px;
}

.faq-section .learn-more {
    box-shadow: inherit !important;
    border: 1px solid #f68f3c !important;
}

.faq-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
}


/* Providers Section */

.providers-section {
    background: url('../images/adr-services-providers/Group 1972158482.svg') no-repeat center center/cover;
    height: 100%;
    width: 100%;
    position: relative;
}

.providers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.providers-section .container {
    position: relative;
    z-index: 2;
    margin-top: 86px;
}

.providers-section h2 {
    font-size: 56px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}


/* AI Assistant Section */

.ai-assistant-section {
    padding: 2rem 0;
    background-color: #fff;
    position: relative;
}

.ai-assistant-section-header {
    background: #f9f9f9;
}

.robot-image {
    top: -16px;
    width: 162px;
    left: -160px;
}

.ai-assistant-section h2 {
    font-size: 56px;
}

.ai-assistant-section-card {
    border: 1px solid #dde0e2;
    border-radius: 16px;
    height: 100%;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    min-height: 104px;
}


/* hero-enterprice-section  */

.hero-enterprice-section h2 {
    font-size: 82px;
}

.hero-enterprice-section .badged {
    background-color: var(--white-color);
    padding: 10px 14px;
    border-radius: 8px;
    width: fit-content;
}

.solutions-section h2 {
    font-size: 56px;
}

.solution-card {
    border: 1px solid #dde0e2;
    border-radius: 16px;
}

.solution-card h4 {
    font-size: 24px;
}

.solution-card {
    font-size: 16px;
}


/* online adr */

.adr-resolution-section {
    background: #eff8ff;
    border-radius: 24px;
}

.adr-resolution-section h2 {
    font-size: 56px;
}

.adr-resolution-section-card {
    border: 1px solid #fff;
    background-color: #fff;
    border-radius: 20px;
    min-height: 286px;
     height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.online-adr-section .badged {
    background: #caf6e0;
    border-radius: 8px;
    width: fit-content;
    padding: 6px 14px;
    color: #072133 !important;
    font-weight: 600;
}

.online-adr-section h2 {
    font-size: 62px;
}

.online-adr-section p {
    color: #6a6d78 !important;
}

.workflow-section {
    background: #eff8ff;
}

.workflow-section h2 {
    font-size: 56px;
}

.workflow-section .lead {
    font-size: 24px;
    font-weight: 600;
}

.workflow-section h5 {
    font-size: 24px;
}

.workflow-section p {
    color: #2b3033 !important;
    font-size: 24px;
}

.workflow-section .bg-green {
    background: #00d46f;
}

.main-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-card {
    background-color: #072032;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-card .container {
    border: 1.6px solid #ffffff1a;
    background: #ffffff08;
    border-radius: 20px;
}

.header-row {
    font-weight: 500;
    padding: 15px 0;
}

.comparison-row {
    background-color: #ffffff08;
    border-radius: 12px;
    margin: 10px;
    padding: 5px;
    border: 1px solid #ffffff1a;
}

.category-col {
    display: flex;
    font-weight: 500;
    padding: 15px;
    color: var(--white-color);
    gap: 14px;
    font-size: 20px;
}

.category-col img {
    width: 20px;
    height: 30px;
}

.category-icon {
    margin-right: 10px;
}

.comparison-item {
    background-color: #ffffff0a;
    border-radius: 12px;
    margin: 5px;
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ffffff1a;
}

.item-text {
    font-size: 20px;
    color: var(--white-color);
}

.item-title-text {
    font-size: 24px;
}

.subtext {
    font-size: 16px;
    margin-top: 5px;
    color: var(--white-color);
}


/* adr-service-section */

.adr-service-section h2 {
    font-size: 48px;
}

.route-header {
    background-color: #f5f8fa;
    border-bottom: 1px solid #e9ecef;
    margin-top: 20px;
}

.article-header {
    background-color: #1a3b5d;
    color: white;
    padding: 10px 15px;
    margin-top: 30px;
    border-radius: 5px 5px 0 0;
}

.article-content {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 0 0 5px 5px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
    border-top: none;
}

.article-title {
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}

.article-subtitle {
    font-weight: bold;
    text-decoration: none;
    margin: 10px 0;
}

.article-section {
    margin-bottom: 10px;
}

.toc-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.toc-dots {
    flex-grow: 1;
    border-bottom: 1px dotted #000;
    margin: 0 5px;
    position: relative;
    top: -5px;
}

.toc-item .page {
    flex-shrink: 0;
}

.toc-title {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    margin: 8px 0px;
    font-size: 20px;
}

.main-title {
    text-align: center;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-decoration: underline;
}

.solution-box {
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0px 10px 4px rgba(31, 66, 135, 0.1);
    height: 100%;
    background-color: #fff;
}

.solution-box figure {
    width: 75px;
    margin: 0 0 20px;
}

.solution-box figure img {
    max-width: 100%;
}

.solution-box h5 {
    color: #000033;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
    transition: all 0.15s;
}

.main-header {
    background-color: #1a3b5d;
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
}

.toc-heading {
    color: #1a3b5d;
    font-weight: 600;
    border-bottom: 2px solid #1a3b5d;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.toc-item .page-number {
    color: #6c757d;
    font-weight: 500;
}

.toc-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}


/* Buyer Protection Styling */

.buyer-protection-header {
    background-color: #f5f8fa;
    border-bottom: 1px solid #e9ecef;
    margin-top: 20px;
}

.buyer-protection-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 0;
    text-transform: uppercase;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #0d6efd;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.toc-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.img-contain {
    height: 100%;
    object-fit: contain;
}


/* Responsive Adjustments */

@media (max-width: 2000px) and (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 90% !important;
    }
    .testimonial-section .mx-ht {
        max-width: 600px;
    }
}

@media (max-width: 1400px) and (min-width: 1281px) {
    .nav-link {
        font-size: 14px;
    }
    .join-section-type li {
        font-size: 24px;
    }
}

@media (max-width: 1280px) {
    /* nav bar */
    .nav-link {
        font-size: 11px;
    }
    .navbar-brand img {
        height: 40px;
    }
    .login {
        font-size: 14px;
    }
    .sign-up {
        font-size: 14px;
    }
    /* home page */
    /* Hero Section */
    .hero-section h1 {
        font-size: 60px;
    }
    .hero-section p {
        font-size: 16px;
        line-height: normal;
    }
    .btn-orange {
        font-size: 18px;
    }
    .btn-dark {
        font-size: 18px;
    }
    /* Dispute Resolution Section */
    .resolve-disputes h2 {
        font-size: 42px;
    }
    .resolve-disputes p {
        min-height: 60px;
        font-size: 16px;
        line-height: 26px;
    }
    .resolve-disputes .min-ht {
        min-height: 60px;
    }
    .resolve-disputes h4 {
        min-height: auto;
        font-size: 20px;
    }
    /* Why Choose Section */
    .why-choose h2 {
        font-size: 54px;
    }
    .why-choose p {
        width: 90%;
    }
    .accordion-header {
        font-size: 24px !important;
    }
    .accordion-button {
        font-size: 24px;
    }
    /* Journey Section */
    .journey-section h2 {
        font-size: 42px;
    }
    .journey-section p {
        font-size: 16px;
    }
    .journey-section .lead {
        width: 85%;
    }
    .process-step h5 {
        font-size: 24px;
    }
    /* AI Section */
    .ai-section h2 {
        font-size: 48px;
    }
    .stats-section {
        padding: 35px 0;
    }
    .testimonial-section {
        padding: 35px 0;
    }
    /* Enterprise Section */
    .feature-section p {
        min-height: 150px;
    }
    /* Marketplace Section */
    .marketplace-section h2 {
        font-size: 42px;
    }
    /* Testimonial Section */
    .testimonial-section h2 {
        font-size: 42px;
    }
    .home-testimonials-section .title {
        font-size: 36px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .enterprise-section h2 {
        font-size: 34px;
    }
    .enterprise-section p {
        font-size: 16px;
    }
    .professionals-section h1 {
        font-size: 2.2rem;
    }
    .features-section h2,
    .testimonials-section h2,
    .success-section h2 {
        font-size: 1.8rem;
    }
    .feature-section h5 {
        font-size: 18px;
    }
    .contact-section h2 {
        font-size: 28px;
    }
    .contact-section p {
        font-size: 16px;
    }
    .contact-section .subtitle {
        font-size: 14px;
    }
    footer ul li a {
        font-size: 15px;
    }
    footer h5 {
        font-size: 16px;
    }
    .metric-number {
        font-size: 2.5rem;
    }
    .providers-section h1,
    .ai-assistant-section h2 {
        font-size: 2rem;
    }
    .provider-image {
        width: 160px;
        height: 160px;
    }
    /* Consultation */
    .gradient-bg h1 {
        font-size: 42px;
        width: 100%;
    }
    .gradient-bg p {
        font-size: 16px;
    }
    .file-upload-area {
        padding: 40px 20px;
    }
    .dark-section .feature-card {
        padding: 24px;
    }
    .dark-section h2 {
        font-size: 32px;
    }
    .dark-section p {
        font-size: 16px;
    }
    .dark-section h4 {
        font-size: 19px;
    }
    .legal-guidance h2 {
        font-size: 44px;
    }
    .legal-guidance p {
        font-size: 16px;
    }
    .how-it-work-section {
        background-color: #eff8ff;
        padding: 60px 0px;
    }
    .how-it-work-section h2 {
        font-size: 42px;
    }
    .how-it-work-section p {
        font-size: 16px !important;
    }
    .legal-guidance .legal-guidance-card h4 {
        font-size: 18px;
    }
    .adr-section-content {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .adr-section h2 {
        font-size: 42px;
    }
    .adr-section p {
        font-size: 16px;
    }
    .adr-service-section h2 {
        font-size: 32px;
    }
    .stat-card-title {
        font-size: 18px !important;
    }
    .stat-card-sub-title {
        font-size: 20px !important;
    }
    .join-section-card h5 {
        font-size: 14px;
    }
    .adr-resolution-section h2 {
        font-size: 36px;
    }
    .hero-enterprice-section h2 {
        font-size: 52px;
    }
    .join-section-type li {
        font-size: 24px;
    }
        .stat-item {
        padding: 4px;
        border-bottom: 1.33px solid #dddddd;
    }
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 14px 0px;
        border-radius: 8px;
        margin-top: 8px;
    }
    /* hero page */
    /* Hero Section */
    .hero-section h4 {
        font-size: 14px;
        padding: 8px 10px;
    }
    .hero-section h1 {
        font-size: 40px;
    }
    .hero-section p {
        font-size: 16px;
        line-height: 28px;
    }
    .ln-ht-n {
        line-height: normal !important;
    }
    .btn-orange {
        font-size: 16px;
    }
    .navbar-brand img {
        height: 40px;
    }
    /* Frame Users Section */
    .frame-users h5 {
        font-size: 32px;
    }
    .trusted-by h6 {
        font-size: 20px;
    }
    /* 
  Dispute Resolution Section */
    .resolve-disputes {
        padding-top: 50px;
        padding-bottom: 50px;
        gap: 40px;
        border-radius: 15px;
    }
    .resolve-disputes h2 {
        font-size: 32px;
    }
    .resolve-disputes h4 {
        font-size: 20px;
    }
    .resolve-disputes p {
        font-size: 16px;
        line-height: 26px;
    }
    .dispute-card {
        border-radius: 15px;
    }
    /* Why Choose Section */
    .why-choose h2 {
        font-size: 36px;
    }
    .why-choose p {
        font-size: 16px;
        width: 100%;
    }
    .accordion-item {
        border-radius: 15px !important;
    }
    .accordion-header {
        font-size: 18px !important;
    }
    .accordion-button {
        font-size: 18px;
    }
    .accordion-body {
        font-size: 16px;
    }
    /* Journey Section */
    .journey-section {
        padding: 40px 0;
    }
    .journey-section .text-subtitle {
        font-size: 18px;
    }
    .journey-section h2 {
        font-size: 32px;
    }
    .journey-section p {
        font-size: 16px;
    }
    .journey-section .lead {
        width: 100%;
    }
    .process-step h5 {
        font-size: 22px;
    }
    .step-icon {
        width: 50px;
        height: 50px;
    }
    /* AI Section */
    .ai-section {
        padding: 50px 0;
    }
    .ai-section h2 {
        font-size: 36px;
    }
    .ai-section p {
        font-size: 16px;
    }
    /* Enterprise Section */
    .enterprise-section {
        padding: 40px 0;
    }
    .enterprise-section h2 {
        font-size: 32px;
    }
    .enterprise-section p {
        font-size: 16px;
    }
    .feature-section {
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .feature-section h5 {
        font-size: 22px;
    }
    .feature-section p {
        min-height: auto;
        font-size: 16px;
    }
    /* Marketplace Section */
    .marketplace-section {
        padding: 60px 0;
    }
    .marketplace-section h2 {
        font-size: 32px;
    }
    .marketplace-section p {
        font-size: 16px;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    /* Testimonial Section */
    .testimonial-section {
        padding: 40px 0;
    }
    .testimonial-section .badge {
        font-size: 14px;
    }
    .testimonial-section .client-count {
        font-size: 16px;
    }
    .testimonial-section h2 {
        font-size: 32px;
    }
    .home-testimonials-section {
        padding: 50px 0;
    }
    .home-testimonials-section .title {
        font-size: 28px;
    }
    .home-testimonials-section p {
        font-size: 12px;
        line-height: 19px;
    }
    .feature-section-card {
        padding-bottom: 20px;
    }
    .stat-label {
        font-size: 14px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .features-section {
        margin: 20px 10px;
        padding: 40px 0;
    }
    .advisor-image {
        width: 150px;
        height: 150px;
    }
    /* .process-steps .row {
        gap: 30px;
    } */
    .testimonial-item {
        padding: 20px;
    }
    .recognitions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .talk-expert-section {
        margin: 20px 10px;
    }
    .workflow-step {
        margin-bottom: 2rem;
    }
    .contact-form-wrapper {
        padding: 2rem !important;
    }
    .professionals-section {
        padding: 2rem 0;
    }
    .professionals-section h1 {
        font-size: 1.8rem;
    }
    .pro-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    /* .feature-card {
        margin-bottom: 1.5rem;
    } */
    .metric-card {
        margin-bottom: 1.5rem;
    }
    .providers-section {
        padding: 16px 0;
    }
    .providers-section h1,
    .ai-assistant-section h2 {
        font-size: 1.8rem;
    }
    .provider-image {
        width: 140px;
        height: 140px;
    }
    .ai-assistant-section {
        padding: 3rem 0;
    }
    /* .feature-card {
        padding: 1.5rem;
    } */
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .feature-title {
        font-size: 1rem;
    }
    .professional-image img {
        max-height: 500px;
    }
    .expert-content h2 {
        font-size: 32px;
    }
    .hero-enterprice-section h2 {
        font-size: 32px;
    }
    .hero-enterprice-section .badged {
        background-color: #eff8ff;
    }
    .pro-feature h5 {
        font-size: 16px;
    }
    .dispute-swiper .swiper-slide {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-section .container {
        margin-top: 50px;
    }
    .hero-section h1 {
        font-size: 32px;
    }
    .btn-dark {
        font-size: 14px;
    }
    .btn-orange {
        font-size: 14px;
    }
    .frame-users p {
        font-size: 13px;
    }
    .frame-users h5 {
        font-size: 24px;
    }
    .resolve-disputes h2 {
        font-size: 24px;
    }
    .why-choose h2 {
        font-size: 24px;
    }
    .journey-section h2 {
        font-size: 24px;
    }
    .ai-section h2 {
        font-size: 24px;
    }
    .enterprise-section h2 {
        font-size: 26px;
    }
    .marketplace-section h2 {
        font-size: 26px;
    }
    .testimonial-section h2 {
        font-size: 26px;
    }
    .home-testimonials-section .carousel-control-next {
        right: 0px;
        width: 0;
    }
    .home-testimonials-section .carousel-control-prev {
        left: 0px;
        width: 0;
    }
    .home-testimonials-section .carousel-control-prev img,
    .home-testimonials-section .carousel-control-next img {
        width: 70px;
    }
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .process-steps {
        margin-top: 0px;
    }
    .why-jupitice .process-steps:before {
        position: relative;
    }
    .hero-section {
        text-align: center;
    }
    .stat-item {
        padding: 4px;
                border-bottom: 1.33px solid #dddddd;
    }
    .stat-number {
        font-size: 12px;
    }
    .stat-label {
        font-size: 10px;
    }
    .benefit-item {
        margin-bottom: 20px;
    }
    .testimonial-text {
        margin-bottom: 0;
    }
    .contact-section {
        padding: 35px 0px;
    }
    .contact-section .subtitle {
        font-size: 14px;
    }
    .contact-section h2 {
        font-size: 30px;
    }
    .contact-section p {
        font-size: 14px;
    }
    footer ul li a {
        font-size: 14px;
    }
    /* consultation */
    .gradient-bg .section-container {
        margin-top: 50px;
    }
    .form-container {
        padding: 1.5rem 1rem;
    }
    .dark-section {
        padding: 3rem 1rem;
    }
    .how-it-work-section {
        padding: 30px 0px;
    }
    .how-it-work-section h2 {
        font-size: 24px;
    }
    .how-it-work-section .conection {
        padding: 0;
        border: 0;
    }
    .adr-section h2 {
        font-size: 22px;
    }
    .file-upload-container {
        margin: 20px 0px;
    }
    .submit-btn {
        font-size: 16px;
    }
    /* why choose */
    .advisory-section {
        padding: 40px 0px 20px 0px;
    }
    .advisory-section h2 {
        font-size: 32px;
    }
    .why-jupitice .stats-section h2 {
        font-size: 34px;
    }
    .process-section {
        padding: 40px 0;
    }
    .process-section h2 {
        font-size: 32px;
    }
    p {
        font-size: 16px;
    }
    .step-item h3 {
        font-size: 30px;
    }
    .talk-expert-section {
        padding: 0;
    }
    .expert-content h2 {
        font-size: 32px;
    }
    .talk-expert-section .container {
        padding: 42px 0;
    }
    .resolve-disputes h3 {
        font-size: 24px;
    }
    .solutions-section h2 {
        font-size: 28px;
    }
    .professionals-section h2 {
        font-size: 34px;
    }
    .workflow-step .step-icon {
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    .adr-service-section h2 {
        font-size: 24px;
    }
    .opportunity-stat-card {
        margin: 8px 0px;
    }
    .join-section {
        padding: 16px 0px;
    }
    .join-section-type li {
        padding: 6px 0px;
        font-size: 16px;
    }
    .providers-section .container {
        margin-top: 0px;
    }
    .adr-resolution-section h2 {
        font-size: 28px;
    }
    .online-adr-section h2 {
        font-size: 42px;
    }
    .main-title {
        font-size: 32px;
    }
    .item-text {
        font-size: 16px;
    }
    .item-title-text {
        font-size: 18px;
    }
    .subtext {
        font-size: 14px;
    }
    .workflow-section h2 {
        font-size: 32px;
    }
    .foundation-section h3 {
        font-size: 28px;
    }
    .foundation-section .legal-list li {
        font-size: 14px;
    }
    .faq-section h2 {
        font-size: 32px;
    }
    .certifications-section img {
        width: 140px;
        height: 122px;
    }
    .user-count-card {
        margin-top: 16px;
    }
    .carousel-control-next,
    .carousel-control-prev {
        width: 20%;
    }
    .gateway-section {
        padding: 26px;
    }
    .steps-list li {
        font-size: 16px;
    }
    .scroll-btn {
        top: -30px;
        width: 63px;
        height: 63px;
    }
    .gradient-bg h1 {
        font-size: 32px;
    }
    .why-jupitice .home-testimonials-section .testimonial-text {
        font-size: 20px;
    }
    .btn-book-appointment {
        padding: 12px 32px;
        font-size: 16px;
    }
    .testimonial-bg img {
        max-width: 100%;
    }
    .nav-link {
        font-size: 14px;
    }
    .join-section-card-header {
        padding: 0;
    }
    .join-section-card .tab img {
        width: 30px;
    }
    .join-section-card .tab {
        padding: 8px 4px;
    }
    .buyer-protection-title {
        font-size: 20px;
    }
}


ul.indent-list li, ul.bullet-points li, ul.article-list li, ul.text-start li, table.journey-steps, .odr-table, ol.numbered-list, .platform-benefits li, .criteria-list li, .feature-list li, .bullet-list li {
    font-size: 20px;
    color: var(--medium-text-color);
    font-weight: normal;
}

.by-line{
    margin-bottom: 10px;
    font-size: 18px;
}

.bulletnone{
    list-style: none;
    padding: 0;
}


.chooseHeading{
    font-size: 82px;
}

.gradient-bg .resolve-disputes h1 {
    font-size: 56px;
    font-weight: 500;
}

.termsPage h2.pt-4 {
    font-size: 1.5rem;
}