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

/* ADPT Brand Colors */
:root {
    --adpt-primary: #0E0E10;
    --adpt-secondary: #D4AF37;
    --adpt-dark-blue: #C08457;
    --adpt-light-blue: #F5F5F4;
    --adpt-green: #A1A1AA;
    --adpt-purple: #110f6f;
    --adpt-gray: #F1F5F9;
    /* --adpt-light-gray: #f8f8f8; */
    --adpt-light-gray: #EFF2F8;
    ;
    --adpt-white: #1b1b1b;
    --adpt-black: #111827;
    --text-white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background-color: var(--dark) !important; */
    /* background-image: linear-gradient(to right, #495057, #1e1513, #322319, #3f361e, #003893);     */
    background-image: url('../../frontend/images/bgimg.png');
    color: var(--adpt-black);
    line-height: 1.6;
}
/* 
section {
    padding-bottom: 10px !important;
} */

.heroimage-top {
    margin-top: 145px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--adpt-green) !important;
}

/* ADPT Hero Section - Short with Background */
/* .adpt-hero-short {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
} */

.adpt-hero-short .skdslider {
    margin-top: 135px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/home-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(18, 28, 64, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 15px 15px 15px 15px;
}

.hero-content {
    color: white;
    text-align: center;
    padding: 60px 45px 0 45px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-navigation {
    margin-bottom: 2rem;
}

.hero-navigation .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-navigation .btn-light {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--adpt-dark-blue);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.hero-navigation .btn-light:hover {
    background-color: white;
    color: var(--adpt-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-navigation .btn-success {
    background-color: var(--adpt-green);
    border: 2px solid var(--adpt-green);
    color: white;
}

.hero-navigation .btn-success:hover {
    background-color: #00a03a;
    border-color: #00a03a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--adpt-green);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.footer-contact a,
.footer-contact i,
.footer-contact p {
    color: var(--text-white);
}

.glass-effect-global 
{
    background: rgb(42 18 74 / 46%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* border-radius: 16px; */
    /* border: 1px solid rgba(255, 255, 255, 0.25); */
    /* box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2); */
    /* padding: 24px; */
    /* color: #fff; */
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-navigation .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-navigation .me-3 {
        margin-right: 0 !important;
    }

    /* Fix mobile content overflow */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Ensure proper mobile spacing */
    .section {
        padding: 40px 0;
    }


    /* Fix mobile text sizing */
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }

    /* Fix mobile video containers */
    .video-container {
        height: 250px !important;
    }

    /* Fix main video section on mobile */
    .video-section {
        position: relative;
        width: 100%;
        height: 50vh;
        min-height: 250px;
        max-height: 350px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-section .video-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-section .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border: none;
        outline: none;
        display: block;
        margin: 0 auto;
    }

    /* Fix mobile image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix mobile button sizing */
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Fix mobile form elements */
    .form-control {
        width: 100%;
        margin-bottom: 15px;
    }

    /* Fix ADPT hero content on mobile */
    .adpt-hero-short .hero-title {
        font-size: 2rem !important;
        text-align: center !important;
    }

    .adpt-hero-short .hero-subtitle {
        font-size: 1.1rem !important;
        text-align: center !important;
    }

    .adpt-hero-short .hero-content {
        margin-top: 30px !important;
        margin-bottom: 10px !important;
    }

    /* Fix mobile content padding */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .col-12,
    .col-md-6,
    .col-md-7,
    .col-lg-4,
    .col-lg-6,
    .col-lg-12 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Fix mobile table responsiveness */
    .table-responsive {
        font-size: 0.8rem;
        border: 1px solid #dee2e6;
    }

    /* Fix mobile modal */
    .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    /* Fix mobile carousel */
    .owl-carousel .owl-item {
        padding: 0 5px;
    }

    /* Fix mobile text alignment */
    .text-center-mobile {
        text-align: center !important;
    }

    /* Fix mobile flex items */
    .d-flex {
        flex-direction: column;
    }

    /* Fix mobile spacing */
    .mb-4,
    .mb-3,
    .mb-5 {
        margin-bottom: 1rem !important;
    }

    .mt-4,
    .mt-3,
    .mt-5 {
        margin-top: 1rem !important;
    }

    /* Fix mobile padding */
    .p-4,
    .p-3,
    .p-5 {
        padding: 1rem !important;
    }
}

/* Additional mobile-specific fixes */
@media (max-width: 480px) {

    /* Extra small mobile devices */
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .video-container {
        height: 200px !important;
    }

    /* Fix main video section on very small screens */
    .video-section {
        height: 40vh;
        min-height: 200px;
        max-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-section .video-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-section .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        margin: 0 auto;
    }

    /* Fix very small screens */
    .mobile-nav-content {
        width: 100%;
        max-width: none;
    }


}

/* ADPT Homepage Mobile Fixes */
@media (max-width: 768px) {

    /* Fix ADPT homepage video sections */
    .adpt-videos .row {
        margin-bottom: 30px;
    }

    .adpt-videos .col-lg-6 {
        margin-bottom: 20px;
    }

    /* Fix video containers on mobile */
    .adpt-videos .video-container {
        height: 200px !important;
        margin-bottom: 20px;
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .adpt-videos .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 8px;
    }

    /* Fix ADPT homepage product cards */
    .adpt-products .product-card {
        margin-bottom: 20px;
    }

    /* Fix ADPT homepage customer voice section */
    .adpt-customer-voice .col-lg-6 {
        margin-bottom: 30px;
    }

    /* Fix ADPT homepage who we are section */
    .adpt-who-we-are .col-lg-5,
    .adpt-who-we-are .col-lg-7 {
        margin-bottom: 20px;
    }

    /* Fix ADPT homepage compliance section */
    .adpt-compliance-solutions .col-lg-4,
    .adpt-compliance-solutions .col-lg-8 {
        margin-bottom: 20px;
    }

    /* Fix ADPT homepage data integrity section */
    .adpt-data-integrity .col-lg-6 {
        margin-bottom: 30px;
    }

    /* Fix ADPT homepage clients carousel */
    .adpt-clients .clients-carousel {
        margin-top: 20px;
    }

    /* Prevent drag/move issues on mobile */
    .video-container iframe,
    .video-container video {
        pointer-events: auto;
        touch-action: manipulation;
    }

    /* Fix carousel drag issues */
    .owl-carousel {
        touch-action: pan-x;
    }

    .owl-carousel .owl-stage {
        touch-action: pan-x;
    }

    /* Fix text overflow on mobile */
    .adpt-customer-voice h2,
    .adpt-videos h2 {
        font-size: 1.3rem !important;
        line-height: 1.4;
    }

    .adpt-customer-voice p,
    .adpt-videos p {
        font-size: 0.95rem !important;
        line-height: 1.5;
    }

    /* Fix compliance content on mobile */
    .compliance-content p {
        font-size: 1rem !important;
        line-height: 1.6;
    }

    .imagine-list li {
        font-size: 0.95rem !important;
        line-height: 1.5;
    }

    /* Fix data integrity lists on mobile */
    .alcoa-list li,
    .concepts-list li,
    .regulations-list li {
        font-size: 0.9rem !important;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    /* Fix product list on mobile */
    .product-list li {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }

    /* Fix mission and values lists on mobile */
    .mission-list li,
    .values-list li {
        font-size: 17px !important;
        line-height: 1.4;
    }

    /* Prevent unwanted touch behaviors */
    .video-container,
    .video-container iframe,
    .video-container video {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    /* Fix carousel touch behavior */
    .owl-carousel {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    /* Prevent image dragging */
    img {
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Fix mobile scrolling issues */
    .owl-stage-outer {
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
    }

    /* Fix mobile video container issues */
    .video-container {
        position: relative;
        overflow: hidden;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
    }

    .video-container iframe {
        width: 100% !important;
        height: 100% !important;
        border: none;
        border-radius: 8px;
    }

    /* Ensure proper video aspect ratio on mobile */
    .adpt-videos .video-container {
        aspect-ratio: 16/9;
        height: auto;
        min-height: 200px;
        max-height: 300px;
    }
}

/* Footer Link Styles - Remove Underlines */
.footer-links ul a,
.footer-links ul a:hover,
.footer-links ul a:focus,
.footer-links ul a:active {
    text-decoration: none !important;
}

.footer-links ul a:hover {
    color: var(--adpt-primary) !important;
}

/* ADPT Specific Branding */
.adpt-primary-btn {
    background-color: var(--adpt-primary);
    border-color: var(--adpt-primary);
    color: white;
}

.adpt-primary-btn:hover {
    background-color: var(--adpt-secondary);
    border-color: var(--adpt-secondary);
    color: white;
}

.adpt-secondary-btn {
    background-color: var(--adpt-green);
    border-color: var(--adpt-green);
    color: white;
}

.adpt-secondary-btn:hover {
    background-color: #00a03a;
    border-color: #00a03a;
    color: white;
}

.adpt-card {
    border-left: 4px solid var(--adpt-primary);
}

.adpt-highlight {
    color: var(--adpt-primary);
}

.adpt-dark-bg {
    background-color: var(--adpt-dark-blue);
    color: white;
}

.adpt-light-bg {
    background-color: var(--adpt-light-blue);
    color: white;
}

.cta-section h1 {
    position: relative;
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-size: 27px;
    color: var(--adpt-dark-blue);
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    text-align: justify;
    font-family: "Montserrat", sans-serif;
    line-height: 41px;
}

.cta-section h1 span {
    display: block;
    font-size: 0.5em;
    line-height: 1.3;
}

.cta-section h1 em {
    font-style: normal;
    font-weight: 600;
}

.cta-section .titles h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 1px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 16px 0;
    grid-gap: 22px;
    padding-bottom: 40px;
}

.cta-section .titles h1:after,
.titles h1:before {
    content: " ";
    display: block;
    border-bottom: 2px solid #ccc;
    background-color: #f8f8f8;
}


#solution .why-content {

    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}

#solution .why-content img {
    height: 54px;
}

#solution .img-fluid {
    width: 100%;
    height: 475px;
}

.why-p {
    font-size: 18px;

}


.why-title {
    padding-top: 15px;
    color: #413e66;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}


.about-content p {
    padding-top: 15px;
    font-size: 18px;
}



/* CTA */

.cta-section {
    padding: 71px 0;
    font-family: "Montserrat", sans-serif;
    /* padding-top: 163px; */
}

.cta-section p {
    font-size: 18px;
    text-align: justify;
}

.cta-section .offer-list-item {
    color: #000;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: color, background-color;
    -o-transition-property: color, background-color;
    transition-property: color, background-color;
    padding: 1.8rem 1rem;
    margin: 1.5rem 0;
    border-radius: .312rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25rem;
}


.cta-section .offer-list-item:hover {
    background-color: var(--adpt-primary);
    color: #fff;
}

.cta-section ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
    padding-top: 15px;

}

.cta-section .pr1 {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 22px;
}

/* end CTA */


.top-titles {
    padding-top: 10rem;
    font-size: 20px;
}



/* security */
.security-download {
    padding: 60px;
}

#downloaddoc .header {
    /* background-color: #f1f1f1; */
    padding: 20px;
    text-align: center;
}

#downloaddoc .content {
    padding: 20px;
    background-color: #fff;
    text-align: center;
    border-left: solid;
    border-color: forestgreen;
}

#downloaddoc .download-button {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

#downloaddoc .download-button:hover {
    background-color: #3e8e41;
    /* Darker green */
}

#downloaddoc .image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* width: 20%; */
    width: 40%;
    border-radius: 5px;
}

#data-s .datasecurity {
    background: var(--adpt-dark-blue);
    color: #fff;
}

