:root {
    --background: #ffffff;
    --foreground: #252525;
    --primary: #030213;
    --primary-foreground: #ffffff;
    --secondary: #f2f2f8;
    --secondary-foreground: #030213;
    --muted: #ececf0;
    --muted-foreground: #717182;
    --accent: #e9ebef;
    --accent-foreground: #030213;
    --border: rgba(0, 0, 0, 0.1);
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-600: #2563eb;
    --indigo-50: #eef2ff;
    --indigo-100: #e0e7ff;
    --indigo-600: #4f46e5;
    --violet-50: #f5f3ff;
    --violet-100: #ede9fe;
    --violet-600: #7c3aed;
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-600: #9333ea;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-900: #111827;
}

/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
}

.text-blue-600 {
    color: var(--blue-600);
}

.bg-blue-50 {
    background-color: var(--blue-50);
}

.bg-indigo-50 {
    background-color: var(--indigo-50);
}

.bg-violet-50 {
    background-color: var(--violet-50);
}

.bg-purple-50 {
    background-color: var(--purple-50);
}

/* Header */
.shield-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #3730a3);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(to right, #111827, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.border-muted{
    border-color: #d8d8d8 !important;
}
/* Hero Section */
.hero-section {
    height: 120vh;
    background: linear-gradient(135deg, #0f172a, #1e40af, #3730a3);
}

.hero-section .content{
    margin-top: 10%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1761195696590-3490ea770aa1?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxyb2JvdGljJTIwYXV0b21hdGlvbiUyMGZhY3Rvcnl8ZW58MXx8fHwxNzY0OTY4NTA1fDA&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.5) 50%, #0f172a 100%);
}

.hero-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #2563eb, #3730a3);
    border-radius: 24px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.25);
}

.hero-icon i {
    font-size: 64px;
    line-height: 1;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #bfdbfe;
    line-height: 1.75;
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 96px;
    background: linear-gradient(to top, #ffffff, transparent);
}

/* Cards */
.consulting-card {
    background: linear-gradient(135deg, #ffffff, #eff6ff);
    border: 2px solid var(--blue-100);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.tool-features-card {
    background: linear-gradient(135deg, var(--blue-50), var(--indigo-50));
    border: 2px solid #bfdbfe;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Accordion */
.accordion-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-btn:hover {
    background: linear-gradient(to right, var(--blue-50), var(--indigo-50));
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: #6b7280;
}

.accordion-btn:hover .accordion-icon {
    color: var(--blue-600);
    transform: scale(1.1);
}

.accordion-content {
    transition: all 0.3s ease;
}

/* Feature Icons */
.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-wrapper.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.icon-wrapper.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.icon-wrapper.violet {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.icon-wrapper.purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border: 2px solid var(--blue-100);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--blue-600);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

/* Info Boxes */
.info-box {
    background: linear-gradient(to right, var(--blue-50), var(--indigo-50));
    border: 1px solid var(--blue-100);
}

.training-box {
    background: linear-gradient(to right, var(--blue-50), var(--indigo-50), var(--violet-50));
    border: 1px solid var(--blue-200);
}

.highlight-box {
    background: linear-gradient(to right, #2563eb, #4f46e5);
    box-shadow: 0 10px 15px rgba(37, 99, 235, 0.25);
}

/* Form */
.form-control-lg {
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-control-lg:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, #2563eb, #4f46e5);
    border: none;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(to right, #1d4ed8, #4338ca);
    box-shadow: 0 6px 8px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #2563eb;
    border-color: #ffffff;
    box-shadow: 0 6px 8px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-light {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-light:hover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, #0f172a, #1f2937, #0f172a);
    border-top: 4px solid var(--blue-600);
}

.footer-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #2563eb, #3730a3);
    border-radius: 12px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
}

.footer-brand {
    color: var(--indigo-100);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #93c5fd;
}

.footer-copyright {
    color: #d1d5db;
}

.footer-slogan {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Toast */
.toast {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.toast-header {
    background: var(--blue-50);
    color: var(--blue-600);
    border-bottom: 1px solid var(--blue-100);
}

.toast-success .toast-header {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.toast-error .toast-header {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .py-24 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .py-20 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .shield-logo {
        width: 36px;
        height: 36px;
    }
    
    .hero-icon {
        width: 64px;
        height: 64px;
    }
}