/* Custom styles to complement Bootstrap */

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

/* Set Roboto as the default font for all elements */
body, * {
    font-family: 'Roboto', sans-serif !important;
}

/* 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 #ff0000;
    border-radius: 8px;
}

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

.highlight-text {
    color: #ff0000;
    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: 28px;
    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;
}

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

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

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

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

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

.feature-highlight {
    color: #ff0000;
    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.125rem;
    color: #ffffff;
}

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

.benefit-title {
    color: #ff0000;
    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;
}

.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: #ff0000;
    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: 24px;
    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.3s ease;
    border-radius: 8px;
    border: 1px solid #6c757d;
    background-color: transparent;
    color: #ffffff;
    font-weight: 500;
}

.developer-btn:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !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;
    }
    
    .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;
    }
    
    .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;
    }
}