#data-s .datacard {
    background: var(--adpt-light-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    border-bottom: 10px solid var(--adpt-green);
    height: auto;
    min-height: 400px;
}

#data-s .datasecurity ul li {
    list-style-type: none;
    font-weight: 500;
}

#data-s .datacard h4 {
    font-size: 22px;
    font-weight: 500;
    height: 40px;
}

#data-s .datacard {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.29px;
}

#data-s .datasecurity h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -.77px;
}

#data-s .contnt {
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
}

#compilanc .card {
    /* color: #2d2b46; */
    background-color: #80b9f34d;

}


.certificate-compliance {
    background-color: #f4f7fb;
}



#c-c .title {
    font-size: 36px;
    padding: 90px;
    color: #212529;

}

#c-c .container {

    border-radius: 8px;
    background-color: #fff;
    padding: 64px 134px;
    margin-bottom: 24px;
}

#c-c .container p {

    font-size: 18px;
}


#c-c .divider {
    display: block;
    margin-top: 16px;
    margin-bottom: 32px;
    width: 100%;
    height: 3px;
    border-radius: 40px;
    /* background-color: #6C55F9; */
    background-color: #0566c96e;
}

#c-c .title-details {
    font-size: 25px;
}


#c-c .fa-sublink {
    font-size: 16px !important;
    line-height: 20px !important;
    font-weight: 700 !important;
    color: #00b243 !important;
    text-decoration: underline !important;
    text-transform: lowercase !important;
}




/* data-handeling */
.datahandeling {
    background: var(--adpt-dark-blue);
    color: #fff;
}

#data-h .datacard {
    background: var(--adpt-light-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    border-bottom: 10px solid var(--adpt-green);
    height: auto;
    min-height: 400px;
}

#data-h .datahandeling ul li {
    list-style-type: none;
    font-weight: 500;
}

#data-h .datacard h4 {
    font-size: 22px;
    font-weight: 500;
    height: 40px;
}

#data-s .datacard {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.29px;
}

#data-h .datahandeling h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -.77px;
}

#data-h .contnt {
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
}

/* avalibility */

#availability .title {
    font-size: 35px;
}

#availability span {

    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

#availability .subtitle {

    font-size: 22px;
}


.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.flex-item {
    margin: 10px;
    width: calc(20% - 20px);
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.flex-item i {
    font-size: 24px;
    color: #28a745;
}

.flex-item h5 {
    margin-top: 10px;
}

.flex-item a {
    margin-top: 20px;
    display: block;
    width: 100%;
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.flex-item a:hover {
    background-color: #2f865f;
}

/* Responsive design */
@media only screen and (max-width: 1200px) {
    .flex-item {
        width: calc(25% - 20px);
    }
}

@media only screen and (max-width: 992px) {
    .flex-item {
        width: calc(33.33% - 20px);
    }

    #c-c .container {
        border-radius: 8px;
        background-color: #fff;
        padding: 64px;
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 768px) {
    .flex-item {
        width: calc(50% - 20px);
    }

    #c-c .container {
        border-radius: 8px;
        background-color: #fff;
        padding: 64px 24px;
        margin-bottom: 24px;
    }

    #c-c .container p {
        font-size: 12px;

    }

    #c-c .title-details {
        font-size: 22px;

    }

}

@media only screen and (max-width: 480px) {
    .flex-item {
        width: calc(100% - 20px);
    }

}

#compilanc {
    margin: 3rem !important;
}

