@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');


/* General Styles */
:root {
    --primary-color: #0066cc;
    --danger-color: #ED1C24;
    --dark-blue: #001233;

}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    font-family: 'Roboto', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    background-color: black !important;
    color: white !important;
    overflow-x: hidden;
}


.fa,
.far,
.fas {
    font-family: "Font Awesome 5 Free" !important;
}

.fab {
    font-family: "Font Awesome 5 Brands" !important;
}

.bg-black {
    background-color: #000 !important;
}

/* Custom button hover effect */
.btn-danger:hover {
    background-color: rgb(210, 17, 24);
    color: rgb(255, 255, 255);
    border-color: rgb(198, 16, 23);
}


.btn-danger {
    color: #fff !important;
    background-color: #ed1c24 !important;
    border-color: #ed1c24 !important;
}



/* Hero Carousel Section */

.herohome-title {
    font-size: 4rem !important;
    line-height: 1.2 !important;
    margin-bottom: 2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.g-4 {
    row-gap: 24px !important;
}

.hero-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 0 1rem !important;
}


#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

#heroCarousel {
    height: 100%;
    width: 100%;
}

#heroCarousel .carousel-inner {
    height: 100%;
}

#heroCarousel .carousel-item {
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-bg.jpg') center/cover;
}

#heroCarousel .hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}


.hero-subtitle2 {
    font-size: 36px;
    line-height: 1.6;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 3rem;
}

.hero-subtitle3 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 75px 0;
}

#features {
    padding: 6rem 0;
}

.display-3 {
    font-size: 96px;
    font-weight: 700;
    color: #ec1c24;
    text-shadow: 5px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-muted {
    --bs-text-opacity: 1 !important;
    color: #dee2e6 !important;
}

#stats {
    padding: 6rem 0;
}


.get-started-btn {
    font-size: 1.5rem !important;
    padding: 0.5rem 2rem !important;
    border-radius: 10px !important;
    text-transform: none !important;
    transition: all 0.3s ease;
    background-color: var(--danger-color) !important;
    border: none;
    font-weight: 700;
    letter-spacing: 0.5px !important;
    color: #ffffff !important;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.5);
    background-color: #d73535;
    color: #ffffff;
}

/* Carousel Indicators */
#heroCarousel .carousel-indicators {
    bottom: 30px;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--danger-color);
    transform: scale(1.2);
}

/* Carousel Fade Effect */
#heroCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s;
}

/* Individual slide backgrounds */
/* Individual slide backgrounds */
.carousel-item:nth-child(1) .hero-slide {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/hero1.png') center/cover;
}

.carousel-item:nth-child(2) .hero-slide {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)),
        url('../images/banner_crypto_1.jpg') center/cover;
}

.carousel-item:nth-child(3) .hero-slide {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('../images/hero3.png') center/cover;
}

/* Features Section */


.feature-card {
    background: #D1D3D4;

}

.feature-card {

    padding: 1.4rem 1rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1.5px solid var(--danger-color) !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #FFFFFF;
}




.icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
    color: black !important;
}

/* Stats Section */
.stat-card {
    max-width: 300px !important;
    border-radius: 15px !important;
    padding: 16px 24px !important;
    height: fit-content !important;
    transition: all 0.3s ease;
    border: none;
}

.stat-card p {
    font-size: 24px !important;
    font-weight: 700;
    line-height: 28px;
    color: black;
}

.stat-card span {
    font-size: 24px !important;
    font-weight: 500;
    color: black;
}


.stat-card small {
    color: black;

}


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

/* Zero Trust Section */
#zero-trust {
    padding: 6rem 0;
    background: #000000;
}

.zero-trust-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
    background: transparent;
}

.circle-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    border: 1.5px solid var(--danger-color);
    background-color: #D1D3D4;

}

.circle-icon>span {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon .zero-trust-title {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials styling */
.testimonial-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-logo {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    border-radius: 8px;
    background: #ffffff;
    padding: 8px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333333;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none !important;
}


.testimonial-item a:hover {
    color: var(--danger-color);
    text-decoration-color: var(--danger-color);
}

.zero-trust-card:hover .circle-icon {
    background: #ffffff;
    color: #0066cc;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.zero-trust-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    text-align: center;
    transition: all 0.3s ease;
    padding: 0 0.5rem;
}

.zero-trust-card:hover .zero-trust-title {
    color: #000000;
}

.circle-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

#zero-trust .herohome-title {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

#zero-trust .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.1rem;
}

/* CTA Section */
#cta {
    padding: 6rem 0;
    background: #000 !important;
}

