/* Global Aesthetic Improvements */
:root {
    --primary-color: #451a7d;
    /* Assuming from meta theme-color */
    --secondary-color: #f3f4f6;
    --text-color: #333;
    --heading-color: #1a1a1a;
    --transition-speed: 0.3s;
}



/* Feature Cards (for Key Success) */
.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(69, 26, 125, 0.1);
    /* Light Primary */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: all var(--transition-speed) ease;
}

.feature-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Modern List Items (for Benefits, etc) */
.modern-list-item {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02); */
    /* border-left: 4px solid var(--primary-color); */
    border: 1px solid #e5e7eb;
    transition: transform 0.2s;
}

.modern-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.modern-list-item .icon-box {
    min-width: 50px;
    height: 50px;
    background: #6e42cb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #fff;
    font-size: 20px;
}

.modern-list-item .content-box h5 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.modern-list-item .content-box p {
    margin-bottom: 0;
    color: #555;
    font-size: 0.9rem;
}

/* Section Enhancements */
.section-title h2 {
    font-weight: 600;
    font-size: 42px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}



/* Image Styling */
.img-hover-scale {
    transition: transform 0.5s ease;
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
}

.img-hover-scale:hover {
    transform: scale(1.05);
}

/* Counter Modernization */
.counter-box-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.counter-box-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.counter-box-modern .counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.counter-box-modern .counter-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Alternating Section Colors */
.bg-gradient-soft {
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f2f5 100%);
}

.bg-lavender {
    background-color: #f4f0ff;
    /* Light Lavender */
}

.bg-purple-dark {
    background-color: var(--primary-color);
}



/* header modern  */
/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #444 !important;
    font-size: 0.95rem;
    padding: 10px 15px !important;
    position: relative;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}


.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    animation: slideUp 0.3s ease-im;
    padding: 10px;
    margin-top: 15px !important;
    /* Offset from nav */
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    color: #555;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-item i {
    color: var(--primary-color);
    opacity: 0.7;
    transition: 0.3s;
}

.dropdown-item:hover i {
    opacity: 1;
}

/* Call to Action Buttons */
.header-buttons .btn {
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-login {
    color: var(--primary-color);
    border: 2px solid transparent;
}

.btn-login:hover {
    color: var(--primary-color);
    background: rgba(69, 26, 125, 0.05);
    /* Slight tint */
}

.btn-signup {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(69, 26, 125, 0.3);
    border: none;
}

.btn-signup:hover {
    background: #391169;
    /* Darker shade */
    box-shadow: 0 8px 20px rgba(69, 26, 125, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

 .app-screenshot-slider-wrapper {
            padding: 20px 0;
            overflow: visible;
            /* Allow shadow/scale to peek out if needed */
        }

        .swiper.myAppSwiper {
            width: 100%;
            padding-top: 70px;
            padding-bottom: 80px;
        }

        .swiper.myAppSwiper .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 250px;
            /* Approximate width of a phone screen */
            /* height: 500px; */
            filter: blur(2px);
            transition: all 0.3s ease;
            position: relative;
        }

        .swiper.myAppSwiper .swiper-slide-active {
            filter: blur(0);
            opacity: 1;
            z-index: 10;
        }

        .swiper.myAppSwiper .swiper-slide img {
            display: block;
            width: 100%;
            border: 6px solid #222;
            /* Modern bezel look */
            border-radius: 24px;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
            /* Bouncy transition */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .swiper.myAppSwiper .swiper-slide-active img {
            transform: scale(1.1) translateY(-10px);
            /* Make it pop & float up */
            border-color: #000;
            box-shadow: 0 40px 70px -10px rgba(0, 0, 0, 0.5);
            /* Deep, premium shadow */
        }

        /* Title styling */
        .swiper.myAppSwiper .slide-title {
            opacity: 0;
            transition: all 0.3s ease;
        }

        .swiper.myAppSwiper .swiper-slide-active .slide-title {
            opacity: 1;
            transform: translateY(0);
        }

        /* Pagination bullets style */
        .swiper-pagination-bullet-active {
            background-color: var(--primary-color, #451a7d);
        }