#compilanc .title {

    font-size: 50px;

    font-weight: 700;
    line-height: 72px;
}

#compilanc .subtitle {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
}

#compilanc .subtext {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

#compilanc span {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

#compilanc i {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}


#op .title {

    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

#op .subtext {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

@media (max-width: 478px) {

    #compilanc .title {
        font-size: 34px;
    }

}

#operation .title {
    font-size: 35px;
    font-weight: 700;
    line-height: 56px;
}

#operation span {

    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

#operation .subtitle {

    font-size: 22px;
}


#appsecurity .title {
    font-size: 35px;
    font-weight: 700;
    line-height: 56px;
}

#appsecurity span {

    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

#appsecurity .subtitle {

    font-size: 22px;
}



#appsecurity .subtitles {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}


/* Book a meeting CSS */

.bg-bookappointment {
    background-color: var(--adpt-dark-blue) !important;
}

.bookappsubtext {
    font-size: 15px;
    color: aliceblue;
}


.btn3 {
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 0px;
}

.bookappointment-subtitle {
    padding-top: 5rem;
}


.bookappoint-subtext-2 {

    padding-top: 10rem;
    line-height: 40px;

}

.bookappoint-button {
    text-align: center;
}

.booksubtext {
    line-height: 40px;

}


.bookapp-img {
    max-width: 800px;
    margin: 0 auto;

}

.bookapp-img img {
    width: 100%;
    height: auto;

}

.Bm {
    display: block;
}

@media (max-width: 991px) {

    .Bm {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* Book a meeting CSS */




/* Blog styles removed - using inline styles */


/* Blog media queries removed */



.blog-pagination {
    margin-top: 80px
}

.blog-pagination .page-link {
    font-size: 14px;
    position: relative;
    display: block;
    padding: 0;
    text-align: center;
    margin-left: -1px;
    line-height: 45px;
    width: 45px;
    height: 45px;
    border-radius: 0 !important;
    color: #8a8a8a;
    border: 1px solid #f0e9ff;
    margin-right: 10px
}

.blog-pagination .page-link i,
.blog-pagination .page-link span {
    font-size: 13px
}

.blog-pagination .page-item.active .page-link {
    background-color: #fbf9ff;
    border-color: #f0e9ff;
    color: #888888
}

.blog-pagination .page-item:last-child .page-link {
    margin-right: 0
}


@media (max-width: 767px) {

    .section-title::before {
        left: -49px;
    }

    .section-title::after {
        left: -49px;

    }

}


@media (max-width: 477px) {

    .blog-card-imgs {
        width: 60%;

    }
}

@media (max-width: 1200px) {
    #blog .container {
        max-width: 90%;
    }
}

/* .bookappointment-form {
    padding-top: 16%;
} */
.bookfo {
    background-color: #eeeeee;
}

.contact-form {
    /* padding-top: 16%; */
}

.booknm {
    background-color: var(--adpt-dark-blue) !important;
    margin-top: 30px;

}



@media (max-width: 977px) {
    .bm {
        display: flex;
        flex-direction: column-reverse;
    }

    .bookappointment-form {
        padding-top: 1%;
    }

    .contact-form {
        padding-top: 1%;
    }

}

#blogdetails .blog-card-caption a {
    font-size: 18px;
}

#blogdetails .content {
    font-size: 18px;
}






/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
    position: relative;
    padding: 295px 0px 185px 0px;
}

.main-banner:after {
    content: url(../img/security/banner-right.jpg);
    top: -1px;
    right: 0;
    position: absolute;
    width: auto;
    height: auto;
    z-index: -1;
}

.main-banner::before {
    content: url(../img/security/banner-left.png);
    top: -1px;
    left: 0;
    position: absolute;
    width: 194px;
    height: 655px;
    z-index: -1;
}

.main-banner h6 {
    font-size: 20px;
    color: var(--adpt-purple);
    text-transform: uppercase;
    font-weight: 700;
}

.main-banner .line-dec {
    margin: 30px 0px 20px 0px;
    width: 210px;
    height: 2px;
    background-color: #decdfa;
}

.main-banner h4 {
    font-size: 42px;
    color: #2a2a2a;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 20px;
}

.main-banner h4 em {
    font-style: normal;
    color: var(--adpt-purple);
}

.main-banner h4 span {
    color: var(--adpt-purple);
}


.main-banner p {
    padding-right: 25%;
    margin-bottom: 30px;
}

.main-banner .main-button {
    display: inline-block;
}

.main-banner span {
    display: inline-block;
    margin: 0px 10px 0px 10px;
    color: #7a7a7a;
}

.main-banner .second-button {
    display: inline-block;
}

.main-banner p {
    padding-right: 25%;
    margin-bottom: 30px;
}


/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/

.services {
    position: relative;
    overflow: hidden;
    /* background: #bae7fe; */
    background: var(--adpt-dark-blue);
}

.services .section-heading h2 {
    padding-right: 30px;
    color: #fff;
}

.services::before {
    content: url(../images/services-left.jpg);
    top: 120px;
    left: 0;
    position: absolute;
    width: 844px;
    height: 714px;
    z-index: -1;
}

.services::after {
    content: url(../images/contact-left.jpg);
    bottom: -150px;
    right: 0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    position: absolute;
    width: 103px;
    height: 464px;
    z-index: -1;
}

.services .service-item {
    border: 1px solid #f3d7ff;
    border-radius: 23px;
    padding: 30px;
    background-color: #fff;
    margin-bottom: 30px;
    transition: all .4s;
}

.services .service-item h4 {
    font-size: 20px;
    color: #2a2a2a;
    margin-top: 20px;
    line-height: 30px;
    transition: all .4s;
}

.services .service-item:hover {
    border-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.services .service-item:hover h4 {
    /* color: #5b03e4; */
    color: var(--adpt-purple);
}

/* .services .number{
    
    color: #050446;
    font-size: 20px;
  } */


.spp p {
    line-height: 1.4em;
    margin: 0 0 1.25rem;

}

.ops h1 {
    color: var(--adpt-purple);
}

.ops p {
    font-size: 20px;
    color: #2a2a2a;
    margin-top: 20px;
    line-height: 30px;
    transition: all .4s;
}


@media (max-width: 767px) {
    .main-banner .caption {
        /* background-color: rgb(250, 250, 250); */
        background-color: transparent;

        padding: 60px;
        border-radius: 23px;
    }

    .main-banner:after {
        display: none;
    }
}


@media (max-width: 1400px) {
    .main-banner .caption {
        background-color: rgba(250, 250, 250, 0.95);
        padding: 60px;
        border-radius: 23px;
    }

    .main-banner {
        position: relative;
        padding: 150px 0px 120px 0px;
    }
}


/* #bookmet .form-group{
    background-color: rgba(238, 238, 238, 1.0);
} */

#bookmet .bmtitle {
    font-size: 52px;
    color: #fff;
}

.booknm p {
    /* font-size: 24px; */
    color: #fff;
}

.booknm span {
    /* font-size: 22px; */
    color: #fff;
}

@media (max-width: 1177px) {
    #services .service-item {
        min-height: 273px;
    }

    @media (max-width: 990px) {
        #services .service-item {
            min-height: 0px;
        }
    }
}


.adpt-hero-short .hero-background {
    background-image: url('../images/home-banner.jpg');

}

.adpt-hero-short .hero-overlay {
    background: rgba(0, 0, 0, 0.5) !important;
}

.adpt-hero-short .hero-content {
    margin-top: 65px !important;
    margin-bottom: 15px !important;
}