.customer-slider {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    background: #dee2e6;
    border-radius: 15px;
    margin-bottom: 4rem;
}

.slide-track {
    display: flex;
    width: calc(200px * 16);
    /* 8 logos × 2 for the loop */
    animation: scroll 30s linear infinite;
}

.slide {
    width: 200px;
    padding: 0 20px;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.3s ease;
}

.slide img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 8));
        /* 8 logos */
    }
}

/* CTA Buttons Styling */
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.brandSubtitle {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* Footer Styling */
footer {
    border-top: 1px solid #333;
}

.funded-by-section .badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

/* Learn More Button Styling */
.btn-outline-light {
    background-color: var(--danger-color) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 8px 10px !important;
    border-radius: 8px !important;
    border: none !important;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}


/* product page */

.SectionProduct {
    background: #060203;
    display: flex;
}

.product-image {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Product Page Styles */
.advance-content {
    padding: 4rem 2rem !important;
}

.advance-content-title {
    color: #fff !important;
    text-align: center !important;
    padding: 50px !important;
    font-size: 32px !important;
    font-weight: 700 !important;
}

.crypto-list li {
    font-size: 24px !important;
    padding: 10px 0 !important;
}

.crypto-image {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.feature-image {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

.quantum-list li {
    font-size: 24px !important;
    padding: 10px 0 !important;
}


/* Responsive Adjustments */
@media (max-width: 768px) {

    .col-md-4 {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;

    }

    .customer-slider {
        padding: 1.3rem 0;
    }


    #hero {
        height: 50vh !important;
    }

    .herohome-title {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-content {
        padding: 0 2rem !important;
    }

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

    .hero-subtitle2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-subtitle3 {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .get-started-btn {
        font-size: 1rem;
        padding: 0.6rem 2rem;
    }

    #heroCarousel .carousel-indicators button {
        display: none;
    }

    .stat-card {
        margin-bottom: 1rem;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .feature-card {
        padding: 2rem 1.5rem !important;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .stat-card {
        max-width: 100%;
        margin: 0 30px;
    }

    .circle-icon {
        margin: 0 auto 0rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 200px;
    }

    .herohome-title {
        font-size: 1.5rem !important;
    }

    .hero-subtitle3 {
        margin: 35px 0;
    }

    .testimonial-item {
        display: flex;
        align-items: center;
        padding-left: 10px;
        margin-bottom: 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .testimonial-logo {
        margin-right: 0;
        margin-bottom: 1rem;
        margin-right: 15px;
    }

    .testimonial-text {
        font-size: 1.2rem !important;
    }

    .zero-trust-card {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle3 {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    /* Product Page Styles */
    .advance-content {
        padding: 2rem 1.5rem !important;
    }

    .advance-content-title {
        padding: 2rem !important;
        font-size: 1.5rem !important;
    }

    .crypto-list li {
        font-size: 1.2rem !important;
        padding: 10px 0 !important;
    }

    .quantum-list li {
        font-size: 1.2rem !important;
        padding: 10px 0 !important;
    }

}

/* Clean card hover effects */
.leadership-card {
    transition: all 0.3s ease;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Image hover effects */
.leadership-card:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Card body hover effects */
.leadership-card:hover .leadership-card-body {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Title hover effect */
.leadership-card:hover .leadership-card-title {
    color: #fff;
    transition: all 0.3s ease;
}

/* Position text hover effect */
.leadership-card:hover .text-danger {
    color: #ff6b6b;
    transition: all 0.3s ease;
}

/* Button hover effect */
.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
    transition: all 0.3s ease;
}

/* Leadership More Info Button hover effect */
.leadership-more-info-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.4);
    transition: all 0.3s ease;
}

/* Figma-Accurate Design Specifications */
.leadership-container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* Leadership Section */
.leadership-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Leadership Background */
.leadership-bg-black {
    background-color: #000;
}

/* Leadership Row */
.leadership-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Leadership Text Colors */
.leadership-text-white {
    color: #ffffff;
}

/* Leadership Font Weight */
.leadership-font-weight-bold {
    font-weight: 700;
}

/* Leadership Heading Sizes */
.leadership-h4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Leadership Margins */
.leadership-mb-2 {
    margin-bottom: 0.5rem;
}

.leadership-mt-2 {
    margin-top: 0.5rem;
}

/* Typography Scale - Updated Font Sizes */
.leadership-main-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

.leadership-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0px;
}

.btn {
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* Leadership More Info Button - Unique Styling */
.leadership-more-info-btn {
    font-size: 18px;
    font-weight: 700;
    padding: 8px;
    border-radius: 10px;
    letter-spacing: 0.3px;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    max-width: 50%;
    margin: 0 auto;
}

/* Leadership Job Title - Unique Styling */
.leadership-job-title {
    color: #8E8C8D;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Leadership Card Body - Unique Styling */
.leadership-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Leadership Profile Images - Full Width */
.leadership-profile-img {
    width: 100%;
    height: auto;
    max-width: 200px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

/* Section Spacing - Figma Accurate - Now handled by leadership-section */

/* Card Spacing - Figma Accurate */
.leadership-card {
    padding: 24px;
    margin-bottom: 16px;
}

/* Enhanced Responsive Design - Figma Accurate */
@media (max-width: 1200px) {
    .leadership-container {
        max-width: 1000px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .leadership-main-title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .leadership-container {
        max-width: 800px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .leadership-main-title {
        font-size: 48px;
    }

    .leadership-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .leadership-container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .leadership-main-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .leadership-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .leadership-card {
        padding: 20px;
        margin-bottom: 16px;
    }

    .leadership-card-body {
        padding: 1.25rem;
    }

    .leadership-profile-img {
        max-width: 180px;
    }

    .leadership-card:hover {
        transform: translateY(-3px);
    }

    .leadership-card:hover img {
        transform: scale(1.03);
    }

    .leadership-card-title {
        font-size: 16px;
    }

    .btn {
        font-size: 11px;
        padding: 7px 14px;
    }

    .leadership-more-info-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .leadership-job-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .leadership-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .leadership-main-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 32px;
    }

    .leadership-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .leadership-card {
        padding: 16px;
        margin-bottom: 12px;
    }

    .leadership-card-body {
        padding: 1rem;
    }

    .leadership-profile-img {
        max-width: 160px;
    }

    .leadership-card-title {
        font-size: 15px;
    }

    .btn {
        font-size: 10px;
        padding: 6px 12px;
    }

    .leadership-more-info-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .leadership-job-title {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .leadership-main-title {
        font-size: 28px;
    }

    .leadership-card {
        padding: 12px;
    }

    .leadership-card-body {
        padding: 0.75rem;
    }

    .leadership-profile-img {
        max-width: 140px;
    }

    .leadership-card-title {
        font-size: 14px;
    }

    .btn {
        font-size: 9px;
        padding: 5px 10px;
    }

    .leadership-more-info-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .leadership-job-title {
        font-size: 12px;
    }
}

/* Leadership Modal Styles - Unique Classes */
.leadership-modal .leadership-modal-content {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.leadership-modal .leadership-modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    border-radius: 8px 8px 0 0;
}

.leadership-modal .leadership-modal-title {
    color: #212529;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.leadership-modal .leadership-modal-close {
    color: #6c757d;
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.8;
}

.leadership-modal .leadership-modal-close:hover {
    color: #000;
    opacity: 1;
}

.leadership-modal .leadership-modal-body {
    background-color: #ffffff;
    padding: 2rem;
}

.leadership-modal .leadership-modal-text {
    color: #212529;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: Roboto, "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif;
}

.leadership-modal .leadership-modal-social {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.leadership-modal .leadership-modal-btn {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.leadership-modal .leadership-modal-btn:hover {
    background-color: #c82333;
    border-color: #c82333;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.leadership-modal .leadership-modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 8px 8px;
    padding: 1rem 2rem;
}

.leadership-modal .leadership-modal-close-btn {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.leadership-modal .leadership-modal-close-btn:hover {
    background-color: #c82333;
    border-color: #c82333;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* Modal Backdrop */
.leadership-modal .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Dialog Centering */
.leadership-modal .leadership-modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
    margin: 0.5rem auto;
    max-width: 500px;
    width: 90%;
}

.leadership-modal.show .leadership-modal-dialog {
    transform: none;
}

.leadership-modal .modal-content {
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .leadership-modal .leadership-modal-dialog {
        margin: 1rem auto;
        max-width: 90%;
        width: 90%;
    }

    .leadership-modal .leadership-modal-body {
        padding: 1.5rem;
    }

    .leadership-modal .leadership-modal-title {
        font-size: 1.25rem;
    }

    .leadership-modal .leadership-modal-text {
        font-size: 0.9rem;
    }

    .leadership-modal .leadership-modal-footer {
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .leadership-modal .leadership-modal-dialog {
        margin: 0.5rem auto;
        max-width: 95%;
        width: 95%;
    }

    .leadership-modal .leadership-modal-body {
        padding: 1rem;
    }

    .leadership-modal .leadership-modal-title {
        font-size: 1.1rem;
    }

    .leadership-modal .leadership-modal-text {
        font-size: 0.85rem;
    }

    .leadership-modal .leadership-modal-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .leadership-modal .leadership-modal-close-btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}


#features {
    padding: 6rem 0;
}

.herohome-title {
    font-size: 64px;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text-muted {
    --bs-text-opacity: 1;
    color: #dee2e6 !important;
}

/* Features Section */
.SectionProduct {
    background: #060203;
    display: flex;
}


.icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
    color: #ffffff;
}

.product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Product Page Styles */
.advance-content {
    padding: 50px 100px;
}

.advance-content-title {
    color: #fff;
    text-align: center;
    padding: 50px;
    font-size: 32px;
    font-weight: 700;
}

.crypto-list li {
    font-size: 24px;
    padding: 10px 0;
}

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

.quantum-list li {
    font-size: 24px;
    padding: 10px 0;
}



/* utilities */

.g-3 {
    gap: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.radiate-hero-section {
    background-color: #000000;
}


/* Section 1: Production-Ready Quantum Safe Cryptography */
.quantum-hero-section {
    background-color: #000000;
    position: relative;
}

.radiate-hero-title {
    font-size: 64px;
    font-weight: bold;
    color: #ffffff;
}

.quantum-description-box {
    background-color: #f5f5f5;
    border: 2px solid #ed1c24;
    border-radius: 8px;
}

.quantum-description-text {
    color: #000000;
    font-size: 24px;
    line-height: 1.6;
}

.highlight-text {
    color: #ed1c24;
    font-weight: bold;
}

.quantum-benefit-box {
    background-color: #6D6E71;
    border: 1px solid #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.quantum-benefit-box p {
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.quantum-no-bg {
    background-color: transparent;
    border: none;
}

.quantum-no-bg p {
    color: #ffffff !important;
}

.quantum-benefit-text {
    font-size: 24px;
    line-height: 1.5;
}

.development-note {
    color: #ffffff;
    font-size: 0.875rem;
}

/* Section 2: Multiple Options for Complete Coverage */
.options-section {
    background-color: #000000;
}

.options-subtitle {
    font-size: 1.75rem;
    color: #ffffff;
}

.standard-radiate-title {
    font-size: 48px;
    font-weight: bold;
}

.standard-radiate-box {
    background-color: #6D6E71;
    border: 1px solid #ffffff;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    color: #ffffff;

}

.standard-radiate-description {
    font-size: 24px;
}

.side-description {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
}

.features-container {
    border: 2px solid #ed1c24;
    border-radius: 10px;
    background: #D1D3D4;
}

.feature-item {
    text-align: left;
    font-size: 24px;
}

.feature-bullet {
    color: #ed1c24;
    font-weight: bold;
    margin-right: 0.625rem;
}

.feature-highlight {
    color: #ed1c24;
    font-weight: bold;
}

.feature-text {
    color: black;
}

/* Section 3: Why ISARA Radiate */
.why-radiate-section {
    background-color: #000000;
}

.why-radiate-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
}

.why-radiate-subtitle {
    font-size: 1.75rem;
    color: #ffffff;
}

.benifit-box-wrapper {
    padding: 0 !important;

}

.benefit-box {
    background-color: #f5f5f5;
    border: 2px solid #ed1c24;
    border-radius: 6px;
    text-align: left;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.benefit-title {
    color: #ed1c24;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.benefit-text {
    color: #000000;
    font-size: 24px;
    line-height: 1.4;
}

/* Section 4: Services & Support */
.services-section {
    background-color: #000000;
}

.services-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
}

.services-list {
    margin: 0 auto;
}

.service-box {
    background-color: #6D6E71;
    border: 2px solid #ffffff;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 16px;
}

.service-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: bold;
}

.service-description {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.4;
}

.services-note p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
}

/* Section 5: Your Customers Deserve Quantum Readiness */
.quantum-readiness-section {
    background-color: #000000;
}

.quantum-readiness-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
}

.quantum-connect-btn {
    background-color: #ed1c24;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quantum-connect-btn:hover {
    background-color: #cc0000;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Section 6: Are You a Developer */
.developer-section {
    background-color: #000000;
}

.developer-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
}

.developer-subtitle {
    font-size: 1.75rem;
    color: #ffffff;
}

.developer-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.developer-buttons-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.developer-btn {
    transition: all 0.2s ease !important;
    border-radius: 8px !important;
    border: 1px solid white !important;
    background-color: transparent !important;
    color: #ffffff !important;
    font-weight: 500;
}

.developer-btn:hover {
    background-color: white !important;
    color: #000000 !important;
}

.developer-note {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {

    .radiate-hero-title,
    .options-title,
    .why-radiate-title,
    .services-title,
    .developer-title {
        font-size: 2.25rem;
    }

    .why-radiate-subtitle,
    .developer-subtitle,
    .developer-subtitle {
        font-size: 1.5rem;
    }


    .standard-radiate-title {
        font-size: 1.5rem;
    }

    .developer-buttons-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .developer-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {

    .radiate-hero-title,
    .options-title,
    .why-radiate-title,
    .services-title,
    .developer-title {
        font-size: 1.75rem;
    }

    .quantum-description-box,
    .standard-radiate-box,
    .benefit-box,
    .service-box {
        padding: 1.25rem !important;
    }

    .benifit-box-wrapper {
        padding: 0px 15px !important;

    }


    .features-container {
        padding: 1.25rem !important;
    }

    .developer-buttons-container {
        gap: 0.5rem;
    }

    .developer-buttons-row {
        gap: 0.5rem;
    }

    .developer-btn {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1rem !important;
    }
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Roboto, "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-weight: 700;
    line-height: 1.2;
}


.card-title {
    font-weight: 600;
    line-height: 1.4;
}

.btn {
    font-family: Roboto, "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bg-black {
    background-color: #000 !important;
}

/* Clean card hover effects */
.card {
    transition: all 0.3s ease;
    border: 0.5px solid rgba(255, 255, 255, 0.3) !important;
    background: transparent !important;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6) !important;
}

/* Image hover effects */
.card:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Card body hover effects */
.card:hover .card-body {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Title hover effect */
.card:hover .card-title {
    color: #fff !important;
    transition: all 0.3s ease;
}

/* Position text hover effect */
.card:hover .text-danger {
    color: #ff6b6b !important;
    transition: all 0.3s ease;
}


/* Figma-Accurate Design Specifications */
.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* Typography Scale - Updated Font Sizes */
.leadership-main-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.btn {
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

/* Section Spacing - Figma Accurate */
.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Card Spacing - Figma Accurate */
.card {
    padding: 24px !important;
    margin-bottom: 16px;
}

/* Enhanced Responsive Design - Figma Accurate */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .leadership-main-title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .leadership-main-title {
        font-size: 48px;
    }

    .card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .leadership-main-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .py-5 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .card {
        padding: 20px !important;
        margin-bottom: 16px;
    }

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

    .card:hover img {
        transform: scale(1.03);
    }

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

    .btn {
        font-size: 11px;
        padding: 7px 14px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .leadership-main-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 32px;
    }

    .py-5 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .card {
        padding: 16px !important;
        margin-bottom: 12px;
    }

    .card-title {
        font-size: 15px;
    }

    .btn {
        font-size: 10px;
        padding: 6px 12px;
    }
}

@media (max-width: 400px) {
    .leadership-main-title {
        font-size: 28px;
    }

    .card {
        padding: 12px !important;
    }

    .card-title {
        font-size: 14px;
    }

    .btn {
        font-size: 9px;
        padding: 5px 10px;
    }
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Roboto, "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-weight: 700;
    line-height: 1.2;
}


.h5 {
    font-weight: 400;
    line-height: 1.7;
}

.btn {
    font-family: Roboto, "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bg-black {
    background-color: #000 !important;
}

/* Custom hover effects for cards */
.card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Figma-Accurate Design Specifications */
.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* Typography Scale - Updated Font Sizes */
.culture-main-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

.culture-paragraph {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.btn-lg {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

/* Section Spacing - Figma Accurate */
.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Enhanced Responsive Design - Figma Accurate */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .culture-main-title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .culture-main-title {
        font-size: 48px;
    }

    .culture-paragraph {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .culture-main-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .py-5 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .culture-paragraph {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .culture-main-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 32px;
    }

    .py-5 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .culture-paragraph {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .culture-main-title {
        font-size: 28px;
    }

    .culture-paragraph {
        font-size: 14px;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 13px;
    }
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Roboto, "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-weight: 700;
    line-height: 1.2;
}


.card-title {
    font-weight: 600;
    line-height: 1.4;
}

.card-text {
    font-weight: 400;
    line-height: 1.7;
}

.btn {
    font-family: Roboto, "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bg-black {
    background-color: #000 !important;
}

/* Enhanced card hover effects matching reference site */
.about-us-card {
    transition: all 0.3s ease;
    border: 2px solid #ed1c24 !important;
    background-color: #f8f9fa !important;
    min-height: 100%;

}

.about-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #ed1c24 !important;
    background-color: #e9ecef !important;
}

/* Icon hover effects */
.about-us-card:hover .fa-eye,
.about-us-card:hover .fa-shield-alt,
.about-us-card:hover .fa-cogs,
.about-us-card:hover .fa-atom {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Icon container hover effect */
.about-us-card:hover .rounded-circle {
    background-color: rgba(220, 53, 69, 0.1) !important;
    border: 2px solid #ed1c24 !important;
    transition: all 0.3s ease;
}

.about-us-btn {
    font-size: 24px;
}

/* Custom button hover effect */
.about-us-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.5);
    transition: all 0.3s ease;
}

/* Card text hover effect */
.about-us-card:hover .about-us-card-text {
    color: #212529 !important;
    transition: all 0.3s ease;
}

/* Card title hover effect */
.about-us-card:hover .card-title {
    color: #212529 !important;
    transition: all 0.3s ease;
}

/* Figma-Accurate Design Specifications */
.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* Typography Scale - Updated Font Sizes */
.about-main-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.about-paragraph {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-us-main-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
}

.card-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 16px;
    color: #212529 !important;
}

.about-us-card-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #212529 !important;
    margin-bottom: 0px;
}

.btn-lg {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

/* Section Spacing - Figma Accurate */
.py-5 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

/* Enhanced Responsive Design - Figma Accurate */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-main-title {
        font-size: 56px;
    }

    .about-us-main-title {
        font-size: 56px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-main-title {
        font-size: 48px;
    }

    .about-paragraph {
        font-size: 20px;
    }

    .about-us-main-title {
        font-size: 48px;
    }

    .about-us-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .about-main-title {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .about-paragraph {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .about-us-main-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .py-5 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .about-us-card {
        padding: 24px !important;
        margin-bottom: 16px;
    }

    .about-us-card:hover {
        transform: translateY(-4px);
    }

    .card-title {
        font-size: 25px;
    }

    .about-us-card-text {
        font-size: 20px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .about-main-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    .about-paragraph {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .about-us-main-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 32px;
    }

    .py-5 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .about-us-card {
        padding: 20px !important;
        margin-bottom: 12px;
    }

    .card-title {
        font-size: 25px;
    }

    .about-us-card-text {
        font-size: 18px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }

    .about-us-btn {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .about-main-title {
        font-size: 28px;
    }

    .about-paragraph {
        font-size: 14px;
    }

    .about-us-main-title {
        font-size: 28px;
    }

    .about-us-card {
        padding: 16px !important;
    }

    .card-title {
        font-size: 15px;
    }

    .about-us-card-text {
        font-size: 16px;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 13px;
    }

    .about-us-btn {
        font-size: 18px;
    }
}



#ds_container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    overflow-x: scroll;
}

#ds_container h1 {
    padding-bottom: 0;
    margin-bottom: 0;
    color: #ffffff;
    font-family: "Roboto"
}

#ds_container h2 {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 2em;
    color: #ff0000;
}

#ds_container svg {
    width: 1280px;
    height: 720px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #2a2a2a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

#ds_container {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

#ds_container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

#current-career-postings h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 24px;
}

#current-career-postings p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 24px;
}


@media (max-width: 768px) {
    #ds_container {
        margin-top: 3rem;
    }

    .flow-reverse {
        flex-flow: wrap-reverse;
    }
}
