/* 
 * YENİ KARE - Index Page Enhanced Styles
 * Modern, SEO Optimized, Professional Design
 */

/* ============================================
   GLOBAL IMPROVEMENTS
   ============================================ */

:root {
    --primary-color: #5b00aa;
    --primary-dark: #7B3FA7;
    --primary-light: #5b00aa;
    --accent-color: #5b00aa;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #888;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(146, 85, 206, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 30px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
}

/* Optimize transitions - don't apply to all elements */
.transition-smooth {
    transition: var(--transition);
}

/* Better font smoothing */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: #fff;
}

/* ============================================
   HERO SECTION ENHANCEMENTS
   ============================================ */

/* ============================================
   HERO SECTION ENHANCEMENTS - FIXED
   ============================================ */

/* Hero Section Complete Fix */
.chy-hero-1-area {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.chy-hero-1-area .container {
    position: relative;
    z-index: 10;
}

.chy-hero-1-area .row {
    align-items: center;
    min-height: 70vh;
}

.chy-hero-1-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: var(--spacing-md);
    z-index: 10;
    position: relative;
}

.chy-hero-1-img {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.chy-hero-1-img .main-img {
    text-align: center;
    max-width: 100%;
}

.chy-hero-1-img .main-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Ensure proper spacing */
.chy-hero-1-content > * {
    margin-bottom: var(--spacing-sm);
}

.chy-hero-1-content > *:last-child {
    margin-bottom: 0;
}

.chy-hero-1-area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(146, 85, 206, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.chy-hero-1-area::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(146, 85, 206, 0.4);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-trust-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(146, 85, 206, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(146, 85, 206, 0.6);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.hero-trust-badge .badge-icon {
    color: #fff;
    font-size: 14px;
}

.hero-trust-badge .badge-text {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Hero Title Styling - IMPROVED */
.chy-hero-1-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.chy-hero-1-content h5 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.chy-hero-1-content p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.hero-features-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.hero-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.hero-features-list li:last-child {
    margin-bottom: 0;
}

.hero-features-list li i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-features-list li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.proof-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
}

.proof-avatars img:first-child {
    margin-left: 0;
}

.proof-avatars .more-users {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #5b00aa;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-left: -10px;
    border: 3px solid #fff;
}

.proof-text .stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.proof-text .stars i {
    color: #5b00aa;
    font-size: 14px;
}

.proof-text .stars span {
    font-weight: 700;
    color: #333;
    margin-left: 5px;
}

.proof-text p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* ============================================
   SECTION TITLES - GLOBAL STYLING
   ============================================ */

.section-title-wrap {
    margin-bottom: 30px;
}

.section-title-wrap h5,
.chy-subtitle-1 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-title-wrap h2,
.chy-title-1 {
    font-size: 44px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.3px;
}

.section-title-wrap p,
.chy-section-para-1 {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.text-center .chy-section-para-1 {
    margin-left: auto;
    margin-right: auto;
}


/* ============================================
   STATS SECTION - CLEAN & MINIMAL
   ============================================ */

.stats-section {
    background: #f8f9fa;
    padding: 15px 0;
}

.stats-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: stretch;
    overflow-x: auto;
    padding: 0 10px;
}

.stat-card {
    background: #ffffff;
    padding: 25px 12px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1 1 0;
    min-width: 180px;
    max-width: none;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #5b00aa;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: #7a4ba8;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

/* Enhanced Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes numberPulse {
    0% { 
        transform: scale(1);
        text-shadow: 0 2px 4px rgba(146, 85, 206, 0.2);
    }
    50% { 
        transform: scale(1.1);
        text-shadow: 0 4px 8px rgba(146, 85, 206, 0.4);
    }
    100% { 
        transform: scale(1);
        text-shadow: 0 2px 4px rgba(146, 85, 206, 0.2);
    }
}

@keyframes counterGlow {
    0% {
        text-shadow: 0 2px 4px rgba(146, 85, 206, 0.2);
    }
    50% {
        text-shadow: 0 4px 12px rgba(146, 85, 206, 0.6);
    }
    100% {
        text-shadow: 0 2px 4px rgba(146, 85, 206, 0.2);
    }
}

.stat-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

.stat-number {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: #5b00aa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #ffffff;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #5b00aa;
    margin-bottom: 12px;
    line-height: 1;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 2px 4px rgba(146, 85, 206, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.stat-text {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 8px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px;
        overflow-x: auto;
        padding: 0 5px;
    }
    
    .stat-card {
        flex: 1 1 0;
        min-width: 160px;
        padding: 20px 8px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px;
        overflow-x: auto;
        padding: 0 5px;
    }
    
    .stat-card {
        flex: 1 1 0;
        min-width: 140px;
        padding: 18px 6px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 6px;
        overflow-x: auto;
        padding: 0 5px;
    }
    
    .stat-card {
        flex: 1 1 0;
        min-width: 120px;
        padding: 15px 4px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-text {
        font-size: 10px;
    }
}

/* ============================================
   PRICING RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .pricing-preview-card {
        padding: 32px 22px;
        min-height: 450px;
    }
    
    .package-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .package-icon i {
        font-size: 30px;
    }
    
    .package-name {
        font-size: 20px;
    }
    
    .pricing-features li {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .pricing-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .pricing-preview-card {
        padding: 28px 20px;
        min-height: 420px;
        margin-bottom: 20px;
    }
    
    .package-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .package-icon i {
        font-size: 26px;
    }
    
    .package-name {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .package-subtitle {
        font-size: 12px;
        margin-bottom: 18px;
    }
    
    .pricing-features {
        margin-bottom: 25px;
    }
    
    .pricing-features li {
        font-size: 12px;
        margin-bottom: 4px;
        gap: 10px;
    }
    
    .pricing-features li i {
        font-size: 14px;
    }
    
    .pricing-btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .featured-badge {
        top: -8px;
        right: 18px;
        padding: 6px 16px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .pricing-preview-card {
        padding: 24px 16px;
        min-height: 380px;
        margin-bottom: 18px;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .package-icon i {
        font-size: 24px;
    }
    
    .package-name {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .package-subtitle {
        font-size: 11px;
        margin-bottom: 16px;
    }
    
    .pricing-features {
        margin-bottom: 20px;
    }
    
    .pricing-features li {
        font-size: 11px;
        margin-bottom: 4px;
        gap: 8px;
    }
    
    .pricing-features li i {
        font-size: 12px;
    }
    
    .pricing-btn {
        padding: 8px 14px;
        font-size: 10px;
    }
    
    .featured-badge {
        top: -6px;
        right: 16px;
        padding: 5px 14px;
        font-size: 10px;
    }
}

/* ============================================
   MODULE SHOWCASE CARDS
   ============================================ */

.module-showcase-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    margin-bottom: 20px;
}

.module-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.module-showcase-card:hover::before {
    transform: scaleX(1);
}

.module-showcase-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(146, 85, 206, 0.25);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.module-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    position: relative;
}

.module-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    top: 0;
    left: 0;
    border-radius: 16px;
}

.module-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.module-badge.popular {
    background: #5b00aa;
    color: #fff;
}

.module-badge.trending {
    background: #7B3FA7;
    color: #fff;
}

.module-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.4;
}

