:root {
    --primary-color: #0048ff;
    --primary-dark: #0032cc;
    --secondary-color: #0b0e19;
    --accent-color: #6366f1;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.85);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary-color);
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hover-primary:hover {
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

/* Navbar */
.main-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.main-nav .nav-link {
    font-weight: 500;
    color: var(--text-main);
    margin: 0 10px;
    position: relative;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    transform: scaleX(1);
}

.main-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(135deg, rgba(11, 14, 25, 0.95) 0%, rgba(0, 72, 255, 0.8) 100%), 
                url('../../img/audit.webp') center/cover no-repeat;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 72, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cards */
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 72, 255, 0.05);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg);
}

/* Image Wrappers */
.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.1;
}

/* Footer */
.footer {
    background-color: var(--secondary-color) !important;
}

.footer h3, .footer h5 {
    color: white !important;
}

.footer-links li a {
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.footer .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important; /* Brighter muted text for better legibility */
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 72, 255, 0.25);
}

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

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsiveness */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-section {
        padding: 100px 0 80px;
    }
    .section-padding {
        padding: 60px 0;
    }
}
