@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 ONLY STYLES ======= */
    
    @media (max-width: 768px) {
        .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;
            max-height: 340px;
            object-fit: contain;
            display: block;
        }
        .banner-controls {
            display: none;
        }
    }

        @media (max-width: 576px) {
            .banner-section {
                margin-bottom: 16px;
            }
        }

        /* Final mobile overrides to prevent banner/image overlap and center hero media */
        @media (max-width: 991.98px) {
            .banner-section {
                margin-bottom: 16px;
            }
        }

        @media (max-width: 767.98px) {
            .container.containerrld {
                margin-top: 0 !important;
            }
            .leftcolumn {
                margin-left: 0 !important;
            }
            .rightimagebox {
                margin: 24px auto 0 !important;
                width: 100% !important;
                max-width: 520px;
                text-align: center !important;
                padding: 0 !important;
            }
            .rightimagebox img {
                width: 100% !important;
                max-width: 520px !important;
                height: auto;
                display: block;
                margin: 0 auto !important;
            }
            .Namebox {
                margin-top: 0 !important;
            }
        }
    
    @media (max-width: 768px) {
        section .container {
            padding-left: 15px;
            padding-right: 15px;
        }
        section h2 {
            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;
    }

    /* === PAGE UTILITIES === */
    .text-arkon {
        color: #203e80 !important;
    }

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

    .value-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;
    }

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

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

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

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

    @media (max-width: 576px) {
        .d-flex.flex-wrap.gap-3 {
            gap: 0.75rem !important;
            justify-content: center !important;
        }
        .d-flex.flex-wrap.gap-3 > .value-card {
            width: calc(50% - 0.375rem) !important;
            min-width: auto !important;
            height: 120px !important;
        }
        .d-flex.flex-wrap.gap-3 > .value-card p.small {
            font-size: 0.82rem !important;
        }
        .value-icon {
            height: 42px;
        }
        .TrustedAcrosstext {
            font-size: 0.95rem;
        }
    }

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

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

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

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

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

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

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

    .banner-slide-rld {
        background-image: url('../MeeTeamImg/HomePageImage/RLD2.webp');
    }

    .hero-img-xl {
        max-width: 120%;
        height: auto;
    }

    .img-cover-400 {
        max-height: 400px;
        object-fit: cover;
        width: 100%;
    }

    .heading-deep {
        color: #1a1449;
        text-transform: uppercase;
    }
    
    .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) {
        .banner-section {
            height: 40vh;
            background-position: center top;
            padding: 20px 15px;
        }
    }
    
    @media (max-width: 991.98px) {
        .banner-navbar {
            margin-left: -15px;
        }
    }
    
    @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 {
            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;
        text-align: justify;
    }
    
    .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;
    }
    
    .banner-text-top-left {
        top: 300px;
        left: 40px;
        position: absolute;
        max-width: calc(100% - 80px);
        /* Safe for desktop */
        text-align: left;
    }
    /* Heading - Desktop */
    
    .banner-text-top-left h1 {
        font-size: 2.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    /* ✅ Responsive Fix for Mobile */
    
    @media (max-width: 575.98px) {
        .banner-text-top-left {
            top: 20px;
            left: 10px;
            right: 10px;
            text-align: center;
            max-width: 100%;
            width: 100%;
            padding: 0 10px;
            box-sizing: border-box;
            overflow-wrap: break-word;
        }
        .banner-text-top-left h1 {
            font-size: 1.5rem;
            white-space: normal;
            overflow: visible;
            text-overflow: unset;
            margin-top: 320px;
        }
        .banner-text-top-left p {
            font-size: 1rem;
            white-space: normal;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        .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;
        }
    }
    
    .left-side {
        color: #203e80;
        font-size: 14px;
    }
    
    .menu-content {
        color: #203e80;
        font-size: 14px;
    }
    
    .scroll-tabs-right {
        max-height: 500px;
        overflow-y: scroll;
        padding-right: 10px;
        scrollbar-width: none;
        /* Firefox */
    }
    
    .scroll-tabs-right::-webkit-scrollbar {
        width: 0px;
        background: transparent;
        /* Chrome/Safari/WebKit */
    }
    
    .textrightside {
        color: #203e80;
    }
    
    @media (min-width: 992px) {
        .col-lg-6.RLDLEFTSIDE {
            margin-left: -180px;
        }
        .col-lg-6.text-center.RLDRIGHTSIDE {
            margin-right: 0px;
            /* Move image closer to left side */
            margin-left: 180px !important;
            /* Remove previous push to right */
        }
    }
    
    @media (min-width: 992px) {
        .scroll-tabs-left {
            padding-left: 0 !important;
            margin-left: -60px;
            /* move left side closer to edge */
        }
        .scroll-tabs-right {
            padding-right: 0 !important;
            margin-left: 50px;
            /* shift content slightly left */
        }
        .scroll-tabs-container {
            max-width: 80%;
        }
    }
    
    .scroll-tabs-text {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        padding: 1rem 1.25rem;
        border-radius: 0.75rem;
        line-height: 1.6;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    @media (min-width: 992px) {
        #key-considerations .container {
            max-width: 100%;
            padding-left: 60px;
            padding-right: 60px;
            overflow-x: hidden;
            /* Prevent horizontal scroll */
        }
        #key-considerations .row {
            margin-left: 0;
            margin-right: 0;
        }
        #key-considerations .col-md-6.col-lg-4 {
            padding-left: 15px;
            padding-right: 15px;
        }
    }
    
    @media (min-width: 992px) {
        .patient-features-left {
            padding-left: 40px;
            padding-right: 30px;
            margin-left: -180px;
        }
        .patient-image-right {
            padding-left: 30px;
            padding-right: 40px;
            margin-left: 180px !important;
        }
    }
    
    @media (min-width: 992px) {
        .logistic-image-left {
            padding-left: 40px;
            padding-right: 20px;
        }
        .logistic-text-right {
            padding-left: 20px;
            padding-right: 40px;
        }
    }
    
    @media (min-width: 992px) {
        .banner-text-top-left {
            left: -13%;
            transform: translateY(-10%);
        }
    }
    
    .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;
        }
    }
    
    .scroll-tabs-heading {
        color: #203e80;
    }
    
    @media (max-width: 768px) {
        .banner-section {
            width: 100%;
            height: 200px;
            background-position: center;
            background-size: cover;
            margin-left: 0;
        }
    }
    
    .custom-compliance-btn {
        background-color: #203e80 !important;
    }
    
    .text-success {
        color: #203e80 !important;
    }
    
    .text-dark {
        color: #203e80 !important;
    }
    
    .text-muted {
        color: #203e80 !important;
    }
    
    .border {
        color: #203e80 !important;
    }
    
    .scroll-tabs-right {
        max-height: 650px;
        /* Adjust height as needed */
        overflow-y: auto;
        padding-right: 10px;
    }
    /* Optional scrollbar styles */
    
    .scroll-tabs-right::-webkit-scrollbar {
        width: 6px;
    }
    
    .scroll-tabs-right::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 3px;
    }
    
    .scroll-tabs-right::-webkit-scrollbar-thumb:hover {
        background-color: #888;
    }
    /* Base structure for all scroll-tab blocks */
    
    .scroll-tabs-block {
        padding: 20px 15px;
        border-radius: 12px;
        background-color: #fff;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }
    /* Responsive layout for mobile */
    
    @media (max-width: 767px) {
        .scroll-tabs-block {
            flex-direction: column !important;
            align-items: center !important;
            text-align: center;
        }
        .scroll-tabs-block img {
            width: 80px !important;
            height: auto;
            margin-bottom: 15px;
        }
        .scroll-tabs-text {
            font-size: 14px;
            line-height: 1.7;
            padding: 0 10px;
        }
        .scroll-tabs-title {
            font-size: 18px;
            text-align: center;
        }
        .scroll-tabs-right {
            padding: 15px;
        }
    }
    /* Base structure for all scroll-tab blocks */
    
    .scroll-tabs-block {
        padding: 20px 15px;
        border-radius: 12px;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }
    /* Responsive layout for mobile */
    
    @media (max-width: 767px) {
        .scroll-tabs-block {
            flex-direction: column !important;
            align-items: center !important;
            text-align: center;
        }
        .scroll-tabs-block img {
            width: 80px !important;
            height: auto;
            margin-bottom: 15px;
        }
        .scroll-tabs-text {
            font-size: 14px;
            line-height: 1.7;
            padding: 0 10px;
        }
        .scroll-tabs-title {
            font-size: 18px;
            text-align: center;
        }
        .scroll-tabs-right {
            padding: 15px;
        }
    }
    
    @media (max-width: 767px) {
        .container.scroll-tabs-container {
            margin-top: -120px !important;
            /* or adjust as needed */
        }
    }
    
    @media (max-width: 768px) {
        .container.arkonsolutioncard {
            margin-top: -100px;
        }
    }
    
    @media (max-width: 768px) {
        .faq-card {
            padding: 25px;
            margin-top: -128px;
        }
    }
    
    @media (max-width: 767px) {
        .scroll-tabs-image {
            flex-direction: column !important;
            align-items: center !important;
            text-align: center;
        }
        .scroll-tabs-image img {
            width: 70px !important;
            margin-bottom: 10px;
        }
        .scroll-tabs-text {
            text-align: center;
            font-size: 14px;
            line-height: 1.7;
            padding: 0 10px;
        }
        .scroll-tabs-title {
            text-align: center;
            font-size: 16px;
        }
    }
    
    @media (max-width: 768px) {
        .container.containerrld {
            margin-top: -180px;
        }
    }
    
    .section-innerbox {
        max-width: 70%;
        margin: 0 auto;
    }
    /* Desktop Styles */
    
    .leftcolumn {
        margin-left: -220px;
    }
    
    .rightimagebox {
        margin-left: 120px;
    }
    /* Mobile-Friendly Overrides */
    
    @media (max-width: 767.98px) {
        .leftcolumn {
            margin-left: 0 !important;
        }
    }
    
    @media (max-width: 767.98px) {
        .rightimagebox {
            margin-left: 0 !important;
            margin-top: 24px;
            text-align: center;
            padding-left: 0;
        }
        .rightimagebox img {
            width: 100%;
            max-width: 520px;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .Namebox {
            margin-top: 0;
        }
    }
    
    .section-innerbox {
        margin-top: 50px;
    }
    
    @media (max-width: 767.98px) {
        .scroll-tabs-right {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .scroll-tabs-block {
            padding: 1.5rem;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        }
        .scroll-tabs-block img {
            width: 80px;
            height: auto;
        }
        .scroll-tabs-image {
            flex-direction: column !important;
            text-align: center;
        }
        .scroll-tabs-image img {
            margin-bottom: 1rem;
        }
        .scroll-tabs-text {
            text-align: justify;
        }
        .textrightside {
            text-align: center;
        }
    }
    
    @media (max-width: 767.98px) {
        .scroll-tabs-left {
            display: none !important;
        }
    }
    
    .scroll-tabs-nav .nav-link.active {
        color: #0d6efd !important;
        /* Bootstrap primary blue */
        font-weight: 600;
        border-left: 4px solid #0d6efd;
        background-color: #f0f8ff;
        /* optional light background */
    }
    
    .faq-card,
    .faq-card * {
        color: #203380 !important;
    }
    
    @media (max-width: 767.98px) {
        .rightimagebox img {
            width: auto;
            max-width: 85%;
            display: block;
            margin: 0;
            width: 320px;
            margin-left: 80px;
        }
    }
    
    .leftcolumn {
        margin-left: -220px;
    }
    
    .rightimagebox {
        margin-left: 90px;
    }
    /* Mobile-Friendly Overrides */
    
    @media (max-width: 767.98px) {
        .leftcolumn {
            margin-left: 0 !important;
        }
    }
    
    @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;
        }
    }
    
    @media (max-width: 576px) {
        .rightimagebox {
            margin-left: 0px;
            width: 240px;
            margin-left: 50px;
        }
    }
    
    @media (max-width: 768px) {
        .parentstext {
            margin-top: 10px;
            color: #203380;
        }
        .persontext {
            margin-top: 50px;
            color: #203380;
        }
        .teamabout {
            margin-top: 90px;
        }
    }
    
    .parentstext {
        color: #203380;
        text-align: justify !important;
        font-size: 0.9rem;
    }
