/* Google Fonts Alternative to Helvetica Neue */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* :root {
    --light-bg: #E9EBEC;
    --secondary-bg: #E4E8EE;
    --primary-color: #4278F5;
    --heading-color: #131731;
    --subtext-color: #677489;
    --overall-bg: #FBFDFE;
} */

:root {
    --light-bg: #F9EBEC;           /* Soft rose mist */
    --secondary-bg: #F5E5E7;       /* Light blush tone */
    --primary-color: #8B1E3F;      /* Deep wine red */
    --heading-color: #2C0D17;      /* Rich dark cherry */
    --subtext-color: #77525C;      /* Muted mauve for secondary text */
    --overall-bg: #FFFAFB;         /* Light ivory-rose blend */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--heading-color);
    background-color: var(--overall-bg);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: #3769df;
    border-color: #3769df;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand h2 {
    margin-bottom: 0;
    color: var(--primary-color);
}

/* Mega Menu Styling */
.dropdown-toggle::after {
    display: none;
}

.dropdown-icon {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.mega-dropdown {
    position: static;
}

.mega-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.mega-dropdown:hover .dropdown-menu {
    display: block;
}

.mega-menu {
    width: 100%;
    margin-top: 0;
    padding: 1.5rem 0;
    border: none;
    border-radius: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    left: 0;
    right: 0;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    color: var(--subtext-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    margin-bottom: 10px;
}

.mega-menu-item {
    margin-bottom: 1.5rem;
}

.mega-menu-item h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.mega-menu-item p {
    font-size: 0.85rem;
    color: var(--subtext-color);
    margin-bottom: 6px;
}

.menu-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(66, 120, 245, 0.1);
    color: var(--primary-color);
    border-radius: 6px;
    margin-right: 12px;
    flex-shrink: 0;
}

.menu-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.menu-link:hover {
    color: #3769df;
}

.menu-link i {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.menu-link:hover i {
    transform: translateX(3px);
}

/* Hero Section */
.hero-section {
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
                rgba(66, 120, 245, 0.08) 0%, 
                rgba(255, 255, 255, 0) 30%, 
                rgba(255, 255, 255, 0) 70%, 
                rgba(240, 101, 149, 0.08) 100%);
}

/* Hero Section */
/* .hero-section {
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
                rgba(255, 215, 0, 0.15) 0%,      /* Soft Gold */
                rgba(255, 250, 205, 0.08) 30%,   /* Lemon Chiffon / Light Yellow */
                rgba(255, 255, 240, 0.05) 70%,   /* Ivory Glow */
                rgba(255, 223, 128, 0.15) 100%); /* Warm Goldenrod */
} */

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(66, 120, 245, 0.2) 0%, rgba(66, 120, 245, 0.1) 40%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 101, 149, 0.2) 0%, rgba(240, 101, 149, 0.1) 40%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-section h1 {
    color: var(--heading-color);
    font-weight: 700;
}

.hero-section p {
    color: var(--subtext-color);
}

/* Dashboard Preview */
.dashboard-preview {
    margin-bottom: 4rem;
}

.dashboard-card {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

/* Feature Cards */
.feature-card {
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
    color: var(--heading-color);
    font-weight: 600;
}

.feature-icon {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
    opacity: 1;
}

/* Trust Metrics */
.trust-metrics {
    background-color: var(--light-bg);
}

.trust-metrics h3 {
    color: var(--heading-color);
}

/* Marketplace Cards */
.card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.program-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Category Cards */
.category-card {
    height: 100%;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Cards */
.pricing-card {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

.pricing-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Footer */
.footer {
    background-color: var(--light-bg);
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

/* Client Logos */
.client-logos img {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
    max-height: 50px;
    width: auto;
}

.client-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Responsive Styling */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0 2rem;
    }
    
    .dashboard-card {
        max-width: 100%;
    }
    
    .pricing-toggle .btn-group {
        width: 100%;
    }
    
    .pricing-toggle .btn {
        flex: 1;
    }
}

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

.hero-section h1,
.hero-section p,
.hero-section .btn {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-section p {
    animation-delay: 0.2s;
}

.hero-section .btn {
    animation-delay: 0.4s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}