﻿/* Full viewport background override */
:global(*) {
    box-sizing: border-box;
}

.toolbar-wrapper {
    width: 100%;
    background-color: #004d4d;
    animation: slideDown 0.6s ease-in-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: sticky;
    top: 0;
    z-index: 20;
}

.toolbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.toolbar-logo {
    height: 50px;
    width: auto;
    animation: fadeIn 1s ease-in;
}

.toolbar-brand-text span {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: bold;
}

.toolbar-brand-text .gold {
    color: #D4AF37;
}

.toolbar-brand-text .white {
    color: #fff;
}

.toolbar-subtitle {
    font-size: 0.9rem;
    color: #eee;
    line-height: 1.2;
    margin-top: -6px;
}

.toolbar-nav .nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
    font-weight: 500;
}

    .toolbar-nav .nav-link:hover {
        color: #D4AF37 !important;
        transform: translateY(-2px);
        transition: all 0.3s ease;
    }

.toolbar-login-btn {
    background-color: #FFD700;
    border: 2px solid #003366;
    color: #003366;
    font-weight: bold;
    font-family: Arial;
    padding: 6px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .toolbar-login-btn:hover {
        background-color: #ffcc00;
        transform: scale(1.05);
    }

.navbar-toggler {
    border-color: #fff;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 📱 Responsive adjustments */
@media (max-width: 992px) {
    .toolbar-brand-text span {
        font-size: 1.3rem;
    }

    .toolbar-subtitle {
        font-size: 0.8rem;
    }

    .toolbar-login-btn {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .toolbar-nav {
        text-align: center;
    }

        .toolbar-nav .nav-link {
            padding: 10px 0;
        }

    .toolbar-brand-text span {
        font-size: 1.1rem;
    }

    .toolbar-subtitle {
        display: none;
    }

    .toolbar-login-btn {
        width: 100%;
        margin-top: 10px;
    }
}

/* Override HomeLayout's global teal background - Hide it completely */
:global(.page) {
    background-color: transparent !important;
    background-image: url('/Images/%20Background.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    padding: 0 !important;
    margin: 0 !important;
}

:global(.top-row) {
    background-color: transparent !important;
    background-image: none !important;
}

:global(.container-fluid) {
    background-color: transparent !important;
    background-image: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

:global(main),
:global(.content) {
    background-color: transparent !important;
    background-image: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Force override all HomeLayout backgrounds */
:global(body) {
    background-color: transparent !important;
    background-image: url('/Images/%20Background.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    margin: 0 !important;
    padding: 0 !important;
}

:global(html) {
    background-color: transparent !important;
    background-image: url('/Images/%20Background.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Additional viewport coverage styles */
:global(#app),
:global(.blazor-error-boundary) {
    background-color: transparent !important;
    background-image: url('/Images/%20Background.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    width: 100vw !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure no margins or padding on wrapper elements */
:global(.rz-layout),
:global(.rz-content),
:global([class*="rz-"]) {
    background-color: transparent !important;
    background-image: none !important;
}

/* Full screen background overlay to eliminate any teal edges */
.full-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('/Images/%20Background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #035252;
    z-index: -10;
    pointer-events: none;
}

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #0ea5e9;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --light-bg: #035252;
    --white: #ffffff;
    --dark-text: #1e293b;
    --border-color: #0ea5e9;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --dark-blue: #1e3a5f;
    --sky-blue: #0ea5e9;
    --teal: #035252;
    --dark-teal: #023a3a;
}

.hrm-services-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    background-image: url('/Images/%20Background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #035252;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1;
    margin: 0 auto;
    padding: 0;
}

    /* Additional full-screen background layer */
    .hrm-services-container::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url('/Images/%20Background.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        z-index: -2;
        pointer-events: none;
    }

    .hrm-services-container::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url('/Images/%20Background.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: -1;
        pointer-events: none;
    }

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a1628 0%, #0f2d4d 50%, #051a2f 100%);
    color: white;
    gap: 40px;
    min-height: 500px;
    position: relative;
    border: 3px solid #0ea5e9;
    border-radius: 30px;
    margin: 40px;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.5), inset 0 0 30px rgba(14, 165, 233, 0.1), 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(14, 165, 233, 0.05) 50%, transparent 100%), repeating-linear-gradient(0deg, rgba(14, 165, 233, 0.03) 0px, rgba(14, 165, 233, 0.03) 1px, transparent 1px, transparent 2px);
        pointer-events: none;
        animation: flicker 0.15s infinite;
    }

@keyframes flicker {

    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }

    20%, 24%, 55% {
        opacity: 0.95;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.95;
    color: #0ea5e9;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 40px;
}

    .image-placeholder svg {
        width: 100%;
        height: auto;
    }

/* Glass Morphism Container */
.glass-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16 / 9;
    background: rgba(15, 30, 65, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid #0ea5e9;
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.6), inset 0 0 20px rgba(14, 165, 233, 0.2), 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    animation: slideInRight 0.8s ease-out, glowPulse 3s ease-in-out infinite;
    position: relative;
}

    .glass-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent 0%, rgba(14, 165, 233, 0.1) 50%, transparent 100%);
        pointer-events: none;
        z-index: 1;
    }

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    position: relative;
    z-index: 2;
}

@keyframes glowPulse {

    0%, 100% {
        box-shadow: 0 0 40px rgba(14, 165, 233, 0.6), inset 0 0 20px rgba(14, 165, 233, 0.2), 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    }

    50% {
        box-shadow: 0 0 60px rgba(14, 165, 233, 0.8), inset 0 0 30px rgba(14, 165, 233, 0.3), 0 8px 32px 0 rgba(31, 38, 135, 0.5);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover {
        background-color: #0ea5e9;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(14, 165, 233, 0.6);
    }

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background-color: white;
        color: var(--primary-color);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    }

.btn-outline {
    background-color: #0ea5e9;
    color: white;
    border: 2px solid #0ea5e9;
    font-weight: 600;
}

    .btn-outline:hover {
        background-color: #0d9dd9;
        border-color: #0d9dd9;
        box-shadow: 0 8px 20px rgba(14, 165, 233, 0.6);
        transform: translateY(-2px);
    }

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: white;
    }

    .section-header p {
        font-size: 1.1rem;
        color: white;
    }

/* Features Section */
.features-section {
    padding: 80px 40px;
    background-color: transparent;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background-color: rgba(30, 58, 95, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 2px solid rgba(14, 165, 233, 0.6);
    transition: all 0.3s ease;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 30px rgba(14, 165, 233, 0.8);
        border-color: #0ea5e9;
        background-color: rgba(30, 58, 95, 0.25);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 40px;
    background-color: rgba(3, 82, 82, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit-item {
    padding: 30px;
    background-color: rgba(30, 58, 95, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 2px solid rgba(14, 165, 233, 0.6);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: white;
}

    .benefit-item:hover {
        box-shadow: 0 0 30px rgba(14, 165, 233, 0.8);
        border-color: #0ea5e9;
        background-color: rgba(30, 58, 95, 0.25);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.benefit-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 40px;
    background-color: rgba(3, 82, 82, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.use-case-card {
    padding: 30px;
    border: 2px solid rgba(14, 165, 233, 0.6);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    background-color: rgba(30, 58, 95, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .use-case-card:hover {
        border-color: #0ea5e9;
        box-shadow: 0 0 30px rgba(14, 165, 233, 0.8);
        background-color: rgba(30, 58, 95, 0.25);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.use-case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: white;
}

.use-case-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 40px;
    background-color: rgba(3, 82, 82, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 30px;
    background-color: rgba(14, 165, 233, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 2px solid rgba(14, 165, 233, 0.6);
    position: relative;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .pricing-card:hover {
        box-shadow: 0 0 30px rgba(14, 165, 233, 0.8);
        border-color: #0ea5e9;
        background-color: rgba(14, 165, 233, 0.2);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .pricing-card.professional {
        border-color: #0ea5e9;
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(14, 165, 233, 0.8);
        background-color: rgba(14, 165, 233, 0.15);
    }

    .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: white;
    }

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ea5e9;
}

.period {
    font-size: 1rem;
    color: #cbd5e1;
}

.plan-description {
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

    .features-list li {
        padding: 10px 0;
        color: #cbd5e1;
        border-bottom: 1px solid #0ea5e9;
    }

        .features-list li:last-child {
            border-bottom: none;
        }

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, #1e3a5f 0%, #0ea5e9 100%);
    border: none;
}

    .pricing-card .btn-primary:hover {
        background: linear-gradient(135deg, #0ea5e9 0%, #1e3a5f 100%);
        box-shadow: 0 12px 25px rgba(14, 165, 233, 0.8);
    }

.pricing-card .btn-outline {
    background-color: #0ea5e9;
    color: white;
    border: 2px solid #0ea5e9;
}

    .pricing-card .btn-outline:hover {
        background-color: #0d9dd9;
        border-color: #0d9dd9;
        box-shadow: 0 12px 25px rgba(14, 165, 233, 0.8);
        transform: translateY(-2px);
    }

/* CTA Section */
.cta-section {
    padding: 80px 40px;
    background-color: rgba(30, 58, 95, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(14, 165, 233, 0.6);
    border-radius: var(--radius);
    margin: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

    .cta-section:hover {
        background-color: rgba(30, 58, 95, 0.25);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-color: #0ea5e9;
        box-shadow: 0 0 30px rgba(14, 165, 233, 0.8);
    }

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fbbf24;
    /* Yellow color for the heading */
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

    .cta-buttons .btn {
        min-width: 250px;
    }

/* Testimonials Section */
.testimonials-section {
    padding: 80px 40px;
    background-color: rgba(3, 82, 82, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px 30px;
    background-color: rgba(30, 58, 95, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius);
    border: 2px solid rgba(14, 165, 233, 0.6);
    transition: all 0.3s ease;
    color: white;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 30px rgba(14, 165, 233, 0.8);
        border-color: #0ea5e9;
        background-color: rgba(30, 58, 95, 0.25);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: #0ea5e9;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #cbd5e1;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(14, 165, 233, 0.3);
    padding-top: 20px;
}

    .testimonial-author h4 {
        color: #0ea5e9;
        margin-bottom: 5px;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .testimonial-author p {
        color: #94a3b8;
        font-size: 0.9rem;
        margin: 0;
        font-style: normal;
    }

/* FAQ Section */
.faq-section {
    padding: 80px 40px;
    background-color: rgba(3, 82, 82, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background-color: rgba(30, 58, 95, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(14, 165, 233, 0.6);
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

    .faq-question:hover {
        background-color: rgba(14, 165, 233, 0.3);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-color: #0ea5e9;
        color: white;
    }

    .faq-question.active {
        background-color: rgba(14, 165, 233, 0.3);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-color: #0ea5e9;
        color: white;
    }

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: white;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px;
    background-color: rgba(3, 82, 82, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.4);
    border-top: none;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    color: #cbd5e1;
    line-height: 1.6;
    margin-top: -2px;
}

/* Footer CTA */
.footer-cta {
    padding: 60px 40px;
    background-color: rgba(3, 82, 82, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-align: center;
    border-top: 1px solid rgba(14, 165, 233, 0.4);
}

    .footer-cta p {
        font-size: 1.1rem;
        margin-bottom: 40px;
        color: white;
    }

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat h4 {
    font-size: 2.5rem;
    color: #0ea5e9;
    margin-bottom: 10px;
}

.stat p {
    color: #cbd5e1;
    margin: 0;
}

/* HRM Footer Section */
.hrm-footer-section {
    background: linear-gradient(135deg, #0a1628 0%, #0f2d4d 100%);
    color: white;
    padding: 60px 40px 40px;
    border-top: 3px solid #0ea5e9;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #0ea5e9;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column h4 {
    color: #0ea5e9;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        color: #cbd5e1;
        padding: 8px 0;
        border-bottom: 1px solid rgba(14, 165, 233, 0.2);
        cursor: pointer;
        transition: color 0.3s ease;
    }

        .footer-links li:hover {
            color: #0ea5e9;
        }

        .footer-links li:last-child {
            border-bottom: none;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 2px solid rgba(14, 165, 233, 0.3);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-certifications {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cert-badge {
    background-color: rgba(14, 165, 233, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.4);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    white-space: nowrap;
}

.footer-cta-final {
    text-align: right;
}

    .footer-cta-final p {
        margin-bottom: 15px;
        color: #cbd5e1;
        font-size: 1rem;
    }

    .footer-cta-final .btn {
        background: linear-gradient(135deg, #1e3a5f 0%, #0ea5e9 100%);
        border: none;
        padding: 12px 25px;
        font-size: 0.9rem;
        font-weight: 600;
    }

        .footer-cta-final .btn:hover {
            background: linear-gradient(135deg, #0ea5e9 0%, #1e3a5f 100%);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.6);
            transform: translateY(-2px);
        }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        margin: 20px;
        border-radius: 20px;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .glass-container {
        max-width: 100%;
        max-height: 400px;
        border-radius: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.professional {
        transform: scale(1);
    }

    .cta-buttons {
        flex-direction: column;
    }

        .cta-buttons .btn {
            width: 100%;
        }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-final {
        text-align: center;
    }

    .footer-certifications {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 15px;
        min-height: auto;
        margin: 15px;
        border-radius: 15px;
    }

        .hero-section h1 {
            font-size: 1.5rem;
        }

    .glass-container {
        max-width: 100%;
        max-height: 300px;
        border-radius: 15px;
    }

    .features-section,
    .benefits-section,
    .use-cases-section,
    .how-it-works-section,
    .pricing-section,
    .cta-section,
    .testimonials-section,
    .faq-section,
    .footer-cta {
        padding: 40px 15px;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .price {
        flex-direction: column;
    }

    .amount {
        font-size: 2rem;
    }
}