.adpt-hero-short .hero-title {
    font-size: 40px !important;
    text-align: start !important;
    color: var(--adpt-white) !important;

}

.adpt-hero-short .hero-subtitle {
    font-size: 20px !important;
    text-align: start !important;
    color: var(--adpt-white) !important;

}


.video-section {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    /* background: #000; */
    margin: 0;
    padding: 0;
    z-index: 1;
    clear: both;
}

.fixed-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.fixed-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

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

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

@media (max-width: 768px) {
    .video-section {
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-section .video-container {
        height: 100%;
        width: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-section .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        margin: 0 auto;
    }
}

/* ADPT Vision, Mission & Values Section - Simple 3 Column Layout */
.adpt-vision-mission-values {
    padding: 80px 0;
    /* background-color: var(--adpt-white); */
    padding: 80px 45px 0 45px;
}

.adpt-vision-mission-values h3 {
    font-size: 30px;
    /* font-size: 1.8rem; */
    font-weight: 700;
    color: var(--adpt-light-blue);
    margin-bottom: 25px;
    text-align: start;
    position: relative;
}

/* .adpt-vision-mission-values h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--adpt-primary);
    margin: 15px auto;
    border-radius: 2px;
} */

.adpt-vision-mission-values p {
    font-size: 18px;
    color: var(--adpt-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.tagline {
    /* background: var(--adpt-green); */
    color: var(--adpt-black);
    border-radius: 8px;
    text-align: start;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    font-size: 15px;
    color: var(--adpt-gray);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.mission-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--adpt-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-size: 15px;
    color: var(--adpt-gray);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

/* Icon List Styling */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    font-size: 18px;
    color: var(--adpt-gray);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

/* Mission List Icons */
.mission-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url('../images/list-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Values List Icons */
.values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url('../images/list-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* ADPT Customer Voice Section - Simple 2x2 Grid */
.adpt-customer-voice {
    padding: 80px 45px 0 45px;
    background-color: var(--adpt-white);
}


.adpt-customer-voice h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

/* 
.adpt-customer-voice h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--adpt-primary);
    margin: 20px auto;
    border-radius: 2px;
} */

.adpt-customer-voice h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: start;

}


.adpt-customer-voice h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.adpt-customer-voice p {
    color: var(--adpt-black);
    font-weight: 200;
    line-height: 1.6;
    font-size: 18px;
    /* font-size: 1.5rem; */
    margin: 0;
}

@media (max-width: 768px) {
    .adpt-customer-voice {
        padding: 60px 20px;
        /* padding: 60px 0; */
    }

    .adpt-customer-voice h1 {
        font-size: 2rem;
    }

    .adpt-customer-voice h2 {
        font-size: 1.1rem;
    }

    .adpt-customer-voice p {
        font-size: 0.95rem;
    }
}

/* ADPT Who We Are Section */
.adpt-who-we-are {
    padding: 80px 45px 0 45px;
    /* background-color: var(--adpt-light-gray); */
}

.adpt-who-we-are h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.who-we-are-content h2 {
    /* font-size: 2.5rem; */
    font-size: 26px;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.who-we-are-content p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    /* font-size: 1.2rem; */
    font-size: 18px;
    margin: 0;
}

.who-we-are-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.who-we-are-image:hover {
    transform: translateY(-5px);
}

.who-we-are-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .adpt-who-we-are {
        /* padding: 60px 0; */
        padding: 60px 20px;
    }

    .who-we-are-content h2 {
        font-size: 1.8rem;
    }

    .who-we-are-content p {
        font-size: 1rem;
    }

    .who-we-are-image img {
        height: 300px;
    }
}

/* ADPT Compliance Solutions Section */
.adpt-compliance-solutions {
    padding: 80px 45px 0 45px;
    /* background-color: var(--adpt-white); */
}

.adpt-compliance-solutions h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.compliance-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.compliance-content p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    /* font-size: 1.8rem; */
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.compliance-content h3 {
    /* font-size: 2rem; */
    font-size: 26px;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-bottom: 20px;
    margin-top: 30px;
}

.imagine-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.imagine-list li {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.8rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

/* .imagine-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--adpt-primary);
    font-weight: bold;
    font-size: 1.2rem;
} */

.compliance-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.compliance-image img {
    width: 500px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .adpt-compliance-solutions {
        /* padding: 60px 0; */
        padding: 60px 20px;
    }

    .compliance-content h2 {
        font-size: 1.8rem;
    }

    .compliance-content p {
        font-size: 1rem;
    }

    .compliance-content h3 {
        font-size: 1.5rem;
    }

    .imagine-list li {
        font-size: 1rem;
    }

    .compliance-image img {
        height: 350px;
    }
}

/* ADPT Products Section */
.adpt-products {
    padding: 80px 0;
    background-color: var(--adpt-white);
}

.adpt-products h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.product-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #b8dff9;
}

.product-card-header {
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid #f0f0f0;
}

.product-card-header h2 {
    /* font-size: 2rem; */
    font-size: 26px;
    font-weight: 700;
    color: var(--adpt-primary);
    margin: 0;
    line-height: 1.3;
}

.product-card-body {
    padding: 20px 30px;
    flex-grow: 1;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list li {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    /* font-size: 1.1rem; */
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.product-card-footer {
    padding: 20px 30px 30px 30px;
    border-top: 1px solid #f0f0f0;
}

.btn-primary {
    background-color: var(--adpt-primary);
    border-color: var(--adpt-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--adpt-primary);
    border-color: var(--adpt-primary);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .adpt-products {
        /* padding: 60px 0; */
        padding: 60px 20px;
    }

    .adpt-products h1 {
        font-size: 2rem;
    }

    .product-card-header h2 {
        font-size: 1.5rem;
    }

    .product-list li {
        font-size: 1rem;
    }

    .product-card-header,
    .product-card-body,
    .product-card-footer {
        padding: 20px;
    }
}

/* ADPT Data Integrity Section */
.adpt-data-integrity {
    padding: 80px 45px 0 45px;
    /* background-color: var(--dark); */
}

.adpt-data-integrity h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.data-integrity-content h2 {
    /* font-size: 2rem; */
    font-size: 26px;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-bottom: 20px;
    margin-top: 30px;
    line-height: 1.3;
}

.data-integrity-content p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    /* font-size: 1.2rem; */
    font-size: 18px;
    margin-bottom: 20px;
}

.alcoa-list,
.concepts-list,
.regulations-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.alcoa-list li {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    /* font-size: 1.1rem; */
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
}

.concepts-list li,
.regulations-list li {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    /* font-size: 1.1rem; */
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.btn-primary {
    background-color: var(--adpt-primary);
    border-color: var(--adpt-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: var(--adpt-primary);
    border-color: var(--adpt-primary);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .adpt-data-integrity {
        /* padding: 60px 0; */
        padding: 60px 20px;
    }

    .adpt-data-integrity h1 {
        font-size: 2rem;
    }

    .data-integrity-content h2 {
        font-size: 1.5rem;
    }

    .data-integrity-content p {
        font-size: 1rem;
    }

    .alcoa-list li,
    .concepts-list li,
    .regulations-list li {
        font-size: 1rem;
    }
}

/* ADPT About Us Hero Section */
.adpt-about-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/prodcut-banner-img1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(16, 21, 43, 0.527);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    justify-content: start;
}

.about-hero-content {
    text-align: start;
    color: white;
    padding: 20px 45px 0 45px;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 25px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .adpt-about-hero {
        min-height: 11vh;
        padding: 40px 0;
    }

    .about-hero-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }
}

/* ADPT Team Experts Section */
.adpt-team-experts {
    padding: 80px 0;
    /* background-color: var(--adpt-white); */
}

.adpt-team-experts h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.team-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.team-content p {
    color: var(--text-white);
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.team-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .adpt-team-experts {
        padding: 60px 0;
    }

    .adpt-team-experts h1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .team-content h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .team-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .team-image img {
        height: 300px;
    }
}

/* ADPT Meet Our Team Section */
.adpt-meet-team {
    padding: 80px 0;
    /* background-color: var(--adpt-light-gray); */
}

.adpt-meet-team h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.team-member-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Meet Our Team - Reference Website Style */
.meet-our-team-outer {
    margin-bottom: 40px;
    padding: 20px;

    background: #EFF2F8;
    /* background: white; */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.meet-our-team-outer h4 {
    /* font-size: 1.5rem; */
    font-size: 26px;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 20px;
    text-align: start;
}

.meet-our-team-outer figure {
    text-align: center;
    margin-bottom: 20px;
}

.meet-our-team-outer figure img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    /* border-radius: 50%; */
    /* border: 3px solid var(--adpt-primary); */
}

.meet-our-team-outer p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    font-size: 2.0rem;
    margin-bottom: 15px;
    text-align: justify;
}

/* Simple Team Member Layout */
.team-member-simple {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.team-member-simple .team-member-content {
    flex: 1;
}

.team-member-simple .team-member-image {
    flex: 0 0 120px;
    display: flex;
    align-items: flex-end;
}

.team-member-simple .team-member-image img {
    width: 120px;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.team-member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.team-member-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.team-member-content p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .adpt-meet-team {
        padding: 60px 0;
    }

    .adpt-meet-team h1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .team-member-content h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .team-member-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .team-member-image img {
        height: 300px;
    }
}

/* ADPT Our Clients Section */
.adpt-clients {
    padding: 80px 0;
    background-color: var(--adpt-white);
}

.adpt-clients h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 20px;
    text-align: center;
}

.clients-tagline {
    font-size: 1.5rem;
    color: var(--adpt-black);
    font-weight: 300;
    margin-bottom: 50px;
    text-align: center;
}

.clients-carousel {
    margin-top: 40px;
}

.client-item {
    text-align: center;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    transition: all 0.3s ease;
}

.client-item img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
}

/* Owl Carousel Custom Styling - Hidden Navigation */
.owl-carousel .owl-nav {
    display: none;
}

.owl-carousel .owl-dots {
    display: none;
}

@media (max-width: 768px) {
    .adpt-clients {
        padding: 60px 0;
    }

    .adpt-clients h1 {
        font-size: 2rem;
    }

    .clients-tagline {
        font-size: 1.2rem;
    }

    .client-item {
        height: 100px;
        margin: 0 5px;
    }

    .client-item img {
        max-height: 60px;
        max-width: 120px;
    }
}

/* ADPT Videos Section - Left Right Combination */
.adpt-videos {
    /* padding: 80px 0; */
    padding: 80px 45px 0 45px;
    /* background-color: var(--adpt-white); */
    background-color: var(--adpt-light-gray);
}

.adpt-videos h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.adpt-videos h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-bottom: 15px;
    line-height: 1.3;
    text-align: start;
}

.adpt-videos p {
    color: var(--adpt-black);
    font-weight: 200;
    line-height: 1.6;
    font-size: 1.5rem;
    margin: 0;
}

.video-section .video-container {
    position: relative;
    width: 100%;
    height: 800px;
    /* border-radius: 10px; */
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    margin: 20px 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}

@media (max-width: 768px) {
    .adpt-videos {
        /* padding: 60px 0; */
        padding: 60px 20px;
    }

    .adpt-videos h1 {
        font-size: 2rem;
    }

    .adpt-videos h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .adpt-videos p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .video-container {
        height: 250px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    /* Fix mobile video section layout - ensure proper stacking */
    .adpt-videos .row {
        margin-bottom: 30px;
    }

    .adpt-videos .col-lg-6 {
        margin-bottom: 20px;
        order: 2;
        /* Default order for content */
    }

    /* Video first, then content on mobile for alternating pattern */
    .adpt-videos .row:nth-child(2) .col-lg-6:first-child {
        order: 1;
        /* Video first */
    }

    .adpt-videos .row:nth-child(2) .col-lg-6:last-child {
        order: 2;
        /* Content second */
    }

    .adpt-videos .row:nth-child(3) .col-lg-6:first-child {
        order: 2;
        /* Content first */
    }

    .adpt-videos .row:nth-child(3) .col-lg-6:last-child {
        order: 1;
        /* Video second */
    }

    .adpt-videos .row:nth-child(4) .col-lg-6:first-child {
        order: 1;
        /* Video first */
    }

    .adpt-videos .row:nth-child(4) .col-lg-6:last-child {
        order: 2;
        /* Content second */
    }

    .adpt-videos .row:nth-child(5) .col-lg-6:first-child {
        order: 2;
        /* Content first */
    }

    .adpt-videos .row:nth-child(5) .col-lg-6:last-child {
        order: 1;
        /* Video second */
    }

    .adpt-videos .row:nth-child(6) .col-lg-6:first-child {
        order: 1;
        /* Video first */
    }

    .adpt-videos .row:nth-child(6) .col-lg-6:last-child {
        order: 2;
        /* Content second */
    }

    /* Additional mobile improvements */
    .adpt-videos .row {
        display: flex;
        flex-direction: column;
    }

    .adpt-videos .col-lg-6 {
        width: 100%;
        padding: 0 15px;
    }

    /* Ensure proper spacing between video and text */
    .adpt-videos .video-container+* {
        margin-top: 20px;
    }

    /* Fix text alignment on mobile */
    .adpt-videos h2 {
        text-align: left;
        margin-top: 20px;
    }

    .adpt-videos p {
        text-align: left;
        margin-bottom: 15px;
    }
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.value-item {
    background: var(--adpt-light-gray);
    padding: 12px 8px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--adpt-dark-blue);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.value-item:hover {
    background: var(--adpt-primary);
    color: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .adpt-vision-mission-values {
        /* padding: 60px 0; */
        padding: 60px 20px;
    }

    .adpt-vision-mission-values h3 {
        font-size: 1.5rem;
    }

    .adpt-vision-mission-values p {
        font-size: 0.95rem;
    }

    .mission-list li {
        font-size: 0.95rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .value-item {
        padding: 10px 6px;
        font-size: 0.85rem;
    }

    .tagline {
        font-size: 1rem;
        padding: 12px;
    }
}



.adpt-partners h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.partner-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.partner-image {
    flex: 1;
    text-align: center;
}

.partner-image img {
    /* width: 150px;
    height: 100px; */
    width: 900px;
    height: 300px;
    object-fit: contain;
    background-color: #c1e2f9;
}

.partner-content {
    flex: 1;
    text-align: start;
}

.partner-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 15px;
}

.partner-content p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.partners-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-top: 30px;
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .partner-image {
        flex: none;
        margin-bottom: 20px;
    }

    .partner-content h3 {
        font-size: 1.5rem;
    }

    .partner-content p {
        font-size: 1rem;
    }
}

/* ADPT Products Page Styles */
.adpt-products-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.products-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/products.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.products-hero-overlay {
    position: relative;
    z-index: 2;
    /* background: rgba(16, 21, 43, 0.527); */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    /* justify-content: center; */
    justify-content: start;
    padding: 20px 45px 0 45px;
}

.products-hero-content {
    text-align: start;
    color: white;
    align-items: center;
}

.products-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 25px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* OC11 Systems Section */
.adpt-oc11-systems {
    padding: 80px 0;
    background-color: var(--adpt-white);
}

.adpt-oc11-systems h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.product-module-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    align-items: start;
    gap: 30px;
}

.product-module-image {
    flex: 0 0 420px;
    text-align: center;
}

.product-module-image img {
    width: 420px;
    height: 300px;
    object-fit: contain;
    background-color: #c1e4f8;
}

.product-module-content {
    flex: 1;
}

.product-module-content h3 {
    /* font-size: 1.8rem; */
    font-size: 22px;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 15px;
}

.product-module-content p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    /* font-size: 1.1rem; */
    font-size: 18px;
    margin: 0;
}

/* Part 11 Compliant Spreadsheet Section */
.adpt-part11-spreadsheet {
    padding: 80px 0;
    background-color: var(--adpt-light-gray);
}

.adpt-part11-spreadsheet h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.part11-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.part11-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.part11-features li {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    font-size: 18px;
    /* font-size: 1.2rem; */
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

/* List Icon Styling for Part 11 Features */
.part11-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url('../images/list-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.part11-info h3 {
    font-size: 2.2rem;
    /* font-size: 22px; */
    font-weight: 600;
    color: var(--adpt-primary);
    margin-bottom: 15px;
}

.part11-info p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0;
}

.part11-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.part11-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.compliance-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-top: 30px;
    font-style: italic;
}

