body { font-family: "Inter", sans-serif; }
.custom-navbar { background: linear-gradient(135deg, #667eea, #764ba2); padding: 1rem 0; }
.hero-section { min-height: 100vh; background: linear-gradient(135deg, #667eea, #764ba2); display: flex; align-items: center; color: white; }
.feature-card { background: #fff; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.page-header { background: linear-gradient(135deg, #667eea, #764ba2) !important; }
.pricing-card { background: #fff; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; border: 2px solid transparent; overflow: hidden; }
.pricing-card.featured { border-color: #007bff; transform: scale(1.05); }
.btn { border-radius: 50px; padding: 12px 30px; font-weight: 600; transition: all 0.3s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,123,255,0.3); }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }


/* wwwroot/css/styles.css */
:root {
    --primary-color: #4e73df;
    --secondary-color: #2e59d9;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1590283603385-17ffb3a7f29f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center;
    background-size: cover;
    color: white;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-icon {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section */
.features-section {
    background-color: white;
}

.feature-card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-card {
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .pricing-card:hover {
        transform: translateY(-5px);
    }

    .pricing-card.featured {
        border: 2px solid var(--primary-color);
        position: relative;
    }

        .pricing-card.featured::before {
            content: "Popular";
            position: absolute;
            top: -10px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin: 15px 0;
}

    .price .currency {
        font-size: 1.5rem;
        vertical-align: top;
    }

    .price .period {
        font-size: 1rem;
        color: #6c757d;
    }

/* Testimonials Section */

.testimonials-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    width: 280px; /* Fixed width */
    height: 280px; /* Equal height makes it square */
    padding: 1.5rem;
    margin: 0 0.5rem;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background: white;
    flex-shrink: 0; /* Prevent cards from shrinking */
}

    /* Content inside square cards */
    .testimonial-card p {
        flex-grow: 1; /* Push footer to bottom */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4; /* Limit to 4 lines */
        -webkit-box-orient: vertical;
        margin-bottom: 1rem;
    }

/* Mobile responsiveness */
@media (max-width: 576px) {
    .testimonial-card {
        width: 250px;
        height: 257px;
        padding: 1rem;
    }

    .testimonial-scroll-container {
        padding-bottom: 1rem; /* Extra space for scroll */
    }
}


.customer-info {
    display: flex;
    align-items: center;
}

    .customer-info h6 {
        margin-bottom: 0;
    }

    .customer-info small {
        margin-left: 10px;
    }

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Scroll container improvements */
.testimonial-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth iOS scroll */
    padding: 1rem 0;
    margin: 0 -15px; /* Negative margin to allow edge-to-edge feel */
}

.testimonial-scroll-container {
    display: inline-flex;
    gap: 1rem;
    padding: 0 15px; /* Compensate for negative margin */
    animation: none; /* Remove auto-scroll if present */
}

/* Customer info at bottom */
.customer-info {
    margin-top: auto; /* Pushes to bottom */
}

/* Testimonial Scroll Animation */
.testimonial-scroll-container {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content; /* Allow container to expand with content */
}

.testimonial-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-links h5 {
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-links a:hover {
        color: white;
    }

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

    .social-icons a:hover {
        color: var(--primary-color);
    }

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}


.no-style-link {
    color: inherit;
    text-decoration: none;
    
}

.footer-links:hover {
    color: #A86FFB;
    transition: color 0.3s ease;
}

.text-purple {
    color: #A86FFB;
}

/* Mobile Optimization for Hero Section */
@media (max-width: 768px) {
    /* Responsive typography */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Layout adjustments */
    .hero-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .row.align-items-center.min-vh-100 {
        min-height: auto !important;
    }

    /* Stack columns */
    .hero-section .row {
        flex-direction: column-reverse;
    }

    .hero-section .col-lg-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    /* Button adjustments */
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

        .hero-buttons .btn:last-child {
            margin-bottom: 0;
        }

    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }

    /* Icon sizing */
    .hero-icon {
        font-size: 5rem !important;
    }
}


/* ===== Connect Page Styles ===== */
/* Connection Steps */
.connection-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: #f8f9fa;
    width: 22%;
    position: relative;
}

    .step-card.active {
        background: #0d6efd;
        color: white;
    }

        .step-card.active h4,
        .step-card.active p {
            color: white;
        }

.step-number {
    width: 40px;
    height: 40px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.step-card.active .step-number {
    background: white;
    color: #0d6efd;
}

.step-connector {
    flex-grow: 1;
    height: 3px;
    background: #dee2e6;
    margin-top: 20px;
}

/* Guide Steps */
.guide-step {
    padding: 1.5rem;
    border-left: 3px solid #0d6efd;
    background: #f8f9fa;
    border-radius: 0 0.5rem 0.5rem 0;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-types {
    list-style: none;
    padding-left: 0;
}

    .package-types li {
        padding: 0.5rem 0;
    }

/* Right side background */
.connection-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    background-image: url('../images/get-connected.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
}

.support-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.95);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .connection-steps {
        flex-direction: column;
    }

    .step-card {
        width: 100%;
        margin-bottom: 1rem;
        text-align: left;
        display: flex;
        align-items: center;
    }

    .step-number {
        margin: 0 1rem 0 0;
        flex-shrink: 0;
    }

    .step-connector {
        display: none;
    }

    .connection-visual {
        min-height: 300px;
        margin-top: 2rem;
        background-position: center;
    }
}