


body {
    font-family: 'Inter', sans-serif;
    color: #E0E0E0; 
}


.text-gold-accent {
    color: #FFD700; 
}
.border-gold-accent {
    border-color: #FFD700;
}
.bg-gold-accent {
    background-color: #FFD700;
}


.btn-primary {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%); 
    color: #1A202C; 
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary:hover {
    background: linear-gradient(90deg, #FFA500 0%, #FFD700 100%); 
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.2) 100%);
    transition: left 0.6s ease-in-out;
    z-index: -1;
}
.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: #4A5568; 
    color: #E0E0E0; 
    border: 1px solid #6B7280; 
}
.btn-secondary:hover {
    background-color: #6B7280; 
    border-color: #FFD700; 
    color: #FFD700; 
}

.btn-gold-outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}
.btn-gold-outline:hover {
    background-color: #FFD700;
    color: #1A202C;
}


.license-link {
    color: #EF4444; 
    text-decoration: none;
}
.license-link:hover {
    text-decoration: underline;
}


.shimmer-rating {
    position: relative;
    overflow: hidden;
    
    
    
}

.shimmer-rating::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: -150%; }
}


.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-outlined.filled-star {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    color: #FFD700;
}
.material-symbols-outlined.empty-star {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    color: #A0AEC0; 
}


.badge-gold {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 215, 0, 0.15); 
    color: #FFD700; 
    font-size: 0.75rem; 
    font-weight: 500; 
    padding: 0.25rem 0.75rem; 
    border-radius: 9999px; 
    border: 1px solid #FFD700;
}


.platform-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 215, 0, 0.3);
}


.grid > .platform-card {
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-2.xl\:grid-cols-2 > .platform-card {
        display: flex;
        flex-direction: row;
    }
}

@media (max-width: 567px){
.logoBox{
    flex-direction: column;
    justify-content: center;
}
 .logoBox span{
    margin: 0 !important;
    font-size: 25px;
 }
 .bg-cover h1{
  font-size: 2rem !important;
 }
 .text-4xl{
    font-size: 1.9rem !important;
 }
}

.footer-partner-logo {
    max-width: 120px; 
    height: auto;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    transition: filter 0.3s ease;
}


.footer-partner-logo:hover {
    filter: brightness(1) contrast(1.2);
}


html {
    scroll-behavior: smooth;
}


button {
    text-decoration: none !important;
}


.form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    border: 1px solid #6B7280; 
    background-color: #4A5568; 
    cursor: pointer;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.form-checkbox:checked {
    background-color: #FFD700; 
    border-color: #FFD700;
}

.form-checkbox:checked::before {
    content: '\2713'; 
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1A202C; 
    font-size: 0.875rem;
    line-height: 1;
}

.form-checkbox:disabled {
    background-color: #374151; 
    border-color: #4B5563; 
    cursor: not-allowed;
    opacity: 0.7;
}

.form-checkbox:disabled:checked {
    background-color: #FFD700;
    border-color: #FFD700;
}

.form-checkbox:disabled:checked::before {
    color: #1A202C;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF; 
}


h2.text-gold-accent {
    position: relative;
    padding-bottom: 10px; 
}

h2.text-gold-accent .relative.z-10 {
    display: inline-block;
}

h2.text-gold-accent .absolute.bottom-0 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; 
    height: 3px;
    background-color: #FFD700; 
    bottom: 0;
}


#about-us h2.text-gold-accent .absolute.bottom-0.left-0 {
    left: 0;
    transform: translateX(0%);
}


.complianceVaultNode {
    padding-top: 4rem; 
    padding-left: 2rem; 
    padding-right: 2rem; 
    max-width: 1200px; 
    margin-left: auto; 
    margin-right: auto; 
}

.complianceVaultNode h1 {
    font-size: 2.5rem; 
    font-weight: 700; 
    margin-top: 2.5rem; 
    margin-bottom: 1.5rem; 
    line-height: 1.2; 
    color: #FFFFFF; 
}

.complianceVaultNode h2 {
    font-size: 2rem; 
    font-weight: 600; 
    margin-top: 2rem; 
    margin-bottom: 1.25rem; 
    line-height: 1.3;
    color: #FFFFFF; 
}

.complianceVaultNode h3 {
    font-size: 1.75rem; 
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #FFFFFF;
}

.complianceVaultNode h4 {
    font-size: 1.5rem; 
    font-weight: 500; 
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: #FFFFFF;
}

.complianceVaultNode h5 {
    font-size: 1.25rem; 
    font-weight: 500;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #FFFFFF;
}

.complianceVaultNode p {
    font-size: 1rem; 
    line-height: 1.7; 
    margin-bottom: 1rem; 
    color: #E0E0E0; 
}

.complianceVaultNode ul {
    list-style: disc; 
    padding-left: 1.5rem; 
    margin-top: 1rem; 
    margin-bottom: 1rem; 
    color: #E0E0E0; 
}

.complianceVaultNode ol {
    list-style: decimal; 
    padding-left: 1.5rem; 
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.complianceVaultNode li {
    font-size: 1rem; 
    line-height: 1.7;
    margin-bottom: 0.5rem; 
    color: #E0E0E0; 
}

.complianceVaultNode li:last-child {
    margin-bottom: 0; 
}


@media (max-width: 768px) {
    .complianceVaultNode {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 3rem; 
    }
    .complianceVaultNode h1 { font-size: 2rem; }
    .complianceVaultNode h2 { font-size: 1.75rem; }
    .complianceVaultNode h3 { font-size: 1.5rem; }
    .complianceVaultNode h4 { font-size: 1.25rem; }
    .complianceVaultNode h5 { font-size: 1.125rem; }
}
