﻿


.feature-card {
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 179, 255, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 179, 255, 0.2) !important;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .feature-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

.feature-card:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
    position: relative;
}

@media (max-width: 768px) {
    .feature-icon {
        width: 60px;
        height: 60px;
    }

        .feature-icon i {
            font-size: 1.5rem;
        }

    .step-number {
        width: 25px !important;
        height: 25px !important;
        font-size: 0.8rem !important;
    }
}

/* Ensure consistent styling with your existing feature cards */
.feature-title {
    font-weight: 700;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 300px;
        }
}
/* Additional CSS for the new choose-your-path section */
.choose-path-section {
    background: #f8f9fa;
}

.path-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .path-card:hover {
        transform: translateY(-5px);
        border-color: var(--bs-primary);
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.15);
    }

.path-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bs-primary), #007bff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
}

.path-title {
    font-weight: 600;
    color: #333;
}

.path-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.choose-path-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

/* Agent pod styling for Smart Outreach */
.outreach-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

    .outreach-icon .icon-glow {
        background: rgba(255, 107, 107, 0.3);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .path-card {
        margin-bottom: 1rem;
    }

    .choose-path-image {
        margin-top: 2rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Enhanced CTA section styling */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

    .cta-buttons .btn {
        min-width: 200px;
    }

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 300px;
        }
}


/* Fix for typed text layout shifting */
.typed-text-container {
    min-height: 4.5rem; /* Adjust based on your font size */
    display: flex;
    align-items: flex-start; /* or center if you prefer */
    margin-bottom: 1.5rem;
}

.typed-text {
    line-height: 1.2;
    /* Ensure consistent spacing */
}

/* Alternative: Reserve space for the entire hero content */
.choose-path-section .col-lg-6:first-child {
    min-height: 600px; /* Reserve minimum space */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Prevent layout shifts in hero section */
.hero-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-text-section {
    flex: 0 0 auto; /* Don't grow/shrink */
    min-height: 5rem; /* Reserve space for typed text */
}