:root {
    --evalezy-primary: #116173; /* Teal green */
    --evalezy-secondary: #B7DED3;
    --evalezy-accent: #0E4F5C; /* Dark teal for hover states */
    --evalezy-light: #F3F7F8;
    --evalezy-text-dark: #333333;
    --evalezy-text-light: #666666;
    --evalezy-white: #ffffff;
    --evalezy-border: #e0e0e0;
}


/* Hero Section */
.evalezy-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--evalezy-light) 0%, #fff 100%);
    padding: 180px 0 80px;
    margin-top: 0;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.evalezy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern-dots.png');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--evalezy-text-dark);
}

.hero-title .text-dark {
    display: block;
    color: var(--evalezy-text-dark);
}

.hero-title .text-dark:last-child {
    color: var(--evalezy-primary);
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--evalezy-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn.primary {
    background: var(--evalezy-primary);
    color: white;
    border: 2px solid var(--evalezy-primary);
}

.btn.primary:hover {
    background: var(--evalezy-accent);
    border-color: var(--evalezy-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 97, 115, 0.15);;
}

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

.btn.outline:hover {
    background: rgba(172, 13, 26, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 97, 115, 0.1);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--evalezy-white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--evalezy-primary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--evalezy-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.accent-text {
    color: var(--evalezy-primary);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--evalezy-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--evalezy-border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(17, 97, 115, 0.2) !important; /* Ensure only teal shadow */
    border-color: var(--evalezy-border) !important; /* Reset border to original */
}

.feature-card:hover .feature-icon {
    background-color: rgba(183, 222, 211, 1) !important; /* Keep the original color */
    transform: scale(1.05);
}

.feature-card:hover .feature-icon img {
    filter: none !important; /* Prevent any color changes on icons */
}


.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(183, 222, 211, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: rgba(183, 222, 211, 1);
    transform: scale(1.05);
}

.feature-icon img {
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
}

.feature-icon lord-icon {
    width: 48px !important;
    height: 48px !important;
}

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

.feature-card p {
    color: var(--evalezy-text-light);
    line-height: 1.6;
    font-size: 1rem;
}
/* Dashboard Section */
.dashboard {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.dashboard-wrapper {
    position: relative;
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1800px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.dashboard-image {
    width: 100%;
    padding: 0;
}

.dashboard-image img {
    width: 100%;
    height: auto;
    display: block;
    padding-left: 3%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(120, 137, 254, 0.15);
    transform: scale(1.1);
    
}

.notification-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(120, 137, 254, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    transform: translateX(0);
    transition: all 0.3s ease;
    border: 1px solid rgba(120, 137, 254, 0.1);
    margin-right: 25px;
    margin-left: 25px;
    
}

.notification-card:hover {
    transform: translateX(10px);
    
   
}

.dashboard-notifications.right .notification-card:hover {
    transform: translateX(-10px);
}

.notification-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 137, 254, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
}

.notification-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.notification-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1600px) {
    .dashboard-wrapper {
        grid-template-columns: 1fr 3.5fr 1fr;
    }
}

@media (max-width: 1400px) {
    .dashboard-wrapper {
        grid-template-columns: 1fr 3fr 1fr;
    }
}

@media (max-width: 1200px) {
    .dashboard-wrapper {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }

    .dashboard-image img {
        transform: scale(1);
    }

    .dashboard-notifications {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Plans Section */
.plans-section {
    padding: 120px 0;
    background-color: var(--evalezy-light);
    position: relative;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.plan-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(17, 97, 115, 0.2);
    
}

.plan-header {
    padding: 2.5rem 2rem;
    background-color: var(--evalezy-primary);
    color: white;
    text-align: center;
}

.plan-name {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.plan-price {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.plan-features {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    list-style: none;
    margin: 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    color: var(--evalezy-text-light);
}

.plan-features li i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    color: var(--evalezy-primary);
}

.plan-cta {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--evalezy-border);
    background-color: rgba(172, 13, 26, 0.02);
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background-color: var(--evalezy-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern-dots.png');
    background-repeat: repeat;
    opacity: 0.05;
    z-index: 0;
}

.demo-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.demo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.demo-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.demo-btn {
    display: inline-block;
    background-color: white;
    color: var(--evalezy-primary);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: transparent;
    color: white;
}

/* Section Navigation - Matching the main site style */
.section-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: var(--evalezy-white);
    padding: 0.75rem;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(172, 13, 26, 0.1);
    width: auto;
    min-width: 44px;
}

.nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-indicator {
    width: 8px;
    height: 8px;
    background: var(--evalezy-primary);
    opacity: 0.3;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-label {
    position: absolute;
    right: calc(100% + 10px);
    white-space: nowrap;
    background: var(--evalezy-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-item:hover .nav-indicator,
.nav-item.active .nav-indicator {
    opacity: 1;
    transform: scale(1.2);
}

.nav-item:hover .nav-label {
    opacity: 1;
    transform: translateX(0);
}

.nav-item.active {
    background: rgba(172, 13, 26, 0.1);
    border-radius: 100px;
}

/* Footer with EvalEzy colors */
.footer {
    background: linear-gradient(135deg, var(--evalezy-primary) 0%, var(--evalezy-secondary) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links-column a {
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-links-column a:hover {
    padding-left: 10px;
    color: white;
}

.footer-links-column a.active {
    color: white;
    font-weight: 500;
}

.footer-links-column a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: white;
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-links-column a:hover::before {
    width: 5px;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
/* Add this to override the default contact button styles */
.navbar .contact-btn {
    background: var(--evalezy-primary);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(120, 137, 254, 0.2);
}

.navbar .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 137, 254, 0.3);
    background: var(--evalezy-primary);
}
/* Responsive Styles */
@media (max-width: 1652px) {
    .section-nav {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        margin-bottom: 3rem;
    }
    
    .evalezy-hero {
        padding: 160px 0 60px;
    }
    
    .features, .plans-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .evalezy-hero {
        padding: 140px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
    
    .features, .plans-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }
    
    .section-nav {
        right: 20px;
        padding: 0.5rem;
        height: auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid, .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-content h2 {
        font-size: 2rem;
    }
    
    .demo-content p {
        font-size: 1.1rem;
    }
    
    .section-nav {
        display: none; /* Hide on very small screens */
    }
} 