:root {
    --primary-color: #1a1a2e;
    --primary-hover: #16213e;
    --secondary-color: #e94560;
    --accent-color: #f39c12;
    --text-light: #f8f9fa;
    --text-dark: #2c3e50;
    --background-light: #ffffff;
    --background-dark: #0f0f23;
    --surface: #fafafa;
    --border-color: #e1e5e9;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--background-light);
    padding-top: 96px; /* 80% of 120px logo = 96px showing, 24px overlapping */
}

.navbar {
    background: var(--background-light) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    min-height: 60px;
    z-index: 1030;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--secondary-color) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(243, 156, 18, 0.1));
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    padding: 0.375rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 26, 46, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language Toggle Styles */
.language-toggle {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
    align-items: center;
}

/* Hero Abstract Background */
.hero-abstract-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

.hero-abstract-bg svg {
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 80px;
    justify-content: center;
}

.language-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.language-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.flag-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.flag-circle svg {
    width: 100%;
    height: 100%;
}

.lang-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .language-toggle {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
}

/* Enhanced Logo Styles */
.navbar-brand {
    display: flex !important;
    align-items: center;
    position: relative;
    z-index: 1040;
    font-weight: 700;
    color: var(--text-dark) !important;
    text-decoration: none;
}

.logo-large {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1050;
    transition: all 0.3s ease;
}

.brand-text {
    margin-left: 0.75rem;
    white-space: nowrap;
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Ensure proper main content positioning */
main {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--text-light);
    padding: 8rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    border-radius: var(--radius-lg);
    font-weight: 600;
    padding: 0.875rem 2rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-light);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-visual {
    text-align: center;
    animation: fadeInRight 1s ease 0.6s both;
}

.hero-icon-container {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(243, 156, 18, 0.2));
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-icon-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.hero-icon {
    font-size: 4rem;
    color: var(--text-light);
    z-index: 2;
    position: relative;
}

/* Service Cards */
.service-card {
    background: var(--background-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Section Styling */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-dark);
    opacity: 0.9;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-dark {
    background: var(--primary-color);
    color: var(--text-light);
}

.section-dark .section-title {
    color: var(--text-light);
}

.section-dark .section-subtitle {
    color: var(--text-light);
    opacity: 1;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 280px;
}

.section-dark .feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section-dark .feature-card h4 {
    color: var(--text-light);
}

.section-dark .feature-card p {
    color: var(--text-light);
    opacity: 0.9;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stat-item {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--background-light);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(52, 73, 94, 0.05) 0%, transparent 50%);
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    text-align: left;
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.feature-icon i {
    color: var(--text-light);
    font-size: 1.5rem;
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: var(--background-light);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--surface);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
    outline: none;
    background: var(--background-light);
}

.form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 2rem 0;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer p,
.footer a {
    color: var(--text-light);
    opacity: 0.95;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

/* Alert Messages */
.alert {
    border-radius: var(--radius-md);
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.05));
    color: var(--error-color);
    border-left: 4px solid var(--error-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* Accessibility Improvements */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.btn:focus,
.form-control:focus,
.navbar-toggler:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.25);
}