.module-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 25px;
    flex-grow: 1;
    font-weight: 400;
}

.module-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 28px;
    margin-top: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(146, 85, 206, 0.1);
}

.feature-item:hover {
    background: linear-gradient(135deg, #f0e6f9 0%, #e6d4f5 100%);
    transform: scale(1.05);
    border-color: rgba(146, 85, 206, 0.3);
    box-shadow: 0 4px 16px rgba(146, 85, 206, 0.15);
}

.feature-item i {
    font-size: 22px;
    color: #5b00aa;
    margin-bottom: 8px;
}

.feature-item span {
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

.module-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #5b00aa 0%, #7B3FA7 100%);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.module-cta-btn:hover {
    background: linear-gradient(135deg, #7B3FA7 0%, #6B2F97 100%);
    transform: translateX(5px);
}

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

.pricing-preview-card {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 20px 16px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    box-shadow: none !important;
}

.pricing-preview-card:hover {
    transform: translateY(-2px);
    border-color: rgba(146, 85, 206, 0.25);
    box-shadow: none !important;
}

.pricing-preview-card.featured {
    background: linear-gradient(135deg, #5b00aa 0%, #7B3FA7 100%);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.01);
    z-index: 2;
    box-shadow: none !important;
}

.pricing-preview-card.featured:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none !important;
}

.pricing-preview-card.featured .pricing-header,
.pricing-preview-card.featured .pricing-features li,
.pricing-preview-card.featured .package-name,
.pricing-preview-card.featured .package-subtitle {
    color: #fff;
}

.featured-badge {
    position: absolute;
    top: -5px;
    right: 15px;
    background: linear-gradient(135deg, #5b00aa 0%, #5b00aa 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    line-height: 1.2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0e6f9 0%, #e6d4f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    position: relative;
    border: 1px solid rgba(146, 85, 206, 0.1);
    box-shadow: none !important;
}

.package-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 50%;
    top: 0;
    left: 0;
}

.pricing-preview-card.featured .package-icon {
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-icon i {
    font-size: 20px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.pricing-preview-card.featured .package-icon i {
    color: #fff;
}

.package-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}

.pricing-preview-card.featured .package-name {
    color: #fff;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.package-price .currency {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-preview-card.featured .package-price .currency {
    color: #5b00aa;
}

.package-price .amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: 0 4px;
}

.pricing-preview-card.featured .package-price .amount {
    color: #fff;
}

.package-price .period {
    font-size: 17px;
    color: var(--text-gray);
    font-weight: 500;
}

.pricing-preview-card.featured .package-price .period {
    color: rgba(255, 255, 255, 0.85);
}

.package-price .custom-text {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-preview-card.featured .package-price .custom-text {
    color: #5b00aa;
}

.package-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.4;
    font-weight: 500;
}

.pricing-preview-card.featured .package-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.2;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li i {
    color: #5b00aa;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-preview-card.featured .pricing-features li {
    color: #fff;
}

.pricing-preview-card.featured .pricing-features li i {
    color: #5b00aa;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 12px;
    background: linear-gradient(135deg, #5b00aa 0%, #5b00aa 100%);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 3px;
    border: 1px solid rgba(160, 102, 217, 0.3);
    min-height: 32px;
}

.pricing-btn span {
    position: relative;
    z-index: 1;
}

.pricing-btn i {
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #4a0088 0%, #6a3196 100%);
    color: #fff;
    text-decoration: none;
}

.pricing-btn:hover i {
    transform: translateX(1px);
}

.pricing-btn.featured-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #5b00aa;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-btn.featured-btn:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #7B3FA7;
    text-decoration: none;
}

.pricing-bottom-note {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px dashed rgba(146, 85, 206, 0.3);
}

.note-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.note-text i {
    color: var(--primary-color);
    font-size: 18px;
}

.note-text strong {
    color: var(--primary-color);
}

.view-all-packages-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.view-all-packages-link i {
    transition: transform 0.3s ease;
}

.view-all-packages-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.view-all-packages-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.step-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    text-align: center;
    border: 2px solid transparent;
    margin-bottom: 20px;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(146, 85, 206, 0.05) 0%, rgba(160, 102, 217, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(146, 85, 206, 0.3);
    box-shadow: 0 15px 35px rgba(146, 85, 206, 0.15);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5b00aa 0%, #5b00aa 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(146, 85, 206, 0.3);
    z-index: 2;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f0e6f9 0%, #e6d4f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    border-radius: 50%;
    top: 0;
    left: 0;
}

.step-icon i {
    font-size: 40px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.step-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Step Connection Lines */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #5b00aa 0%, #5b00aa 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.step-card:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid #5b00aa;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: translateY(-50%);
    z-index: 1;
}

/* Responsive Step Cards */
@media (max-width: 768px) {
    .step-card:not(:last-child)::after,
    .step-card:not(:last-child)::before {
        display: none;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 28px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 15px;
    }
}

/* ============================================
   SECTORS SECTION
   ============================================ */

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.sector-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(146, 85, 206, 0.05) 100%);
    transition: height 0.4s ease;
}

