/* Enhanced SAAS Website CSS with Modern Animations */

/* Enhanced Hero Section */
.hero-area {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.badge-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

/* Enhanced Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 5px;
    display: block;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-indicators span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

/* Enhanced Buttons */
.btn-pulse {
    background-color: black;
    border: none;
    border-radius: 50px;
    color: white;
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    color: white;
}

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

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 30px;
    animation: float 6s ease-in-out infinite;
}

.float-1 { top: 10%; left: 10%; animation-delay: 0s; }
.float-2 { top: 20%; right: 15%; animation-delay: 1s; }
.float-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.float-4 { bottom: 10%; right: 10%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

/* Background Animation */
.bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: bgFloat 8s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes bgFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

/* Enhanced Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.2;
}

.feature-hover-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-hover-effect {
    transform: translateY(0);
}

/* Feature Categories */
.feature-categories {
    margin-bottom: 50px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 25px;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-btn.active,
.tab-btn:hover {
    background: black;
    color: white;
    transform: translateY(-2px);
}

/* Additional Features */
.additional-features {
    margin-top: 60px;
}

.feature-highlight {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-highlight h4 {
    color: black;
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-highlight p {
    color:var(--thm-text);
    font-size: 14px;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 40px;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.benefit-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Image */
.benefits-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-benefit-image {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.image-wrapper:hover .main-benefit-image {
    transform: scale(1.05);
}

.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: statFloat 4s ease-in-out infinite;
}

.stat-1 { top: 20%; right: -10%; animation-delay: 0s; }
.stat-2 { bottom: 30%; left: -15%; animation-delay: 1s; }
.stat-3 { top: 60%; right: -5%; animation-delay: 2s; }

.stat-title {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

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

/* Modules Section */
.modules-section {
    background: #f8f9fa;
}

.modules-grid {
    margin-top: 50px;
}

.module-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.module-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.module-icon {
    font-size: 30px;
    margin-right: 15px;
}

.module-header h4 {
    color: #333;
    margin: 0;
    font-size: 20px;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
}

.module-features li:last-child {
    border-bottom: none;
}

/* Advanced Features */
.advanced-features {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-icon {
    font-size: 50px;
    margin-right: 25px;
    flex-shrink: 0;
}

.tech-details h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 24px;
}

.tech-details p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Tech Dashboard */
.tech-dashboard {
    background: #1e1e1e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    background: #2d2d2d;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.header-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.dashboard-content {
    padding: 30px;
}

.metric-card {
    background: #2d2d2d;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 5px;
}

.metric-label {
    color: #999;
    font-size: 12px;
    margin-bottom: 10px;
}

.metric-trend {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.metric-trend.up {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.chart-area {
    margin-top: 20px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 100px;
}

.bar {
    background: linear-gradient(to top, #667eea, #764ba2);
    width: 20px;
    border-radius: 4px 4px 0 0;
    animation: barGrow 1s ease-out;
}

@keyframes barGrow {
    from { height: 0; }
    to { height: var(--height, 50%); }
}

/* Success Stories */
.success-stories {
    background: #f8f9fa;
}

.success-card {
    height: 370px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-stats {
    margin-bottom: 25px;
}

.stat-big {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color:black;
    font-size: 20px;
    font-weight: 600;
}

.success-content h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
}

.success-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 14px;
}

.school-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    color: #999;
}

/* Enhanced Pricing */
.pp-plans {
    position: relative;
    overflow: hidden;
}

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

.pp-plans:hover::before {
    left: 100%;
}

.pxp-is-featured {
    /* transform: scale(1.05); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .tech-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .floating-stats {
        display: none;
    }
    
    .school-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* Scroll Animations */
.wow {
    visibility: hidden;
}

/* Loading States */
.loading-state {
    opacity: 0.6;
    pointer-events: none;
}

/* Enhanced Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    /* border-radius: 2px solid white; */
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    border: 1px solid #e1e5e9;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Enhanced Contact Items */
.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.feature-card,
.module-card,
.success-card {
    will-change: transform;
    margin-top: 30px;
}

/* Print Styles */
@media print {
    .floating-elements,
    .bg-animation,
    .floating-stats {
        display: none !important;
    }
}