/* PDF Download Button Styling */
.download-section {
    margin-top: 20px;
}

.pdf-down {
    display: flex !important;
    padding: 20px;
    border: 2px solid #003893;
    border-radius: 10px;
    background: #EFF2F8;
    max-width: 350px;
    align-items: center;
    text-decoration: none;
    color: var(--adpt-primary);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    gap: 15px;
}

.pdf-down:hover {
    background: #EFF2F8;
    color: var(--adpt-primary);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pdf-down i {
    font-size: 4.5rem;
    /* color: #ff0000; */
    color: #000000;
}

.pdf-down span {
    font-weight: 600;
}

@media (max-width: 768px) {
    .adpt-products-hero {
        min-height: 50vh;
    }

    .products-hero-title {
        font-size: 2.5rem;
    }

    .adpt-oc11-systems,
    .adpt-part11-spreadsheet {
        padding: 60px 0;
    }

    .adpt-oc11-systems h1,
    .adpt-part11-spreadsheet h1 {
        font-size: 2rem;
    }

    .product-module-card {
        flex-direction: column;
        text-align: start;
        /* padding: 30px 20px; */
        padding: 30px 50px;
    }

    .product-module-image {
        flex: none;
        margin-bottom: 20px;
    }

    .product-module-image img {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }

    .product-module-content h3 {
        font-size: 1.5rem;
    }

    .product-module-content p {
        font-size: 1rem;
    }

    .part11-content h2 {
        font-size: 1.8rem;
    }

    .part11-image img {
        height: 300px;
    }

    .pdf-down {
        padding: 15px;
        max-width: 100%;
        font-size: 0.9rem;
    }

    .pdf-down i {
        font-size: 1.2rem;
    }
}

/* ADPT Resources Page Styles */
.adpt-resources-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.resources-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/prodcut-banner-img1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.resources-hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(16, 21, 43, 0.527);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-hero-content {
    text-align: start;
    color: white;
    align-items: start;
}

.resources-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 25px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Quality System Section */
.adpt-quality-system {
    padding: 80px 0;
    background-color: var(--adpt-white);
}

.adpt-quality-system h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.quality-system-content {
    padding: 40px 0;
}

.quality-system-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 30px;
    line-height: 1.3;
}

