/* Global Styles */
:root {
    --primary-gradient: linear-gradient(90deg, #8B0000 0%, #6B3BA6 50%, #0000FF 100%);
    --nav-gradient: linear-gradient(90deg, #8B0000 0%, #6B3BA6 35%, #0000FF 100%);
    --primary-color: #6B3BA6;
    --secondary-color: #8B0000;
    --accent-color: #0000FF;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --pink-accent: #FF385C;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: var(--nav-gradient) !important;
    padding: 0.5rem 0;
    height: 70px;
}

.navbar-brand img {
    max-height: 55px;
    transition: transform 0.3s ease;
}

.navbar-brand {
    padding: 0;
    margin-left: 15px;
}

.navbar-nav {
    margin-right: 15px;
}

.navbar-light .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s ease;
}

.navbar-light .navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.play-store-btn img {
    height: 60px;
    transition: transform 0.3s ease;
}

.play-store-btn:hover img {
    transform: translateY(-3px);
}

/* Categories Section */
.categories-section {
    padding: 60px 0;
}

.categories-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.category-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 250px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1.5rem;
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    margin: 20px 0;
}

.stats-item {
    text-align: center;
    padding: 20px 10px;
    margin-bottom: 20px;
}

.stats-number {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 1rem;
    color: var(--text-color);
}

/* Stats Chart Section */
.stats-chart {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139,0,0,0.03) 0%, rgba(107,59,166,0.03) 50%, rgba(0,0,255,0.03) 100%);
}

.chart-container {
    padding: 20px;
}

.chart-bar {
    margin-bottom: 25px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.bar-fill {
    width: var(--fill);
    background: var(--primary-gradient);
    padding: 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fillBar 1.5s ease-out forwards;
    transform-origin: left;
}

@keyframes fillBar {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.bar-label {
    font-weight: 500;
}

.bar-value {
    font-weight: 700;
}

.stats-content {
    padding: 20px;
}

.stats-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achievement-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item i {
    font-size: 2rem;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievement-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0;
    color: var(--primary-color);
}

.achievement-item p {
    color: #666;
    margin: 0;
}

/* Keep Original App Features Section Styles */
.app-features {
    background-color: #FFF5F5;
    padding: 80px 0;
}

.app-features h2 {
    color: #FF5B6F;
    font-weight: 700;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 25px 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    color: #FF5B6F;
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #FF5B6F;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: #ff4057;
}

.feature-card h5 {
    color: #333;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.phone-display {
    background: white;
    border-radius: 30px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.phone-display:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #E0E0E0;
    border-radius: 3px;
}

/* Animation Delays */
.animate__fadeInLeft,
.animate__fadeInRight,
.animate__fadeInUp {
    animation-duration: 1s;
}

[data-wow-delay] {
    animation-delay: var(--wow-delay);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139,0,0,0.05) 0%, rgba(107,59,166,0.05) 50%, rgba(0,0,255,0.05) 100%);
    overflow: hidden;
}

.testimonials h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    animation: slideTrack 30s linear infinite;
    width: calc(350px * 8); /* 4 cards * 2 for loop */
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes slideTrack {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 4)); /* 4 cards */
    }
}

.testimonial-card {
    flex: 0 0 350px;
    padding: 20px;
    margin: 0 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.user-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-image i {
    font-size: 80px;
    color: var(--primary-color);
}

.testimonial-content {
    text-align: center;
}

.comment {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 80px;
}

.user-info h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.location {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        padding: 10px 0;
    }

    .navbar-collapse {
        background: var(--nav-gradient);
        padding: 10px 0;
    }

    .navbar-nav {
        margin: 0;
        padding: 10px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 45px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .play-store-btn img {
        height: 50px;
    }

    .category-card {
        height: 200px;
    }

    .category-title {
        font-size: 1.2rem;
        padding: 15px;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .stats-label {
        font-size: 0.9rem;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }

    .testimonial-track {
        width: calc(300px * 8);
    }

    @keyframes slideTrack {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 4));
        }
    }

    .comment {
        font-size: 0.9rem;
        min-height: 100px;
    }

    .stats-chart {
        padding: 40px 0;
    }

    .stats-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .stats-description {
        text-align: center;
    }

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .achievement-item {
        padding: 15px;
    }

    .achievement-item h3 {
        font-size: 1.5rem;
    }

    .achievement-item i {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .play-store-btn img {
        height: 45px;
    }

    .category-card {
        height: 180px;
    }

    .stats-item {
        padding: 15px 5px;
    }

    .stats-number {
        font-size: 1.6rem;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .bar-fill {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 40px;
    margin-top: 50px;
}

.footer h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-store-btn img,
.play-store-btn img {
    height: 40px;
    transition: transform 0.3s ease;
}

.app-store-btn:hover img,
.play-store-btn:hover img {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h4 {
        margin-top: 20px;
    }
    
    .app-buttons {
        margin-bottom: 20px;
    }
} 