.sector-card:hover::before {
    height: 100%;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(146, 85, 206, 0.2);
}

.sector-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(146, 85, 206, 0.3);
    position: relative;
    z-index: 1;
}

.sector-icon i {
    font-size: 30px;
    color: #fff;
}

.sector-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.sector-projects {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonial-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(146, 85, 206, 0.25);
}

.stars-rating {
    margin-bottom: 20px;
}

.stars-rating i {
    color: #5b00aa;
    font-size: 16px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.author-position {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-accordion .accordion-item {
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(146, 85, 206, 0.2);
}

.faq-accordion .accordion-button {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 22px 28px;
    background: var(--bg-white);
    border: none;
    border-radius: 16px;
    transition: var(--transition);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
    color: #fff;
    transform: rotate(0deg);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 5px 20px rgba(146, 85, 206, 0.3);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.faq-accordion .accordion-body {
    padding: 25px 28px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    border-top: 2px solid var(--bg-light);
}


/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* ============================================
   BUTTON STYLING IMPROVEMENTS
   ============================================ */

.chy-pr-btn-1,
.module-cta-btn,
.pricing-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.chy-pr-btn-1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
}

.chy-pr-btn-1:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(146, 85, 206, 0.4);
}

.btn-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

/* ============================================
   RESPONSIVE IMPROVEMENTS
   ============================================ */

/* Responsive Typography - IMPROVED */
@media (max-width: 1199px) {
    /* Hero */
    .chy-hero-1-area {
        padding: 80px 0 50px 0;
        min-height: auto;
    }
    
    .chy-hero-1-content {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }
    
    .chy-hero-1-content h1 {
        font-size: 46px;
    }
    
    /* Fix Large Text Sizes */
    .chy-heading-1 {
        font-size: 42px !important;
    }
    
    .chy-split-in-hero-1 {
        font-size: 42px !important;
    }
    
    /* Sections */
    .section-title-wrap h2,
    .chy-title-1 {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    /* Hero Section */
    .chy-hero-1-area {
        padding: 60px 0 40px 0;
        min-height: auto;
    }
    
    .chy-hero-1-content {
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }
    
    .chy-hero-1-content h1 {
        font-size: 40px;
    }
    
    .chy-hero-1-content p {
        font-size: 17px;
    }
    
    /* Fix Large Text Sizes */
    .chy-heading-1 {
        font-size: 36px !important;
    }
    
    .chy-split-in-hero-1 {
        font-size: 36px !important;
    }
    
    .chy-split-text-2 {
        font-size: 16px !important;
    }
    
    .section-title-wrap h2,
    .chy-title-1 {
        font-size: 34px;
    }
    
    /* Stats Bar */
    .stats-bar-wrap {
        justify-content: center;
        gap: 20px;
    }
    
    .stat-item {
        flex-basis: calc(50% - 10px);
        min-width: 200px;
    }
    
    /* Lists */
    .hero-features-list {
        margin: 20px 0;
        padding: var(--spacing-sm);
    }
    
    .hero-social-proof {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Grids */
    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }
    
    /* CTA */
    .cta-title {
        font-size: 28px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    /* Spacing */
    .pt-120 {
        padding-top: 80px !important;
    }
    
    .pb-120 {
        padding-bottom: 80px !important;
    }
}

/* Mobile Hero Layout Fix */
@media (max-width: 991px) {
    .chy-hero-1-area {
        padding: 60px 0 40px 0;
        min-height: auto;
    }
    
    .chy-hero-1-area .row {
        min-height: auto;
    }
    
    .chy-hero-1-content {
        height: auto;
        padding: var(--spacing-md) 0;
        padding-right: 0;
        text-align: center;
    }
    
    .chy-hero-1-img {
        height: auto;
        padding: var(--spacing-md) 0;
    }
}

@media (max-width: 767px) {
    .chy-hero-1-area {
        padding: 40px 0 20px 0;
    }
    
    .chy-hero-1-content {
        padding: var(--spacing-sm) 0;
        text-align: center;
    }
    
    .chy-hero-1-img {
        padding: var(--spacing-sm) 0;
    }
    
    .chy-hero-1-content h1 {
        font-size: 34px;
        line-height: 1.25;
    }
    
    .chy-hero-1-content h5 {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .chy-hero-1-content p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    /* Fix Large Text Sizes */
    .chy-heading-1 {
        font-size: 32px !important;
    }
    
    .chy-split-in-hero-1 {
        font-size: 32px !important;
    }
    
    .chy-split-text-2 {
        font-size: 15px !important;
    }
    
    .hero-trust-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .hero-features-list {
        padding: var(--spacing-sm);
        text-align: left;
    }
    
    .hero-features-list li {
        font-size: 14px;
    }
    
    .btn-wrap {
        justify-content: center;
    }
    
    /* Sections */
    .section-title-wrap h2,
    .chy-title-1 {
        font-size: 30px;
    }
    
    .section-title-wrap p,
    .chy-section-para-1 {
        font-size: 16px;
    }
    
    /* Stats */
    .stat-item {
        flex-basis: 100%;
        justify-content: flex-start;
        min-width: auto;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    /* Cards */
    
    .module-showcase-card {
        padding: 24px 20px;
        min-height: 380px;
    }
    
    .module-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item {
        padding: 16px 10px;
    }
    
    /* Pricing Cards */
    .pricing-preview-card {
        padding: 18px 14px;
        min-height: 300px;
        box-shadow: none !important;
    }
    
    .pricing-preview-card.featured {
        transform: scale(1.005);
    }
    
    .pricing-preview-card.featured:hover {
        transform: translateY(-2px) scale(1.005);
        box-shadow: none !important;
    }
    
    /* Testimonial Cards */
    .testimonial-card {
        padding: 28px 24px;
        min-height: 300px;
    }
    
    .testimonial-card::before {
        font-size: 56px;
        top: 16px;
        left: 16px;
    }
    
    /* Steps */
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        top: 15px;
        right: 15px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 32px;
    }
    
    
    /* Buttons */
    .chy-pr-btn-1,
    .module-cta-btn,
    .pricing-btn {
        padding: 8px 12px;
        font-size: 11px;
        min-height: 30px;
    }
    
    .large-btn {
        font-size: 16px;
        padding: 16px 32px !important;
    }
    
    .btn-wrap {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .btn-wrap a {
        justify-content: center;
        text-align: center;
    }
    
    /* Spacing */
    .pt-120 {
        padding-top: 60px !important;
    }
    
    .pb-120 {
        padding-bottom: 60px !important;
    }
    
    .pt-80 {
        padding-top: 50px !important;
    }
    
    .pb-80 {
        padding-bottom: 50px !important;
    }
}

@media (max-width: 575px) {
    /* Hero */
    .chy-hero-1-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .chy-hero-1-content h5 {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .chy-hero-1-content p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Fix Large Text Sizes */
    .chy-heading-1 {
        font-size: 28px !important;
    }
    
    .chy-split-in-hero-1 {
        font-size: 28px !important;
    }
    
    .chy-split-text-2 {
        font-size: 14px !important;
    }
    
    /* Sections */
    .section-title-wrap h2,
    .chy-title-1 {
        font-size: 26px;
    }
    
    .section-title-wrap h5,
    .chy-subtitle-1 {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    /* Stats */
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: var(--spacing-sm);
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Grids */
    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 15px;
    }
    
    /* Cards */
    .usp-card,
    .module-showcase-card,
    .pricing-preview-card,
    .step-card {
        padding: 24px 20px;
    }
    
    .module-showcase-card {
        min-height: 360px;
    }
    
    .pricing-preview-card {
        min-height: 400px;
    }
    
    .pricing-preview-card.featured {
        transform: scale(1.01);
    }
    
    .testimonial-card {
        min-height: 280px;
    }
    
    /* Icons */
    .usp-icon,
    .module-icon,
    .package-icon,
    .step-icon {
        width: 65px;
        height: 65px;
    }
    
    .usp-icon i,
    .module-icon i,
    .package-icon i,
    .step-icon i {
        font-size: 28px;
    }
    
    /* Card Titles */
    .usp-title,
    .module-title,
    .step-title {
        font-size: 20px;
    }
    
    .package-name {
        font-size: 24px;
    }
    
    /* Prices */
    .package-price .amount {
        font-size: 44px;
    }
    
    .package-price .currency {
        font-size: 18px;
    }
    
    /* Spacing */
    .pt-120 {
        padding-top: 50px !important;
    }
    
    .pb-120 {
        padding-bottom: 50px !important;
    }
    
    .pt-80 {
        padding-top: 40px !important;
    }
    
    .pb-80 {
        padding-bottom: 40px !important;
    }
    
    
    /* Testimonials */
    .testimonial-card {
        padding: var(--spacing-md);
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    /* FAQ */
    .faq-accordion .accordion-button {
        font-size: 15px;
        padding: 18px 20px;
    }
    
    .faq-accordion .accordion-body {
        padding: 20px;
        font-size: 14px;
    }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: 9999;
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(146, 85, 206, 0.5);
}

/* ============================================
   ANIMATION UTILITIES
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

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

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease forwards;
}

/* Pulse Animation for Icons */
.pulse-animation {
    animation: pulse-icon 0.6s ease;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

/* Active Accordion Styling */
.active-accordion {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(90deg, rgba(146, 85, 206, 0.05) 0%, transparent 100%);
}

/* Modal Open Body Style */
.modal-open {
    overflow: hidden;
}

/* Initial Page Load State - Hide elements before animation */
.hero-trust-badge,
.chy-hero-1-content h5,
.chy-hero-1-content h1,
.chy-hero-1-content p,
.hero-features-list,
.btn-wrap,
.hero-social-proof,
.chy-hero-1-img {
    opacity: 0;
    transform: translateY(20px);
}

/* Page Loaded Effects */
.page-loaded .hero-trust-badge,
.page-loaded .chy-hero-1-content h5,
.page-loaded .chy-hero-1-content h1,
.page-loaded .chy-hero-1-content p,
.page-loaded .hero-features-list,
.page-loaded .btn-wrap,
.page-loaded .hero-social-proof,
.page-loaded .chy-hero-1-img {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Bar Initial State */
.stats-bar-wrap {
    opacity: 0;
    transform: translateY(30px);
}

/* Gradient Background Animation */
.usp-card.featured {
    background: linear-gradient(135deg, #5b00aa 0%, #7B3FA7 50%, #5b00aa 100%);
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
}

/* Enhanced Shadow on Scroll */
body.scrolled .usp-card,
body.scrolled .module-showcase-card,
body.scrolled .pricing-preview-card {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Smooth Image Loading */
img.loaded {
    opacity: 1;
    transition: opacity 0.6s ease;
}

img[data-src]:not(.loaded) {
    opacity: 0;
}

/* Feature Item Hover Glow Effect */
.feature-item:hover {
    box-shadow: 0 5px 20px rgba(146, 85, 206, 0.25);
}

/* Stats Bar Enhanced Animation */
.stats-bar-wrap {
    opacity: 0;
    transform: translateY(30px);
}

body.scrolled .stats-bar-wrap {
    opacity: 1;
    transform: translateY(0);
}

/* Button Hover Glow */
.chy-pr-btn-1:hover,
.module-cta-btn:hover,
.pricing-btn:hover {
    box-shadow: 0 8px 25px rgba(146, 85, 206, 0.4);
}

/* Sector Card Icon Rotation on Hover - Optimized */
.sector-icon {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover .sector-icon {
    transform: scale(1.1);
}

/* Testimonial Card Quote Icon */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 72px;
    color: rgba(146, 85, 206, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 1;
}

/* Enhanced Pricing Card Featured Glow */
.pricing-preview-card.featured {
    animation: glow-pulse 3s ease-in-out infinite, gradient-shift 8s ease infinite;
    position: relative;
    z-index: 2;
    transform: scale(1.05);
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(146, 85, 206, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(146, 85, 206, 0.8);
    }
}

/* Step Number Bounce on Hover */
.step-card:hover .step-number {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Module Badge Glow */
.module-badge {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: float-badge 2s ease-in-out infinite;
}

/* Stagger Item Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ADDITIONAL DESIGN IMPROVEMENTS
   ============================================ */

/* Section Spacing */
section {
    position: relative;
}

/* Container Improvements */
.chy-container-1 {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Row Gaps */
.row.g-4 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Link Styling */
a {
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Button Enhancements */
.btn-wrap .chy-pr-btn-1 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 5px 20px rgba(146, 85, 206, 0.4);
    transition: var(--transition);
}

.btn-wrap .chy-pr-btn-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(146, 85, 206, 0.5);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: #fff;
}

.btn-wrap .chy-pr-btn-1 .text {
    position: relative;
    z-index: 1;
}

.btn-wrap .chy-pr-btn-1 .icon {
    font-size: 18px;
}

/* Video Button Styling */
.chy-plybtn-1 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(146, 85, 206, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.chy-plybtn-1:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(3px);
}

.chy-plybtn-1 .icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.chy-plybtn-1:hover .icon {
    background: #fff;
    color: var(--primary-color);
}

/* Module CTA Button Enhancement */
.module-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(146, 85, 206, 0.3);
}

.module-cta-btn span {
    font-size: 15px;
}

.module-cta-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.module-cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(146, 85, 206, 0.4);
    color: #fff;
}

.module-cta-btn:hover i {
    transform: translateX(5px);
}

/* Sub CTA Text */
.sub-cta-text {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 15px;
    font-weight: 500;
}

/* Section Background Overlays */
.bg-default {
    position: relative;
    background-color: #fafbfc;
}

.bg-default::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 0;
    pointer-events: none;
}

.bg-default > .container {
    position: relative;
    z-index: 1;
}

/* Alternate Section Backgrounds */
.why-choose-section {
    background: #ffffff;
}

.modules-showcase-section {
    background: linear-gradient(180deg, #fafbfc 0%, #f5f6f8 100%);
    padding-top: 10px;
    padding-bottom: 100px;
}

.pricing-preview-section {
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.how-it-works-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0e6f9 100%);
    padding-top: 5px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5b00aa 0%, #5b00aa 50%, #5b00aa 100%);
    background-size: 200% 100%;
    animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.sectors-section {
    background: linear-gradient(180deg, #f5f6f8 0%, #fafbfc 100%);
}

.testimonials-section {
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}



/* Content Improvements */
.chy-para-1,
.usp-description,
.module-description,
.step-description {
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Icon Consistency */
.fas, .far, .fab {
    display: inline-block;
}

/* Box Shadow Consistency */
.shadow-light {
    box-shadow: var(--shadow-sm);
}

.shadow-medium {
    box-shadow: var(--shadow-md);
}

.shadow-heavy {
    box-shadow: var(--shadow-lg);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Text Alignment */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/* Display */
.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

/* Gaps */
.gap-10 {
    gap: 10px !important;
}

.gap-15 {
    gap: 15px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-30 {
    gap: 30px !important;
}

/* Margins */
.mt-3 {
    margin-top: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Border Radius */
.rounded {
    border-radius: 8px !important;
}

.rounded-lg {
    border-radius: 16px !important;
}

.rounded-xl {
    border-radius: 24px !important;
}

/* Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-gray {
    color: var(--text-gray) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

/* Font Weights */
.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-extrabold {
    font-weight: 800 !important;
}

/* ============================================
   Z-INDEX MANAGEMENT
   ============================================ */

.chy-hero-1-content {
    position: relative;
    z-index: 10;
}

.chy-hero-1-img {
    position: relative;
    z-index: 5;
}

.scroll-progress {
    z-index: 9999;
}

.pricing-preview-card.featured {
    z-index: 10;
}

/* ============================================
   OVERRIDE FIXES
   ============================================ */

/* Ensure proper spacing */
.pt-120 {
    padding-top: 120px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

/* Fix container padding */
@media (min-width: 1200px) {
    .chy-container-1 {
        max-width: 1320px;
    }
}

/* Fix row gaps */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

/* Color Consistency */
.chy-heading-1,
.chy-title-1 {
    color: var(--text-dark);
}

/* Fix Large Text Sizes */
.chy-heading-1 {
    font-size: 48px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
}

.chy-split-in-hero-1 {
    font-size: 48px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
}

.chy-split-text-2 {
    font-size: 18px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

.chy-para-1 {
    color: var(--text-gray);
}

/* Improve readability */
.module-description strong,
.usp-description strong,
.step-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Featured Card Scale Fix */
@media (min-width: 992px) {
    .pricing-preview-card.featured {
        margin-top: -20px;
        margin-bottom: -20px;
    }
}

/* Hero Image Alignment */
.chy-hero-1-img .main-img {
    text-align: center;
}

.chy-hero-1-img .main-img img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Title Decoration */
.section-title-wrap h5::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    margin: 10px auto 0;
}

.section-title-wrap.text-left h5::after {
    margin-left: 0;
}

/* Improve Grid Layout */
.module-features-grid {
    margin-top: auto;
}

/* Button Icon Alignment */
.chy-pr-btn-1 .icon,
.module-cta-btn i,
.pricing-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Accordion Polish */
.faq-accordion .accordion-item:first-child {
    border-radius: 16px 16px 0 0;
}

.faq-accordion .accordion-item:last-child {
    border-radius: 0 0 16px 16px;
}

/* Testimonial Author Avatar */
.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid var(--bg-light);
}

/* Video Play Button Enhancement */
.chy-plybtn-1 .icon i {
    margin-left: 2px;
}

/* Pricing Card Hover State */
.pricing-preview-card:hover .package-icon {
    transform: scale(1.1);
}

/* Module Card Icon Hover */
.module-showcase-card:hover .module-icon {
    transform: scale(1.1) rotate(5deg);
}

/* USP Card Icon Hover */
.usp-card:hover .usp-icon {
    transform: scale(1.1);
}

/* Step Card Icon Hover */
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0e6f9 0%, #e6d4f5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    border-radius: 20px;
    top: 0;
    left: 0;
}

.step-icon i {
    font-size: 32px;
    color: #5b00aa;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #5b00aa 0%, #5b00aa 100%);
}

.step-card:hover .step-icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Sector Icon Hover Effect Override */
.sector-card:hover .sector-icon i {
    animation: rotate-icon 0.6s ease;
}

@keyframes rotate-icon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   FINAL POLISH & FIXES
   ============================================ */

/* Ensure smooth card transitions */
.usp-card,
.module-showcase-card,
.pricing-preview-card,
.step-card,
.sector-card,
.testimonial-card {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Improve text contrast */
.usp-card.featured .usp-description {
    color: rgba(255, 255, 255, 0.95);
}

.usp-card.featured .usp-features li {
    color: rgba(255, 255, 255, 0.95);
}

/* Better spacing for features */
.usp-features li,
.pricing-features li {
    padding: 2px 0;
}

/* Module Badge Enhancement */
.module-badge {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

/* Enhanced Section Dividers */
section + section {
    position: relative;
}

/* Improve hover states */
.chy-pr-btn-1,
.module-cta-btn,
.pricing-btn {
    will-change: transform, box-shadow;
}

/* Fix overflow issues */
.row {
    overflow: hidden;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .hero-trust-badge,
    .btn-wrap,
    .scroll-progress,
    .module-cta-btn,
    .pricing-btn,
    .large-btn {
        display: none !important;
    }
}

/* Focus states for accessibility */
.chy-pr-btn-1:focus,
.module-cta-btn:focus,
.pricing-btn:focus,
.accordion-button:focus {
    outline: 3px solid rgba(146, 85, 206, 0.4);
    outline-offset: 2px;
}

/* Better link hover states */
.view-all-packages-link,
.module-cta-btn,
.pricing-btn {
    cursor: pointer;
}


/* ============================================
   HERO SHAPE POSITIONING FIX
   ============================================ */

/* Move il-shape-1 to right side positioning */
.chy-hero-1-img .il-shape-1 {
    position: absolute;
    right: -60px;
    bottom: 30%;
    z-index: 2;
    opacity: 1;
    transition: all 1s ease;
}

/* First il-shape-1 positioning */
.chy-hero-1-img .il-shape-1:first-of-type {
    top: 20%;
    bottom: auto;
    right: -80px;
}

/* Second il-shape-1 positioning */
.chy-hero-1-img .il-shape-1:nth-of-type(2) {
    bottom: 20%;
    right: -40px;
}

/* Responsive positioning */
@media (max-width: 1199px) {
    .chy-hero-1-img .il-shape-1 {
        right: -40px;
    }
    
    .chy-hero-1-img .il-shape-1:first-of-type {
        right: -60px;
    }
    
    .chy-hero-1-img .il-shape-1:nth-of-type(2) {
        right: -20px;
    }
}

@media (max-width: 991px) {
    .chy-hero-1-img .il-shape-1 {
        right: -20px;
        opacity: 0.8;
    }
    
    .chy-hero-1-img .il-shape-1:first-of-type {
        right: -40px;
    }
    
    .chy-hero-1-img .il-shape-1:nth-of-type(2) {
        right: 0px;
    }
}

@media (max-width: 767px) {
    .chy-hero-1-img .il-shape-1 {
        right: 0px;
        opacity: 0.6;
        transform: scale(0.8);
    }
    
    .chy-hero-1-img .il-shape-1:first-of-type {
        right: -20px;
        top: 10%;
    }
    
    .chy-hero-1-img .il-shape-1:nth-of-type(2) {
        right: 20px;
        bottom: 10%;
    }
}