.quality-system-text {
    margin-bottom: 40px;
}

.quality-system-text p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: justify;
}

.quality-system-text em {
    font-style: italic;
    color: var(--adpt-primary);
    font-weight: 600;
}

.fda-reference {
    background: var(--adpt-light-gray);
    /* padding: 30px; */
    border-radius: 10px;
    margin-bottom: 40px;
    /* border-left: 4px solid var(--adpt-primary); */
}

.fda-reference h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-bottom: 15px;
}

.fda-link {
    color: var(--adpt-primary);
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.fda-link:hover {
    color: var(--adpt-secondary);
    text-decoration: underline;
}

.resources-navigation h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-bottom: 20px;
}

.resources-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resources-links li {
    margin-bottom: 10px;
}

.resource-link {
    color: var(--adpt-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 0;
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: var(--adpt-secondary);
    border-bottom-color: var(--adpt-secondary);
    text-decoration: none;
}

.compliance-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-top: 30px;
    font-style: italic;
}

/* Quality System Image and Buttons Section */
.quality-system-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quality-system-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.quality-buttons-section {
    padding: 40px 0;
}

.quality-buttons-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 30px;
    text-align: center;
}

.quality-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: white;
    border: 2px solid var(--adpt-primary);
    border-radius: 10px;
    text-decoration: none;
    color: var(--adpt-primary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quality-btn:hover {
    background: var(--adpt-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.quality-btn i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.quality-btn span {
    font-weight: 600;
}

@media (max-width: 768px) {
    .adpt-resources-hero {
        min-height: 50vh;
    }

    .resources-hero-title {
        font-size: 2.5rem;
    }

    .adpt-quality-system {
        padding: 60px 0;
    }

    .adpt-quality-system h1 {
        font-size: 2rem;
    }

    .quality-system-content h2 {
        font-size: 1.8rem;
    }

    .quality-system-text p {
        font-size: 1rem;
    }

    .fda-reference {
        padding: 20px;
    }

    .fda-reference h3 {
        font-size: 1.5rem;
    }

    .resources-navigation h3 {
        font-size: 1.5rem;
    }

    .resource-link {
        font-size: 1rem;
    }

    .quality-system-image img {
        height: 300px;
    }

    .quality-buttons-section h3 {
        font-size: 1.5rem;
    }

    .quality-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .quality-btn i {
        font-size: 1.2rem;
    }

    .quality-system-content {
        padding: 20px 0;
    }

    .quality-system-content h2 {
        font-size: 2rem;
    }
}

/* FDA Regulation Page Styles - Same as Quality System but with different background */
.adpt-fda-regulation-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.fda-regulation-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/prodcut-banner-img1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.fda-regulation-hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(16, 21, 43, 0.527);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 20px 45px 0 45px;
}

.fda-regulation-hero-content {
    text-align: start;
    color: white;
    align-items: start;
}

.fda-regulation-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 25px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* FDA Regulation Section */
.adpt-fda-regulation {
    /* padding: 80px 0; */
    padding: 60px 20px;
    background-color: var(--adpt-white);
}

.adpt-fda-regulation h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.fda-regulation-content {
    padding: 40px 0;
}

.fda-regulation-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 30px;
    line-height: 1.3;
}

.fda-regulation-text {
    margin-bottom: 40px;
}

.fda-regulation-text p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: justify;
}

.fda-regulation-text em {
    font-style: italic;
    color: var(--adpt-primary);
    font-weight: 600;
}

.fda-regulation-text h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-bottom: 20px;
    margin-top: 30px;
}

