/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #02015a;
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    min-height: 100vh;
}

/* Header Styles */
.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #02015a;
    text-decoration: none;
}

.navbar-brand .logo i {
    margin-right: 8px;
    color: #8b5cf6;
}

.nav-link {
    color: #02015a !important;
    font-weight: 400;
    font-size: 14px;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b5cf6 !important;
}

.login-link {
    color: #0000ee !important;
    font-size: 12px;
}

.cta-button {
    background: #8b5cf6;
    border: none;
    border-radius: 8px;
    padding: 11px 24px 11px 24px;
    font-size: 12px;
    font-weight: 400;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 60px 0;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 12px;
    color: #02015a;
    margin-bottom: 24px;
}

.badge-new .badge {
    background: #8b5cf6;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    margin-right: 8px;
}

.hero-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 57.2px;
    color: #02015a;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: #02015a;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 32px;
}

.trust-indicators {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.customer-avatars {
    display: flex;
    margin-right: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 14px;
    color: #02015a;
    opacity: 0.7;
}

.cta-section .btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.cta-note {
    font-size: 12px;
    color: #02015a;
    opacity: 0.6;
    margin-top: 8px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.card-gradient {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
}

.floating-card i {
    color: #8b5cf6;
    margin-bottom: 16px;
}

.floating-card h4 {
    color: #02015a;
    margin-bottom: 12px;
    font-weight: 600;
}

.floating-card p {
    color: #02015a;
    opacity: 0.8;
}

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

/* Stats Section */
.stats-section {
    background: rgb(243, 247, 251);
    padding: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    color: white;
    font-size: 24px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #02015a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #02015a;
    opacity: 0.7;
}

/* Trusted Brands */
.trusted-brands {
    background: rgb(243, 247, 251);
    padding: 60px 0;
}

.trusted-text {
    font-size: 14px;
    color: #02015a;
    opacity: 0.6;
    margin-bottom: 40px;
}

.brands-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 18px;
    font-weight: 600;
    color: #02015a;
    opacity: 0.4;
    letter-spacing: 2px;
}

/* Features Section */
.features-section {
    background: white;
    padding: 100px 0;
}

.section-title {
    font-size: 52px;
    font-weight: 500;
    color: #02015a;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #02015a;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.feature-video {
    position: relative;
}

.video-placeholder {
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-content {
    text-align: center;
    color: white;
}

.video-content i {
    margin-bottom: 20px;
    opacity: 0.8;
}

.video-content h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-content {
    padding-left: 40px;
}

.feature-content h3 {
    font-size: 36px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 20px;
}

.feature-content p {
    font-size: 16px;
    color: #02015a;
    opacity: 0.7;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
    color: #02015a;
}

.feature-item i {
    color: #8b5cf6;
    margin-right: 12px;
    font-size: 18px;
}

/* Pricing Preview */
.pricing-preview {
    background: rgb(243, 247, 251);
    padding: 100px 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card.featured {
    border-color: #8b5cf6;
    transform: scale(1.05);
}

.pricing-card h4 {
    font-size: 24px;
    font-weight: 600;
    color: #02015a;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 10px;
}

.price span {
    font-size: 18px;
    color: #02015a;
    opacity: 0.6;
}

.pricing-card p {
    color: #02015a;
    opacity: 0.7;
    margin-bottom: 30px;
}

.pricing-card .btn {
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8b5cf6 0%, #00d4ff 100%);
    padding: 100px 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-section .btn {
    background: white;
    color: #8b5cf6;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
}

.footer-brand .logo i {
    margin-right: 8px;
    color: #8b5cf6;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8b5cf6;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    line-height: 1.4;
}

.contact-info a {
    color: #8b5cf6;
    text-decoration: none;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.footer-social span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #8b5cf6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .feature-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .brands-carousel {
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
}

/* Button Animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.btn-primary:hover {
    background: #7c3aed;
    border-color: #7c3aed;
}

.btn-outline-primary {
    color: #8b5cf6;
    border-color: #8b5cf6;
}

.btn-outline-primary:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

/* Loading and Interaction States */
.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}

/* Legal pages styling */
.legal-hero {
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    padding: 120px 0 80px;
    color: white;
}

.legal-hero .hero-title {
    color: white;
    margin-bottom: 20px;
}

.legal-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.legal-content {
    padding: 80px 0;
    background: rgb(243, 247, 251);
}

.legal-document {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.legal-document h2 {
    color: #02015a;
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.legal-document h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-document h3 {
    color: #02015a;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-document p {
    color: #495057;
    margin-bottom: 16px;
}

.legal-document ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-document li {
    color: #495057;
    margin-bottom: 8px;
}

.legal-document a {
    color: #8b5cf6;
    text-decoration: none;
}

.legal-document a:hover {
    color: #7c3aed;
    text-decoration: underline;
}

.contact-details {
    background: #f8f9fa;
    border-left: 4px solid #8b5cf6;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
    font-style: italic;
    color: #6c757d;
}

/* About page specific styling */
.about-hero {
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%);
    padding: 120px 0 80px;
    color: white;
}

.about-hero .hero-title {
    color: white;
    margin-bottom: 20px;
}

.about-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 400px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #8b5cf6, #00d4ff);
    border-radius: 15px;
    color: white;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.story-section {
    padding: 80px 0;
    background: rgb(243, 247, 251);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #8b5cf6;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #8b5cf6;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 18px;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 30px;
    flex: 1;
}

.timeline-content h4 {
    color: #02015a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.values-section {
    padding: 80px 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon i {
    color: white;
    font-size: 32px;
}

.value-card h4 {
    color: #02015a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: rgb(243, 247, 251);
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b5cf6, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.team-avatar i {
    color: white;
    font-size: 40px;
}

.team-card h4 {
    color: #02015a;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-role {
    color: #8b5cf6;
    font-weight: 500;
    margin-bottom: 16px;
}

.team-bio {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-contact {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.team-contact a {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-contact a:hover {
    background: #8b5cf6;
    color: white;
}

/* Responsive design for legal and about pages */
@media (max-width: 768px) {
    .legal-document {
        padding: 30px 20px;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        min-width: 60px;
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .timeline-content {
        margin: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .team-card {
        margin-bottom: 30px;
    }
}
