@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    position: relative;
    z-index: 2;
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0F2027;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-animation {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #09afa5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    color: #09afa5;
    font-size: 3em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-preview {
    text-align: center;
    margin: 60px 0;
    position: relative;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.phone-frame {
    position: relative;
    padding: 4px 4px 8px 4px;
    background: linear-gradient(145deg, #3a3a3a, #4a4a4a);
    border-radius: 48px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.4),
        inset 0 0 3px rgba(255,255,255,0.2),
        inset 0 0 0 1px rgba(255,255,255,0.1);
    aspect-ratio: 1290/2796;
    background-image: 
        linear-gradient(145deg, rgba(255,255,255,0.05) 0%, transparent 50%),
        linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100% 100%, 4px 4px, 4px 4px;
}

/* Power button */
.phone-frame::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 100px;
    width: 3px;
    height: 30px;
    background: #2a2a2a;
    border-radius: 2px;
}

/* Volume buttons */
.phone-frame::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 80px;
    width: 3px;
    height: 60px;
    background: #2a2a2a;
    border-radius: 2px;
}

.slider-container {
    border-radius: 44px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    height: 98%;
    margin: 1.5% 0.5%;
    background: #000;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.my-slider {
    height: 100%;
    flex: 1 1 auto;
    display: block;
}

.tns-outer {
    height: 100%;
    width: 100%;
}

.tns-inner {
    height: 100%;
}

.tns-slider {
    height: 100% !important;
    position: relative;
    background: #000;
}

.tns-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.phone-mockup {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    border-radius: 40px;
    margin: 0;
    padding: 0;
}

/* Nav dots styling */
.tns-nav {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: transparent;
    width: auto;
    height: auto;
    display: flex;
    gap: 8px;
}

.tns-nav button {
    width: 8px;
    height: 8px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tns-nav button.tns-nav-active {
    background: #09afa5;
    transform: scale(1.2);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.feature {
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5em;
    color: #09afa5;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.feature:hover i {
    transform: scale(1.2);
}

.feature h3 {
    color: #fff;
    margin-bottom: 10px;
}

.feature p {
    color: #e0e0e0;
    font-size: 0.9em;
}

.links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.link-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.link-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #09afa5;
}

.link-card a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
}

.link-card i {
    color: #09afa5;
    font-size: 1.5em;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1em;
    }

    .phone-mockup {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .app-preview {
        max-width: 300px;
        margin: 40px auto;
    }
}

@media (max-width: 400px) {
    .app-preview {
        max-width: 280px;
    }
}

/* Contact Page Styles */
.contact-section { margin-top: 90px; padding: 20px; }
.contact-section h1 { color: #09afa5; font-size: 2.5em; text-align: center; margin-bottom: 1rem; }
.contact-section p { color: #e0e0e0; text-align: center; margin-bottom: 2rem; }
.contact-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.contact-form .form-group { display: flex; flex-direction: column; }
.contact-form label { margin-bottom: 0.5rem; font-weight: 600; }
.contact-form input, .contact-form textarea { padding: 0.75rem 1rem; border-radius: 8px; border: none; background: rgba(255,255,255,0.1); color: #fff; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; box-shadow: 0 0 0 2px #09afa5; }
.contact-form .product-btn { align-self: center; padding: 12px 24px; }

/* Product Button Styles */
.product-btn { background: linear-gradient(135deg, #09afa5 0%, #076b65 100%); color: white; border: none; padding: 15px 30px; border-radius: 25px; font-size: 1em; font-weight: 600; cursor: pointer; transition: all 0.3s ease; position: relative; z-index: 1; min-width: 140px; }
.product-btn:hover { background: linear-gradient(135deg, #076b65 0%, #054d47 100%); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(9, 175, 165, 0.3); } 