:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --secondary: #0EA5E9;
    --dark: #0F172A;
    --light: #F8FAFC;
    --text-muted: #94A3B8;
}

html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, #1E1B4B 100%);
    color: var(--light);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Add this to create a full-viewport overlay gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, #1E1B4B 100%);
    z-index: 0;
}

/* You might also want to add this to ensure proper content spacing */
main {
    padding-top: 76px;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Modern Glass Nav */
.glass-nav {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    position: relative;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    padding: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.nav-link {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Active Link - with highest specificity */
.navbar-nav .nav-item .nav-link.active,
.nav-link.active,
.navbar .nav-link.active {
    color: #FFFFFF !important;
    font-weight: 600;
}

.contact-btn {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    margin-left: 1rem;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.contact-btn:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: visible;
}

.hero-shapes {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.shape-1 {
    background: var(--primary);
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
}

.shape-2 {
    background: var(--secondary);
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
}

.shape-3 {
    background: var(--primary-dark);
    width: 400px;
    height: 400px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* App Cards */
.app-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    min-height: 550px;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.app-icon-wrapper {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-icon {
    width: auto;
    height: 100%;
    border-radius: 12px;
    object-fit: contain;
    max-width: 100%;
}

.app-meta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Card content spacing */
.app-card h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.app-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 0.75rem 1.5rem;
}

.store-button {
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: translateY(-3px);
}

/* Phone Mockup */
.phone-wrapper {
    position: relative;
    perspective: 1500px;
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    transform: rotateY(-10deg) rotateX(2deg);
    transition: transform 0.5s ease;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

.phone-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    top: 0;
    left: 0;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: 6rem;
    }
    
    .phone-mockup {
        transform: none;
        margin-top: 3rem;
        max-width: 280px;
    }
} 

/* App Cards Container */
.apps-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 60px;
}

.apps-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.app-col {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
}

/* Navigation Buttons */
.app-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    font-size: 1.5rem;
}

.app-nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.app-nav-prev {
    left: 0;
}

.app-nav-next {
    right: 0;
}

@media (max-width: 991.98px) {
    .app-col {
        flex: 0 0 calc(100% - 1rem);
        min-width: calc(100% - 1rem);
    }
} 

.section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.section-header .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
} 

/* Fix section spacing */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

/* Ensure content is above background */
.container {
    position: relative;
    z-index: 2;
} 

/* Ensure the navbar collapse is above other elements */
.navbar-collapse {
    z-index: 1000;
    position: relative;
} 

/* Hero Section Layout */
.hero-content {
    padding-right: 2rem;
}

/* Phone Mockup Adjustments */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .phone-mockup {
        transform: none;
        margin-top: 3rem;
        max-width: 280px;
    }
} 

/* Update text-muted class for consistency */
.text-muted,
.app-card .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;  /* Same as the section header description */
}

/* Remove any other text-muted color definitions to ensure consistency */ 

/* Navbar Toggle Button */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.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(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    /* Center align nav items on mobile */
    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    /* Contact button on mobile */
    .contact-btn {
        margin: 0.5rem auto;
        display: inline-block;
    }
}

/* Mobile Hero Section */
@media (max-width: 991.98px) {
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }

    /* Center store buttons */
    .store-buttons {
        justify-content: center;
    }

    /* Adjust phone mockup */
    .phone-mockup {
        max-width: 80%;
        margin: 2rem auto;
    }
}

/* Mobile Apps Slider */
@media (max-width: 991.98px) {
    .apps-container {
        padding: 1rem;
        overflow: hidden;
        margin: 0;
        width: 100%;
    }

    .apps-wrapper {
        display: flex;
        gap: 1rem;
        transition: transform 0.5s ease;
        width: 100%;
    }

    .app-col {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0;
    }

    /* Make navigation buttons more visible on mobile */
    .app-nav-btn {
        width: 40px;
        height: 40px;
        background: var(--primary);
        border: none;
        opacity: 0.9;
        top: 50%;
        z-index: 1000;
    }

    .app-nav-prev {
        left: 10px;
    }

    .app-nav-next {
        right: 10px;
    }
}

/* Adjust section padding for mobile */
@media (max-width: 991.98px) {
    section {
        padding: 3rem 0;
    }

    .section-header {
        padding: 0 1rem;
    }
} 

@media (max-width: 991.98px) {
    .apps-container {
        padding: 1rem;
    }
    
    .app-col {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0 1rem;
    }
    
    .apps-wrapper {
        gap: 0;
    }
} 

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light);
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .feature-card {
        padding: 1.5rem;
    }
} 

/* Reviews Section */
.reviews-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 60px;
    margin: 0;
    width: 100%;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.review-col {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .reviews-container {
        padding: 1rem;
    }
    
    .review-col {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0;
    }
    
    .reviews-wrapper {
        gap: 0;
    }

    .review-nav-btn {
        width: 40px;
        height: 40px;
        z-index: 1000;
    }

    .review-nav-prev {
        left: 10px;
    }

    .review-nav-next {
        right: 10px;
    }

    /* Ensure cards don't overlap in mobile */
    .review-card {
        margin: 0 1rem;
    }
}

/* Review Card Styles */
.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--light);
}

.reviewer-details p {
    font-size: 0.9rem;
    margin: 0;
}

.review-rating {
    color: #FFD700;
    font-size: 1rem;
}

.review-quote {
    margin: 1.5rem 0;
}

.review-text {
    flex-grow: 1;
}

/* Review Navigation Buttons */
.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    font-size: 1.5rem;
}

.review-nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.review-nav-prev {
    left: 0;
}

.review-nav-next {
    right: 0;
}

/* Contact Form */
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
    font-weight: 500;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--light);
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: none;
    color: var(--light);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
    resize: none;
}

/* Submit Button */
.btn-lg {
    padding: 1rem 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .contact-card {
        padding: 1.5rem;
    }
} 

.brand-text {
    font-family: 'Anta', sans-serif;
    letter-spacing: 0.2em;
    font-size: 1.4rem;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .brand-text {
        font-size: 1.2rem;
        letter-spacing: 0.15em;
    }
} 

@media (max-width: 991.98px) {
    .reviews-container {
        padding: 1rem;
    }
    
    .review-col {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0;
    }
    
    .reviews-wrapper {
        gap: 0;
    }
} 