.fda-reference {
    background: linear-gradient(135deg, var(--adpt-primary) 0%, var(--adpt-secondary) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.fda-reference h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.fda-reference p {
    margin: 0;
    font-size: 1.1rem;
}

.fda-link {
    color: var(--adpt-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fda-link:hover {
    color: var(--adpt-secondary);
    text-decoration: underline;
}

/* FDA Regulation Image and Buttons Section */
.fda-regulation-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fda-regulation-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.fda-regulation-buttons-section {
    padding-left: 30px;
}

.fda-regulation-buttons-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 30px;
}

.fda-regulation-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fda-regulation-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: white;
    border: 2px solid var(--adpt-primary);
    border-radius: 10px;
    color: var(--adpt-primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fda-regulation-btn:hover {
    background: var(--adpt-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.fda-regulation-btn i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.fda-regulation-btn span {
    font-weight: 600;
}

/* Mobile Responsive for FDA Regulation */
@media (max-width: 768px) {
    .adpt-fda-regulation-hero {
        min-height: 40vh;
        padding: 40px 0;
    }

    .fda-regulation-hero-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .adpt-fda-regulation {
        padding: 40px 20px;
    }

    .adpt-fda-regulation h1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 30px;
    }

    /* Fix image and buttons section for mobile */
    .adpt-fda-regulation .row.align-items-center {
        flex-direction: column;
    }

    .adpt-fda-regulation .col-lg-9 {
        order: 1;
        margin-bottom: 30px;
    }

    .adpt-fda-regulation .col-lg-3 {
        order: 2;
        width: 100%;
        padding: 0 15px;
    }

    .fda-regulation-image {
        margin-bottom: 20px;
    }

    .fda-regulation-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .fda-regulation-buttons-section {
        padding-left: 0;
        text-align: center;
    }

    .fda-regulation-buttons {
        gap: 15px;
    }

    .fda-regulation-btn {
        padding: 15px 20px;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
    }

    .fda-regulation-btn i {
        font-size: 1.1rem;
    }

    .fda-regulation-content {
        padding: 20px 0;
    }

    .fda-regulation-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: left;
    }

    .fda-regulation-text {
        margin-bottom: 30px;
    }

    .fda-regulation-text h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .fda-regulation-text ul {
        margin-bottom: 15px;
    }

    .fda-regulation-text li {
        margin-bottom: 8px;
    }

    .fda-link {
        font-size: 0.9rem;
        word-break: break-all;
    }

    .fda-reference {
        padding: 20px;
        background: var(--adpt-light-gray);
        border-radius: 10px;
        margin-top: 30px;
    }

    .fda-reference h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .fda-reference p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

/* Global Regulations Page Styles - Same as Quality System but with different background */
.adpt-global-regulations-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
}

.global-regulations-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/prodcut-banner-img1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.global-regulations-hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(16, 21, 43, 0.527);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 20px 45px 0 45px;
}

.global-regulations-hero-content {
    text-align: start;
    color: white;
    align-items: start;
}

.global-regulations-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 25px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Global Regulations Section */
.adpt-global-regulations {
    /* padding: 80px 0; */
    padding: 60px 20px;
    background-color: var(--adpt-white);
}

.adpt-global-regulations h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.global-regulations-content {
    padding: 40px 0;
}

.global-regulations-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 30px;
    line-height: 1.3;
}

.global-regulations-text {
    margin-bottom: 40px;
}

.global-regulations-text p {
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: justify;
}

.global-regulations-text em {
    font-style: italic;
    color: var(--adpt-primary);
    font-weight: 600;
}

.global-regulations-text h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--adpt-primary);
    margin-bottom: 20px;
    margin-top: 30px;
}

/* Global Regulations Image and Buttons Section */
.global-regulations-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.global-regulations-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.global-regulations-buttons-section {
    padding-left: 30px;
}

.global-regulations-buttons-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 30px;
}

.global-regulations-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.global-regulations-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: white;
    border: 2px solid var(--adpt-primary);
    border-radius: 10px;
    color: var(--adpt-primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.global-regulations-btn:hover {
    background: var(--adpt-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.global-regulations-btn i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.global-regulations-btn span {
    font-weight: 600;
}

/* Mobile Responsive for Global Regulations */
@media (max-width: 768px) {
    .adpt-global-regulations-hero {
        min-height: 40vh;
        padding: 40px 20px;
    }

    .global-regulations-hero-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .adpt-global-regulations {
        padding: 40px 20px;
    }

    .adpt-global-regulations h1 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 30px;
    }

    /* Fix image and buttons section for mobile */
    .adpt-global-regulations .row.align-items-center {
        flex-direction: column;
    }

    .adpt-global-regulations .col-lg-9 {
        order: 1;
        margin-bottom: 30px;
    }

    .adpt-global-regulations .col-lg-3 {
        order: 2;
        width: 100%;
        padding: 0 15px;
    }

    .global-regulations-image {
        margin-bottom: 20px;
    }

    .global-regulations-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .global-regulations-buttons-section {
        padding-left: 0;
        text-align: center;
    }

    .global-regulations-buttons {
        gap: 15px;
    }

    .global-regulations-btn {
        padding: 15px 20px;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
    }

    .global-regulations-btn i {
        font-size: 1.1rem;
    }

    .global-regulations-content {
        padding: 20px 0;
    }

    .global-regulations-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: left;
    }

    .global-regulations-text {
        margin-bottom: 30px;
    }

    .global-regulations-text h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .global-regulations-text ul {
        margin-bottom: 15px;
    }

    .global-regulations-text li {
        margin-bottom: 8px;
    }

    .fda-link {
        font-size: 0.9rem;
        word-break: break-all;
    }

    .fda-reference {
        padding: 20px;
        background: var(--adpt-light-gray);
        border-radius: 10px;
        margin-top: 30px;
    }

    .fda-reference h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .fda-reference p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

/* Careers Page Styles - Same as Quality System but with different background */
.adpt-careers-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 10;
    width: 100%;
}

.careers-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/career-banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

.careers-hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(16, 21, 43, 0.527);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 20px 45px 0 45px;
}

.careers-hero-content {
    text-align: start;
    color: white;
    align-items: start;
}

.careers-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-top: 25px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Careers Section */
.adpt-careers {
    /* padding: 80px 0; */
    padding: 60px 20px;
    background-color: var(--adpt-white);
}

.adpt-careers h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--adpt-primary);
    margin-bottom: 50px;
    text-align: center;
}

.careers-content {
    padding: 40px 0;
}

/* Job Positions Table */
.job-positions-table {
    margin-bottom: 50px;
}

.job-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.job-table thead th {
    background: #0AA8F3;
    color: white;
    font-weight: 600;
    border: none;
    padding: 20px 15px;
    /* font-size: 1.1rem; */
    font-size: 18px;

}

.job-table tbody td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    /* font-size: 1rem; */
    font-size: 16px;
}

.job-table tbody tr:hover {
    background-color: #f8f9fa;
}

