/* Modern Professional Enhancements */
:root {
    --primary-gradient: linear-gradient(135deg, #7360f2 0%, #5f4dcf 100%);
    --secondary-gradient: linear-gradient(135deg, #352f4a 0%, #2a2138 100%);
    --success-gradient: linear-gradient(135deg, #35a552 0%, #2d8f45 100%);
    --danger-gradient: linear-gradient(135deg, #f94770 0%, #e63961 100%);
    --warning-gradient: linear-gradient(135deg, #ffd751 0%, #ffcd33 100%);
    --info-gradient: linear-gradient(135deg, #00c2ff 0%, #00a8db 100%);
    --light-gradient: linear-gradient(135deg, #fbfbff 0%, #f5f5f9 100%);
    --modern-shadow: 0 10px 30px -5px rgba(115, 96, 242, 0.15);
    --modern-shadow-hover: 0 20px 40px -10px rgba(115, 96, 242, 0.25);
    --glassmorphism: rgba(255, 255, 255, 0.1);
    --glassmorphism-border: rgba(255, 255, 255, 0.2);


}

/* ENHANCED HEADER STYLING */
.navbar {
    padding: 1.25rem 0;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(115, 96, 242, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img {
    height: 45px;
    filter: drop-shadow(0 2px 8px rgba(115, 96, 242, 0.15));
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    filter: drop-shadow(0 4px 12px rgba(115, 96, 242, 0.25));
}

.nav-link {
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
}

.nav-link:hover {
    color: #7360f2;
    background: rgba(115, 96, 242, 0.08);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

/* ENHANCED HERO SECTION STYLING */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #fbfbff 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Utility class for minimum height */
.min-vh-80 {
    min-height: 80vh;
}

/* Hero Content Styling */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1726;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.hero-title .text-primary {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-note {
    opacity: 0.8;
}

.hero-note small {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Image Styling */
.hero-image-wrapper {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 1;
}

/* Hero CTA Button Enhancements */
.hero-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta .btn-primary:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.hero-cta .btn-primary i {
    transition: transform 0.3s ease;
}

.hero-cta .btn-primary:hover i {
    transform: translateX(3px);
}

/* Additional spacing for hero sections */
.hero-section .container-fluid {
    position: relative;
    z-index: 2;
}

/* Text primary color override for hero */
.hero-title .text-primary {
    color: #7360f2 !important;
}

/* ===== COMMUNITY FEATURES SECTION ===== */

/* Community Section Styling */
#community {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.community-heading {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1726;
    margin-bottom: 1.5rem;
}

.community-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

/* Community Tab Navigation */
.community-nav-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.community-nav {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 3rem;
    padding: 0.75rem;
    box-shadow: 0 10px 40px rgba(115, 96, 242, 0.15);
    border: 1px solid rgba(115, 96, 242, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    backdrop-filter: blur(10px);
}

.community-nav-link {
    border-radius: 2rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #495057;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
}

.community-nav-link:hover {
    background: rgba(115, 96, 242, 0.1);
    color: #7360f2;
    transform: translateY(-2px);
    text-decoration: none;
}

.community-nav-link.active {
    background: var(--primary-gradient);
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(115, 96, 242, 0.4);
    transform: translateY(-2px);
}

.community-nav-link.active:hover {
    background: var(--primary-gradient);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.community-nav-link:focus {
    outline: 2px solid #7360f2;
    outline-offset: 2px;
}

.community-nav-link i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.community-nav-link span {
    font-weight: 600;
}

/* Community Tab Content */
.community-tab-content {
    margin-top: 2rem;
}

.community-tab-content .tab-pane {
    display: none;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.community-tab-content .tab-pane.show {
    display: block;
    opacity: 1;
}

.community-tab-content .tab-pane.active {
    opacity: 1;
}

.community-tab-card {
    background: #ffffff;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(115, 96, 242, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-tab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Community Image Styling */
.community-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 400px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.community-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: all 0.4s ease;
}

.community-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(115, 96, 242, 0.1) 0%, rgba(115, 96, 242, 0.05) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.community-image-wrapper:hover .community-image-overlay {
    opacity: 1;
}

.community-image-wrapper:hover .community-feature-image {
    transform: scale(1.05);
}

.community-stats {
    display: flex;
    gap: 1rem;
    width: 100%;
    justify-content: space-around;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    flex: 1;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item i {
    font-size: 1.5rem;
    color: #7360f2;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
}

/* Community Content Styling */
.community-content {
    padding: 1rem 0;
}

.community-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.create-badge {
    background: rgba(115, 96, 242, 0.1);
    color: #7360f2;
    border-color: rgba(115, 96, 242, 0.2);
}

.monetize-badge {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.2);
}

.grow-badge {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border-color: rgba(23, 162, 184, 0.2);
}

.community-tab-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1726;
    margin-bottom: 1.5rem;
}

.community-tab-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Community Features List */
.community-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(115, 96, 242, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon-wrapper i {
    font-size: 1.25rem;
    color: #7360f2;
}



.feature-item:hover .feature-icon-wrapper {
    background: var(--primary-gradient);
    transform: scale(1.1);
}

.feature-item:hover .feature-icon-wrapper i {
    color: #ffffff ;
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1726;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Community CTA Buttons */
.community-cta {
    margin-top: 2rem;
}

.btn-create {
    background: var(--primary-gradient);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-create:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(115, 96, 242, 0.4);
}

.btn-monetize {
    background: var(--success-gradient);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-monetize:hover {
    background: var(--success-gradient);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
}

.btn-grow {
    background: var(--info-gradient);
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-grow:hover {
    background: var(--info-gradient);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(23, 162, 184, 0.4);
}

/* Responsive Design for Community Section */
@media (max-width: 991px) {
    .community-heading {
        font-size: 2.2rem;
    }

    .community-tab-card {
        padding: 2rem;
    }

    .community-image-wrapper {
        height: 300px;
        margin-bottom: 2rem;
    }

    .community-tab-title {
        font-size: 1.8rem;
    }

    .community-nav-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }

    .community-nav {
        width: 100%;
    }

    .community-nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .community-nav-link i {
        font-size: 1rem;
        margin-right: 0.4rem;
    }
}

@media (max-width: 767px) {
    .community-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .community-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .community-tab-card {
        padding: 1.5rem;
    }

    .community-image-wrapper {
        height: 250px;
    }

    .community-tab-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .community-tab-description {
        font-size: 1rem;
        text-align: center;
    }

    .community-nav-wrapper {
        padding: 0 0.5rem;
    }

    .community-nav {
        padding: 0.5rem;
        gap: 0.25rem;
    }

    .community-nav-link {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .community-nav-link i {
        font-size: 1.1rem;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }

    .community-nav-link span {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    .community-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stat-item {
        padding: 0.75rem;
    }

    .community-cta {
        text-align: center;
    }

    .btn-create,
    .btn-monetize,
    .btn-grow {
        width: 100%;
        max-width: 280px;
    }
}

/* ===== PRICING SECTION ===== */

/* Pricing Section Styling */
#pricing {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.pricing-heading {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1726;
    margin-bottom: 1.5rem;
}

.pricing-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

/* Pricing Hero Card */
.pricing-hero-card {
    background: #ffffff;
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(115, 96, 242, 0.1);
    border: 1px solid rgba(115, 96, 242, 0.08);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-hero-card:hover {
    box-shadow: 0 30px 60px rgba(115, 96, 242, 0.15);
    border-color: rgba(115, 96, 242, 0.12);
}

.pricing-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-gradient);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #ffffff;
    font-size: 1.5rem;
}

.pricing-value {
    margin-bottom: 1.5rem;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1726;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-period {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7360f2;
    letter-spacing: 0.1em;
}

.pricing-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-cta {
    margin-bottom: 1.5rem;
}

.btn-pricing {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(115, 96, 242, 0.4);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Pricing Features */
.pricing-features {
    padding-left: 2rem;
}

.pricing-features-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1726;
    margin-bottom: 2rem;
}

.pricing-feature-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-feature-card:hover {
    border-color: rgba(115, 96, 242, 0.15);
    box-shadow: 0 8px 25px rgba(115, 96, 242, 0.08);
}

.feature-icon-modern {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon-modern.community {
    background: rgba(115, 96, 242, 0.1);
    color: #7360f2;
}

.feature-icon-modern.education {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.feature-icon-modern.calendar {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.feature-icon-modern.analytics {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.pricing-feature-card:hover .feature-icon-modern {
    transform: translateY(-3px);
}

.feature-content-modern h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1726;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-content-modern p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Design for Pricing */
@media (max-width: 991px) {
    .pricing-heading {
        font-size: 2.2rem;
    }

    .pricing-hero-card {
        padding: 2.5rem 2rem;
        margin-bottom: 3rem;
    }

    .pricing-features {
        padding-left: 0;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .pricing-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .pricing-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .pricing-hero-card {
        padding: 2rem 1.5rem;
    }

    .pricing-features-title {
        font-size: 1.3rem;
        text-align: center;
    }

    .price-amount {
        font-size: 2.2rem;
    }

    .btn-pricing {
        width: 100%;
        justify-content: center;
    }

    .pricing-feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* ===== FEATURES SECTION ===== */

/* Features Section Styling */
#features {
    background: #ffffff;
    position: relative;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(115, 96, 242, 0.1);
    color: #7360f2;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(115, 96, 242, 0.2);
}

.features-heading {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1726;
    margin-bottom: 1.5rem;
}

.features-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    margin-top: 2rem;
}

.modern-feature-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-feature-card:hover {
    border-color: rgba(115, 96, 242, 0.15);
    box-shadow: 0 15px 35px rgba(115, 96, 242, 0.1);
    transform: translateY(-3px);
}

.feature-card-header {
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.community-icon {
    background: #f1f5f9;
    color: #64748b;
}

.calendar-icon {
    background: #f1f5f9;
    color: #64748b;
}

.education-icon {
    background: #f1f5f9;
    color: #64748b;
}

.monetize-icon {
    background: #f1f5f9;
    color: #64748b;
}

.funnel-icon {
    background: #f1f5f9;
    color: #64748b;
}

.analytics-icon {
    background: #f1f5f9;
    color: #64748b;
}

.modern-feature-card:hover .feature-icon-wrapper {
    transform: translateY(-2px);
}


.feature-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1a1726;
    margin-bottom: 0;
    line-height: 1.3;
}

.feature-card-content {
    flex: 1;
}

.feature-card-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #7360f2;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-card-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Design for Features */
@media (max-width: 991px) {
    .features-heading {
        font-size: 2.2rem;
    }

    .modern-feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.3rem;
    }

    .feature-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .features-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .features-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .modern-feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .feature-icon-wrapper {
        margin: 0 auto 1.5rem;
    }

    .feature-card-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .feature-card-subtitle {
        text-align: center;
    }

    .feature-card-description {
        text-align: center;
    }
}

/* Enhanced Buttons */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    box-shadow: 0 8px 25px rgba(115, 96, 242, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.025em;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(115, 96, 242, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Enhanced Hero Image */
.hero-image {
    border-radius: 1.5rem;
    box-shadow:
        0 20px 40px -8px rgba(115, 96, 242, 0.2),
        0 0 0 1px rgba(115, 96, 242, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(115, 96, 242, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hero-image:hover::before {
    opacity: 1;
}

.hero-image:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow:
        0 30px 60px -8px rgba(115, 96, 242, 0.3),
        0 0 0 1px rgba(115, 96, 242, 0.08);
}





/* Professional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.hero-section .col-lg-5 {
    animation: fadeInUp 0.6s ease-out;
}

.hero-section .col-lg-7 {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}





/* Responsive Enhancements */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }

    .min-vh-80 {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .navbar-brand img {
        height: 38px;
    }

    .hero-section {
        padding: 2rem 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-cta {
        align-items: center;
        text-align: center;
    }

    .hero-cta .btn-primary {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .hero-image-wrapper {
        margin-top: 2rem;
    }

    .hero-note {
        text-align: center;
    }
}

/* Enhanced Navigation Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(115, 96, 242, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(115, 96, 242, 0.25);
}

/* Professional Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Selection */
::selection {
    background: rgba(115, 96, 242, 0.2);
    color: #7360f2;
}

/* Enhanced Focus States */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #7360f2;
    outline-offset: 2px;
    border-radius: 0.25rem;
}





/* Modern Buttons */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    box-shadow: var(--modern-shadow);
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.025em;
    padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: var(--modern-shadow-hover);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 0.75rem;
}

/* Modern Cards */
.card,
.shadow-lg,
.shadow-xl {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Modern card hover - override old hover-lift styles */
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

/* Override old hover-lift for modern design */
.modern-feature-card.hover-lift:hover,
.modern-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(115, 96, 242, 0.15);
    box-shadow: 0 15px 35px rgba(115, 96, 242, 0.1);
}

/* Legacy feature card styles removed - replaced with modern features section */

/* Legacy pricing card styles removed - replaced with modern pricing section */

/* Modern Testimonial Cards */
.testimonial-card {
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.12);
}

/* Modern Navigation */
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 40px;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #7360f2;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Modern Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-image {
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(115, 96, 242, 0.25);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 70px -12px rgba(115, 96, 242, 0.3);
}

/* Modern Tab Navigation */
.nav-pills .nav-link {
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-pills .nav-link.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 5px 15px -5px rgba(115, 96, 242, 0.4);
}

.nav-pills .nav-link:not(.active):hover {
    background: rgba(115, 96, 242, 0.1);
    border-color: rgba(115, 96, 242, 0.2);
}

/* Modern Feature Icons */
.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: var(--primary-gradient);
    color: #ffffff;
}

/* Modern FAQ Cards */
.faq-card {
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-card:hover {
    background: rgba(115, 96, 242, 0.02);
    border-color: rgba(115, 96, 242, 0.1);
}

/* Modern Footer */
.footer-modern {
    background: linear-gradient(135deg, #1a1726 0%, #110f1a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern Swiper Styling */
.swiper-container {
    border-radius: 1.5rem;
    overflow: hidden;
}

.swiper-slide img {
    transition: all 0.3s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

/* Modern Badge */
.badge {
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Modern Form Elements */
.form-control {
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #7360f2;
    box-shadow: 0 0 0 0.2rem rgba(115, 96, 242, 0.25);
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Modern Responsive Enhancements */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .card {
        margin-bottom: 1.5rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Modern Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Modern Selection */
::selection {
    background: rgba(115, 96, 242, 0.2);
    color: #7360f2;
}

/* Modern Focus States */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #7360f2;
    outline-offset: 2px;
}