.service-card:focus-within,
.feature-card:focus-within,
.testimonial-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    :root {
        --text-dark: #000000;
        --text-light: #ffffff;
        --border-color: #000000;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-icon-container {
        animation: none;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 7rem 0 5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-brand img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-icon-container {
        width: 150px;
        height: 150px;
        margin: 2rem auto 0;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .service-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .logo-large {
        height: 120px !important;
        margin-top: -15px;
        margin-bottom: -30px;
    }
    
    .brand-text {
        font-size: 1.1rem;
        margin-left: 0.5rem;
    }
    
    body {
        padding-top: 96px; /* Same overlapping effect on mobile */
    }
    
    .navbar {
        min-height: 60px;
        padding: 0.25rem 0;
    }
    
    .navbar-collapse {
        background: var(--background-light);
        border-radius: 0.5rem;
        padding: 1rem;
        margin-top: 0.5rem;
        border: 1px solid var(--border-color);
    }
    
    .navbar-nav {
        align-items: stretch;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        border: 1px solid transparent;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 107, 107, 0.1);
        border-color: var(--primary-color);
    }
    
    .language-toggle {
        justify-content: center;
        margin: 1rem 0 0 0;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 5rem 0 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-icon-container {
        width: 120px;
        height: 120px;
    }
    
    .hero-icon {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.25rem;
    }
    
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .logo-large {
        height: 100px !important;
        margin-top: -10px;
        margin-bottom: -25px;
    }
    
    .brand-text {
        font-size: 0.9rem;
        margin-left: 0.4rem;
    }
    
    body {
        padding-top: 65px;
    }
    
    .navbar {
        min-height: 50px;
        padding: 0.2rem 0;
    }
    
    .navbar-collapse {
        background: var(--background-light);
        border-radius: 0.5rem;
        padding: 0.75rem;
        margin-top: 0.25rem;
        border: 1px solid var(--border-color);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer p, .footer a {
        font-size: 0.9rem;
    }
    
    /* Phone numbers removed from website */
}

/* Security Assessment Styles */
.assessment-container {
    background: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.assessment-header .progress-container {
    margin-top: 1rem;
}

.progress {
    height: 8px;
    border-radius: 10px;
    background: var(--border-color);
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
    border-radius: 10px;
}

.progress-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.assessment-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
}

.assessment-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.checklist-group {
    display: grid;
    gap: 1rem;
}

.form-check {
    padding: 1rem;
    background: var(--card-background);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-check:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.form-check-input:checked ~ .form-check-label {
    color: var(--primary-color);
    font-weight: 500;
}

.form-check-input {
    margin-top: 0.25rem;
    margin-right: 0.75rem;
}

.form-check-label {
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.security-score {
    margin: 2rem 0;
}

.score-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: 6px solid var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1rem;
    position: relative;
}

.score-circle span {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.score-rating {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.assessment-results {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-background);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
}

.recommendations-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 1rem;
}

.recommendation-item {
    display: flex;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.recommendation-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.recommendation-icon i {
    color: white;
    font-size: 1.25rem;
}

.recommendation-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.recommendation-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control, .form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background: var(--card-background);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

@media (max-width: 768px) {
    .assessment-container {
        padding: 1.5rem;
    }
    
    .assessment-section {
        padding: 1rem;
    }
    
    .recommendation-item {
        flex-direction: column;
        text-align: center;
    }
    
    .recommendation-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .score-circle {
        width: 100px;
        height: 100px;
    }
    
    .score-circle span {
        font-size: 1.5rem;
    }
}

/* Resources Page Styles */
.resource-card, .checklist-card, .industry-card, .tool-card {
    background: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.resource-card:hover, .checklist-card:hover, .industry-card:hover, .tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.resource-icon, .checklist-icon, .industry-icon, .tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.resource-icon i, .checklist-icon i, .industry-icon i, .tool-icon i {
    font-size: 2rem;
    color: white;
}

.resource-card h4, .industry-card h4, .tool-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.checklist-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.resource-card p, .checklist-card p, .industry-card p, .tool-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.resource-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.resource-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.resource-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

.newsletter-card {
    background: var(--card-background);
    border-radius: 1rem;
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.newsletter-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    border-radius: 0.5rem;
    overflow: hidden;
}

.input-group .form-control {
    border-radius: 0;
    border-right: none;
    flex: 1;
}

.input-group .btn {
    border-radius: 0;
    border-left: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .resource-card, .checklist-card, .industry-card, .tool-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .resource-icon, .checklist-icon, .industry-icon, .tool-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .resource-icon i, .checklist-icon i, .industry-icon i, .tool-icon i {
        font-size: 1.5rem;
    }
    
    .resource-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .newsletter-card {
        padding: 2rem 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group .form-control {
        border-radius: 0.5rem;
        border-right: 1px solid var(--border-color);
        margin-bottom: 1rem;
    }
    
    .input-group .btn {
        border-radius: 0.5rem;
        border-left: 1px solid var(--primary-color);
    }
}

/* Detailed Services Page Styles */
.service-category-card {
    background: var(--card-background);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.service-category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 1.75rem;
    color: white;
}

.service-category-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.industry-solution-card {
    background: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    margin-bottom: 2rem;
}

.industry-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.industry-icon i {
    font-size: 1.5rem;
    color: white;
}

.industry-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.industry-description {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.solution-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.solution-features h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    width: 16px;
}

.pricing-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.pricing-info h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.price-range {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.solution-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.solution-actions .btn {
    flex: 1;
}

.service-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-background);
    border-radius: 0.8rem;
    border: 1px solid var(--border-color);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.detail-icon i {
    color: white;
    font-size: 1.25rem;
}

.detail-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.feature-list-card {
    background: var(--card-background);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.feature-list-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.enhanced-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.enhanced-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.enhanced-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

.certification-badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.badge-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 107, 107, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 107, 107, 0.2);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.badge-item i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .industry-header {
        flex-direction: column;
        text-align: center;
    }
    
    .industry-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-actions {
        flex-direction: column;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .service-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
}