.container {max-width: 1200px;margin: auto;padding: 20px;}
    .card {background-color: white;border-radius: 8px;box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);}
    .card-title {font-size: 1.25rem;font-weight: bold;}
    .card-text {font-size: 1rem;color: #555;}
    .btn-primary {background-color: #007bff;border: none;padding: 10px 20px;font-size: 1rem;border-radius: 5px;color: white;}
    .btn-primary:hover {background-color: #0056b3;}
    .col-md-4{margin-bottom: 20px;}
  
    .text-center {text-align: center;}
    .mt-5 {margin-top: 3rem !important;}
    .mb-4 {margin-bottom: 1.5rem !important;}
    .ms-auto {margin-left: auto !important;}
   
    .card-body {padding: 20px;}
    .card {margin-bottom: 20px;height: 100%;display: flex;flex-direction: column;justify-content: space-between;border-radius: 10px;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);transition: transform 0.2s;}
    .card-title {margin-bottom: 15px;}
    .card-text {margin-bottom: 20px;}
    .card:hover {transform: translateY(-5px);}
    .btn {
        padding: 10px 20px;
        font-size: 1rem;
        border-radius: 5px;
        transition: background-color 0.3s, transform 0.2s;
        margin-top: 10px; 
    }
 
    .text-decoration-none {
        text-decoration: none !important;
    }
    .text-decoration-none:hover {
        text-decoration: underline !important;
    }
    .text-decoration-none:active {
        text-decoration: underline !important;
    }
    .text-decoration-none:focus {
        text-decoration: underline !important;
    }

/* ===== GOOGLE SAFE BROWSING & SECURITY STYLES ===== */

/* SSL Security Badge - Fixed Position */
.ssl-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ssl-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.ssl-badge i {
    color: #fff;
    font-size: 12px;
}

/* Security Header Banner */
.security-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 0;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    position: relative;
    border-bottom: 2px solid #28a745;
}

.security-header::before {
    content: "🔒";
    margin-right: 5px;
    font-size: 12px;
}

/* Trust Indicators Section */
.trust-indicators {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 0;
    border-top: 3px solid #28a745;
    margin-top: 40px;
}

.trust-badge {
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transition: left 0.5s ease;
}

.trust-badge:hover::before {
    left: 0;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #28a745;
}

.trust-badge i {
    font-size: 2.2rem;
    color: #28a745;
    margin-bottom: 12px;
    display: block;
}

.trust-badge h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.trust-badge small {
    color: #666;
    font-size: 11px;
    font-weight: 500;
}

/* Safe Browsing Compliance Badge */
.safe-browsing-badge {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.safe-browsing-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.safe-browsing-badge h6 {
    color: #155724;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.safe-browsing-badge h6 i {
    color: #28a745;
    margin-right: 8px;
    font-size: 1.1rem;
}

.safe-browsing-badge p {
    color: #155724;
    font-size: 13px;
    margin: 0;
    font-weight: 500;
}

/* Google Verification Badge */
.google-verified {
    display: inline-flex;
    align-items: center;
    background: #4285f4;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 10px 5px;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    transition: transform 0.2s ease;
}

.google-verified:hover {
    transform: scale(1.05);
}

.google-verified i {
    margin-right: 5px;
    font-size: 14px;
}

/* Security Features List */
.security-features {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.security-features h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.security-features h6 i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.2rem;
}

.security-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-features li {
    padding: 8px 0;
    color: #555;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.security-features li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ssl-badge {
        bottom: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .security-header {
        font-size: 10px;
        padding: 5px 0;
    }
    
    .trust-badge {
        margin-bottom: 15px;
        padding: 15px 10px;
    }
    
    .trust-badge i {
        font-size: 1.8rem;
    }
    
    .safe-browsing-badge {
        padding: 15px;
        margin: 20px 0;
    }
}

/* Animation for Trust Indicators */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badge {
    animation: fadeInUp 0.6s ease forwards;
}

.trust-badge:nth-child(1) { animation-delay: 0.1s; }
.trust-badge:nth-child(2) { animation-delay: 0.2s; }
.trust-badge:nth-child(3) { animation-delay: 0.3s; }
.trust-badge:nth-child(4) { animation-delay: 0.4s; } 
 