@font-face {
        font-family: 'Poppins';
        src: url('../Font/Poppins/Poppins-Light.ttf') format('ttf'), url('../Font/Poppins/Poppins-Italic.ttf') format('ttf'), url('../Font/Poppins/Poppins-Medium.ttf') format('ttf');
        font-weight: 400;
        font-style: normal;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    /* Navbar */
    
    .custom-navbar {
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 10px 0;
        display: flex;
        color: #203e80;
        align-items: center;
        position: relative;
        z-index: 1000;
        width: 100%;
        top: 0;
    }
    
    @media (max-width: 768px) {
        .custom-navbar {
            padding: 8px 16px;
            margin-bottom: 0;
            background: #ffffff;
        }
        .custom-navbar .ArkonlogoImg {
            margin-bottom: 0;
        }
        .custom-navbar .nav-link {
            padding: 8px 10px;
            font-size: 16px;
        }
    }
    
    .custom-navbar .nav-link {
        font-weight: 500;
        color: rgba(0, 0, 0, 0.65);
        padding: 10px 15px;
    }
    
    .custom-navbar .nav-link:hover {
        color: #1f8b4c;
    }
    
    .ArkonlogoImg img {
        height: 35px;
        margin: 0;
    }
    /* ======= DESKTOP STYLES ======= */
    /* ======= DESKTOP STYLES ======= */
    
    .banner-section {
        width: 100%;
        height: 100vh;
        position: relative;
        overflow: hidden;
    }
    /* ======= DESKTOP STYLES (Reduced Height) ======= */
    
    .banner-section {
        width: 100%;
        height: 60vh;
        /* Changed from 100vh to 60vh */
        position: relative;
        overflow: hidden;
    }
    
    .banner-slide {
        width: 100%;
        height: 60vh;
        /* Changed from 100vh to 60vh */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 100%;
        transition: left 0.5s ease;
    }
    
    .banner-slide.active {
        left: 0;
    }
    
    .banner-slide.prev {
        left: -100%;
    }
    
    .banner-slide.prev {
        left: -100%;
    }
    
    .banner-controls {
        position: absolute;
        bottom: 20px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        z-index: 10;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        background: #ddd;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .dot.active {
        background: #1f8b4c;
    }
    /* ======= MOBILE AND TABLET STYLES ======= */
    
    @media (max-width: 991.98px) {
        .banner-section {
            height: auto;
            overflow: hidden;
            position: relative;
        }
        .banner-slide {
            display: none;
        }
        .mobile-banner {
            display: block;
            width: 100%;
        }
        .mobile-banner img {
            width: 100%;
            height: auto;
            display: block;
        }
        .banner-controls {
            display: none;
        }
    }

        @media (max-width: 576px) {
            .banner-section {
                margin-bottom: 16px;
            }
        }
    
    /* Tablet specific banner styles */
    @media (min-width: 768px) and (max-width: 991.98px) {
        .banner-section {
            min-height: 350px;
        }
        .mobile-banner img {
            min-height: 300px;
            object-fit: cover;
        }
    }
    
    @media (max-width: 768px) {
        section .container {
            padding-left: 15px;
            .Namebox {
                margin-top: 0;
            }
            font-size: 1.5rem;
        }
        section p {
            font-size: 0.95rem;
        }
    }
    
    @media (max-width: 768px) {
        section h2 {
            font-size: 1.5rem;
        }
        section p,
        section ul li {
            font-size: 0.95rem;
        }
    }
    
    .tech-section {
        background-color: #f9f9f9;
    }
    
    .feature-box {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .feature-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }
    
    .learn-link {
        display: inline-block;
        color: #000;
        font-weight: 600;
        text-decoration: none;
        margin-top: 10px;
    }
    
    .learn-link .icon {
        font-size: 1rem;
        margin-left: 5px;
        transition: margin-left 0.2s ease;
    }
    
    .learn-link:hover .icon {
        margin-left: 10px;
        color: #1f8b4c;
    }
    
    .services-slider::-webkit-scrollbar {
        height: 8px;
    }
    
    .services-slider::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 10px;
    }
    
    .services-slider::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .service-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
        transition: 0.3s ease;
    }
    
    .timeline {
        border-left: 3px solid #d9e0ec;
        padding-left: 2.5rem;
    }
    
    .timeline-item {
        position: relative;
    }
    
    .timeline-step {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .consideration-card {
        background-color: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 5px solid #203e80;
        /* Bootstrap primary color */
    }
    
    .consideration-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 576px) {
        .consideration-card {
            text-align: center;
        }
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f1f3f5;
    }
    
    .icon-box {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background-color: #f0f4f8;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .image-grid img {
        object-fit: cover;
        height: 100px;
        width: 100%;
    }
    
    @media (max-width: 767.98px) {
        .image-grid img {
            height: 80px;
        }
    }
    /* SCROLL CONTAINER */
    
    .logistics-scroll {
        display: flex;
        flex-wrap: nowrap;
        gap: 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 1rem;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
        scrollbar-width: thin;
        /* Firefox */
    }
    
    .logistics-scroll::-webkit-scrollbar {
        height: 8px;
    }
    
    .logistics-scroll::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
    
    .logistics-scroll::-webkit-scrollbar-track {
        background: transparent;
    }
    /* INDIVIDUAL CARD STYLES */
    
    .info-card {
        scroll-snap-align: start;
        background-color: #f9fbfe;
        border-left: 4px solid #203e80;
        min-width: 320px;
        max-width: 380px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .info-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 575.98px) {
        #key-considerations .row {
            row-gap: 1rem !important;
        }
        #key-considerations .consideration-card {
            flex-direction: column !important;
            align-items: flex-start !important;
            padding: 1rem !important;
            text-align: left;
            gap: 0.5rem;
        }
        #key-considerations .icon-box {

        @media (max-width: 576px) {
            .d-flex.flex-wrap.gap-3 {
                gap: 0.75rem !important;
                justify-content: center !important;
            }
            .d-flex.flex-wrap.gap-3 > .trusted-card {
                width: calc(50% - 0.375rem) !important;
                min-width: auto !important;
                height: 120px !important;
            }
            .d-flex.flex-wrap.gap-3 > .trusted-card p.small {
                font-size: 0.82rem !important;
            }
            .trusted-card .trusted-icon {
                height: 42px;
            }
        }
            width: auto;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 0.5rem;
        }
        #key-considerations .icon-box i {
            font-size: 1.5rem;
        }
        #key-considerations .consideration-card h5 {
            font-size: 15px;
            margin-bottom: 0.25rem;
            line-height: 1.4;
        }
        #key-considerations .consideration-card p {
            font-size: 13.5px;
            line-height: 1.6;
            margin: 0;
            text-align: justify;
        }
    }
    
    .whyarkontext {
        color: #203e80;
    }
    
    .namepatienttext {
        color: #203e80;
    }
    
    .TrustedAcrosstext {
        color: #203e80;
    }
    
    .site-footer {
        background: linear-gradient(#203e80, #203e80);
        padding: 60px 20px;
        text-align: center;
    }
    
    .site-footer h6,
    .site-footer p,
    .site-footer a {
        color: #ccc;
    }
    
    .site-footer a.footer-link:hover {
        color: #ffeb3b;
    }
    
    @media (max-width: 575.98px) {
        .nameparatext {
            margin-left: 0 !important;
            padding-left: 10px;
            padding-right: 10px;
            text-align: center;
        }
    }
    
    .nameparatext {
        margin-left: 340px;
    }
    
    @media (max-width: 575.98px) {
        .consideration-card p {
            text-align: justify;
        }
    }
    
    .text-justify {
        text-align: justify;
    }
    
    .shadow-sm {
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.04);
    }
    
    @media (max-width: 767.98px) {
        h5 {
            font-size: 1rem;
        }
        p {
            font-size: 0.875rem;
        }
    }
    
    p {
        text-align: justify;
    }
    
    .custom-compliance-btn {
        background-color: #203e80 !important;
    }
    
    .text-success {
        color: #203e80 !important;
    }
    
    .text-primary {
        --bs-text-opacity: 1;
        color: #203e80 !important;
        font-size: 25px;
    }
    
    .faq-card {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
        padding: 40px;
        max-width: 1200px;
        width: 100%;
    }
    
    .faq-title {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .faq-subtext {
        color: #666;
        font-size: 1rem;
    }
    
    .accordion-button {
        font-weight: 600;
    }
    
    .accordion-item {
        border: none;
        border-bottom: 1px solid #eee;
    }
    
    @media (max-width: 768px) {
        .faq-title {
            font-size: 1.5rem;
        }
        .faq-card {
            padding: 25px;
        }
    }
    
    .custom-faq-wrapper {
        background: #fff;
        border-radius: 20px;
        padding: 40px;
        margin: 60px auto;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        max-width: 1200px;
    }
    
    .custom-faq-left {
        position: relative;
        text-align: center;
    }
    
    .custom-faq-left img {
        width: 100%;
        max-width: 280px;
        border-radius: 12px;
        z-index: 1;
    }
    
    .custom-question-box {
        background-color: #ff9800;
        color: #fff;
        border-radius: 12px;
        padding: 20px;
        max-width: 240px;
        margin: 0 auto;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .custom-question-box p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .custom-question-box button {
        background-color: #fff;
        color: #ff9800;
        border: none;
        padding: 10px 20px;
        font-weight: bold;
        border-radius: 20px;
    }
    
    .custom-faq-title {
        font-weight: 700;
        margin-bottom: 30px;
        color: #333;
    }
    
    .custom-accordion .accordion-item {
        border: none;
        margin-bottom: 10px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .custom-accordion .accordion-button {
        padding: 15px 20px;
        font-weight: 600;
    }
    
    .custom-accordion .accordion-body {
        padding: 15px 20px;
        font-size: 14px;
        color: #555;
    }
    
    .custom-accordion .accordion-button:not(.collapsed) {
        background-color: #f5f5f5;
    }
    
    @media (max-width: 767px) {
        .custom-question-box {
            position: static;
            transform: none;
            margin-top: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .faq-card {
            padding: 25px;
            margin-top: -120px;
        }
    }
    
    .section-innerbox {
        max-width: 70%;
        margin: 0 auto;
    }
    /* Desktop Styles */
    
    .leftcolumn {
        margin-left: -220px;
    }
    
    .rightimagebox {
        margin-left: 90px;
    }
    /* Mobile-Friendly Overrides */
    
    @media (max-width: 767.98px) {
        .leftcolumn {
            margin-left: 0 !important;
        }
        .rightimagebox img {
            width: 85%;
            /* Adjust as needed */
            max-width: 300px;
            height: auto;
        }
    }
    
    @media (max-width: 767.98px) {
        .rightimagebox {
            margin-left: -35PX !important;
            margin-top: 30px;
            text-align: left;
            /* Align contents to the left */
            padding-left: 10px;
            /* Optional slight inner padding */
        }
        .rightimagebox img {
            width: auto;
            max-width: 85%;
            /* Keep it responsive */
            display: block;
            margin: 0;
            /* Remove auto-centering */
        }
    }
    
    @media (max-width: 767.98px) {
        .Namebox {
            margin-top: -180px;
        }
    }
    
    .section-innerbox {
        margin-top: 50px;
    }
    
    img.img-fluid.rounded-4.WHOLEIMGLEFT {
        margin-left: -400px;
    }
    
    @media (max-width: 767.98px) {
        img.img-fluid.rounded-4.WHOLEIMGLEFT {
            margin-left: auto !important;
            margin-right: auto !important;
            display: block;
        }
    }
    
    .text-muted {
        text-align: center !important;
        color: #203e80 !important;
    }
    
    .faq-card,
    .faq-card * {
        color: #203380 !important;
    }
    
    .persontext {
        color: #203e80 !important;
        text-align: justify!important;
    }
    
    @media (max-width: 768px) {
        .parentstext {
            margin-top: 10px;
            color: #203380;
        }
        .persontext {
            margin-top: 50px;
            color: #203380;
        }
    }
    
    .parentstext {
        color: #203380;
        text-align: justify !important;
        font-size: 1.0rem;
    }
    
    @media (max-width: 768px) {
        .teamabout {
            margin-top: 120px;
        }
    }
    
    @media (max-width: 767.98px) {
        .rightimagebox img {
            width: auto;
            max-width: 85%;
            display: block;
            margin: 0;
            width: 320px;
            margin-left: 80px;
        }
    }

    /* Page-specific helpers */
    .banner-slide-wld {
        background-image: url('../Banner_Home/Wholesale_Distribution.webp');
    }

    .trusted-card {
            width: 180px;
            height: 150px;
            min-width: 140px;
            border-radius: 16px;
            border: 1px solid #e8eef7;
            box-shadow: 0 10px 28px rgba(32, 62, 128, 0.08);
            background: #fff;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .trusted-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 36px rgba(32, 62, 128, 0.12);
        }

        .trusted-icon {
            height: 48px;
            object-fit: contain;
        }

    .trusted-card p.small {
            font-size: 0.9rem;
        }

    .TrustedAcrosstext {
            font-size: 1.05rem;
            font-weight: 700;
        }

        @media (max-width: 576px) {
            .trusted-card p.small {
                font-size: 0.82rem !important;
            }
            .TrustedAcrosstext {
                font-size: 0.95rem;
            }
        }

    .border-arkon {
        border-color: #203e80 !important;
    }

    .img-wide-130 {
        max-width: 130%;
        height: auto;
    }

    .card-border-highlight {
        border: 2px solid #fff383;
    }

    .icon-arkon {
        color: #203e80 !important;
    }

    .text-arkon {
        color: #203e80 !important;
    }

    .section-gap-lg {
        margin-top: 100px;
    }

    .certification-section {
        background-color: #f5f7fa;
    }

    .cert-logo {
        max-height: 80px;
        object-fit: contain;
    }

    .footer-section {
        background-color: #203e80;
    }

    .footer-logo {
        max-width: 120px;
    }