.job-apply-btn {
    background: var(--adpt-primary);
    border: none;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    background: var(--adpt-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Careers Buttons */
.careers-buttons-section {
    text-align: center;
    margin-top: 40px;
}

.careers-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.careers-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border: 2px solid var(--adpt-primary);
    border-radius: 10px;
    color: var(--adpt-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.careers-btn:hover {
    background: var(--adpt-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Mobile Responsive for Careers */
@media (max-width: 768px) {
    .adpt-careers-hero {
        min-height: 50vh;
    }

    .careers-hero-title {
        font-size: 2.5rem;
    }

    .adpt-careers {
        padding: 60px 20px;
    }

    .adpt-careers h1 {
        font-size: 2rem;
    }

    .job-table {
        font-size: 0.9rem;
    }

    .job-table thead th,
    .job-table tbody td {
        padding: 15px 10px;
    }

    .careers-buttons {
        flex-direction: column;
        align-items: center;
    }

    .careers-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .table-responsive {
        font-size: 0.8rem;
    }
}

/* Modal Content Scroll - Only padding and colors */
.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px;
}

.modal-body h2 {
    color: var(--adpt-primary);
    margin-bottom: 20px;
}

.modal-body h3 {
    color: var(--adpt-primary);
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body strong {
    color: var(--adpt-primary);
}

.modal-body .mb-4 {
    padding-bottom: 15px;
}

.modal-body p {
    font-size: 1.5rem;
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    padding: 15px;
}

.modal-body ul {
    font-size: 1.5rem;
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    padding: 15px;
    list-style-type: disc;
    padding-left: 40px;
}

.modal-body li {
    font-size: 1.5rem;
    color: var(--adpt-black);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* FDA Current Thinking Page - Additional Styles */
.fda-current-thinking-hero {
    position: relative;
    overflow: hidden;
}

.fda-current-thinking-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, var(--adpt-white));
    z-index: 3;
}

/* Enhanced download links with better spacing */
.download-item {
    position: relative;
    overflow: hidden;
}

.download-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 56, 147, 0.1), transparent);
    transition: left 0.6s ease;
}

.download-item:hover::before {
    left: 100%;
}

/* Button animations */
.fda-current-thinking-btn {
    position: relative;
    overflow: hidden;
}

.fda-current-thinking-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.fda-current-thinking-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Content section enhancements */
.fda-current-thinking-content {
    position: relative;
}

/* 
.fda-current-thinking-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--adpt-primary), var(--adpt-secondary));
    border-radius: 2px;
} */

/* Image hover effects */
.fda-current-thinking-image {
    position: relative;
    overflow: hidden;
}

.fda-current-thinking-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 56, 147, 0.1), rgba(10, 152, 192, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.fda-current-thinking-image:hover::after {
    opacity: 1;
}

/* Link hover animations */
.fda-link {
    position: relative;
    display: inline-block;
}

.fda-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--adpt-secondary);
    transition: width 0.3s ease;
}

.fda-link:hover::after {
    width: 100%;
}

/* List item animations */
.global-regulations-text ul li {
    transition: all 0.3s ease;
}

.global-regulations-text ul li:hover {
    background: rgba(0, 56, 147, 0.05);
    padding-left: 35px;
}

.global-regulations-text ul li:hover::before {
    transform: scale(1.2);
    color: var(--adpt-secondary);
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .fda-current-thinking-hero::after {
        height: 30px;
    }

    .download-item::before {
        display: none;
    }

    .fda-current-thinking-btn::before {
        display: none;
    }

    .fda-current-thinking-content::before {
        width: 60px;
        height: 3px;
    }

    /* Stack layout on mobile */
    .adpt-fda-current-thinking .row {
        flex-direction: column;
    }

    .adpt-fda-current-thinking .col-lg-9,
    .adpt-fda-current-thinking .col-lg-3 {
        width: 100%;
        margin-bottom: 20px;
    }

    /* Improve mobile spacing */
    .download-links {
        margin-bottom: 30px;
    }

    .fda-current-thinking-buttons-section {
        margin-top: 0;
    }
}

/* Tablet specific improvements */
@media (min-width: 769px) and (max-width: 1024px) {
    .adpt-fda-current-thinking .col-lg-9 {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .adpt-fda-current-thinking .col-lg-3 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .download-item {
        padding: 18px;
    }

    .fda-current-thinking-buttons-section {
        padding: 25px;
    }
}

/* Large desktop optimizations */
@media (min-width: 1200px) {
    .adpt-fda-current-thinking {
        padding: 100px 0;
    }

    .fda-current-thinking-hero-title {
        font-size: 4rem;
    }

    .adpt-fda-current-thinking h1 {
        font-size: 3rem;
    }

    .download-item {
        padding: 25px;
    }

    .fda-current-thinking-buttons-section {
        padding: 35px;
    }
}

/* Print styles */
@media print {
    .adpt-fda-current-thinking-hero {
        background: white !important;
        color: black !important;
    }

    .fda-current-thinking-hero-title {
        color: black !important;
        text-shadow: none !important;
    }

    .download-item,
    .fda-current-thinking-btn {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    .fda-current-thinking-image img {
        filter: grayscale(100%) !important;
    }
}

/* Accessibility improvements */
.fda-current-thinking-btn:focus,
.download-link:focus,
.fda-link:focus {
    outline: 2px solid var(--adpt-secondary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .download-item {
        border-width: 3px;
        border-color: var(--adpt-black);
    }

    .fda-current-thinking-btn {
        border: 2px solid var(--adpt-white);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .download-item,
    .fda-current-thinking-btn,
    .fda-current-thinking-image img,
    .fda-link,
    .global-regulations-text ul li,
    .quality-btn,
    .quality-system-image img {
        transition: none !important;
        transform: none !important;
    }

    .download-item::before,
    .fda-current-thinking-btn::before,
    .fda-current-thinking-image::after,
    .fda-link::after,
    .quality-btn::before,
    .quality-system-image::after {
        display: none !important;
    }
}

/* Quality System Page - Additional Styles */
.adpt-quality-system-hero {
    position: relative;
    overflow: hidden;
}

.adpt-quality-system-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    z-index: 3;
}

/* Enhanced quality system image with better spacing */
/* .quality-system-image {
    position: relative;
    overflow: hidden;
}

.quality-system-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 56, 147, 0.1), rgba(10, 152, 192, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.quality-system-image:hover::after {
    opacity: 1;
} */

.quality-system-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

..quality-system-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Quality system button animations */
.quality-btn {
    position: relative;
    overflow: hidden;
}

.quality-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.quality-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Content section enhancements for quality system */
.quality-system-content {
    position: relative;
}

/* .quality-system-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--adpt-primary), var(--adpt-secondary));
    border-radius: 2px;
} */

/* Quality system link hover animations */
.quality-system-content .fda-link {
    position: relative;
    display: inline-block;
}

.quality-system-content .fda-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--adpt-secondary);
    transition: width 0.3s ease;
}

.quality-system-content .fda-link:hover::after {
    width: 100%;
}

/* Responsive enhancements for quality system */
@media (max-width: 768px) {
    .adpt-quality-system-hero::after {
        height: 30px;
    }

    .quality-btn::before {
        display: none;
    }

    .quality-system-content::before {
        width: 60px;
        height: 3px;
    }

    /* Stack layout on mobile for quality system */
    .adpt-quality-system .row {
        flex-direction: column;
    }

    .adpt-quality-system .col-lg-9,
    .adpt-quality-system .col-lg-3 {
        width: 100%;
        margin-bottom: 20px;
    }

    .quality-buttons-section {
        margin-top: 0;
    }
}

/* Print styles for quality system */
@media print {
    .adpt-quality-system-hero {
        background: white !important;
        color: black !important;
    }

    .quality-system-hero-title {
        color: black !important;
        text-shadow: none !important;
    }

    .quality-btn {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }

    .quality-system-image img {
        filter: grayscale(100%) !important;
    }
}

/* Accessibility improvements for quality system */
.quality-btn:focus {
    outline: 2px solid var(--adpt-secondary);
    outline-offset: 2px;
}

/* High contrast mode support for quality system */
@media (prefers-contrast: high) {
    .quality-btn {
        border: 2px solid var(--adpt-white);
    }
}



#toTop {
    padding: 10px;
    text-align: center;
    background: #0AA8F3;
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
    z-index: 99;
    transition: 0.6s;
    border-radius: 8px;
    border: 1px solid #fff;
}

#toTop:hover {
    background-color: #003893;
}

#toTop:hover img {
    filter: none;
}

/* Clean Fixed Social Sidebar Implementation */