/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #fff;
    background: linear-gradient(125deg, #0c0c16 0%, #1a1a2e 100%);
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(90deg, #45caff 0%, #ff45ec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, #45caff 0%, #ff45ec 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 7px 25px rgba(69, 202, 255, 0.3);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff45ec 0%, #45caff 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn:hover:before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(69, 202, 255, 0.5);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #45caff 0%, #ff45ec 100%);
    bottom: -15px;
    left: 0;
    border-radius: 2px;
}

.card-glow {
    box-shadow: 0 0 30px rgba(69, 202, 255, 0.15);
}

/* Header and Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(12, 12, 22, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 8vh;
    padding: 0 5%;
}

.logo h1 {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -1px;
    position: relative;
}

.logo h1:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #45caff 0%, #ff45ec 100%);
    border-radius: 3px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #45caff 0%, #ff45ec 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: relative;
    padding: 0 2rem;
    overflow: hidden;
    z-index: 1;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(69, 202, 255, 0.15) 0%, transparent 70%);
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 69, 236, 0.15) 0%, transparent 70%);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.15;
}

.floating-element-1 {
    background: #45caff;
    top: 20%;
    left: 10%;
}

.floating-element-2 {
    background: #ff45ec;
    bottom: 30%;
    right: 10%;
}

.hero-apps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

.hero-app {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.hero-app:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(69, 202, 255, 0.3);
    border-color: rgba(69, 202, 255, 0.5);
}

/* Apps Section */
.apps-section {
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.apps-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(69, 202, 255, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.apps-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.apps-section h2:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #45caff 0%, #ff45ec 100%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.app-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(69, 202, 255, 0.3);
    border-color: rgba(69, 202, 255, 0.3);
}

.app-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #45caff);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.app-card:hover:before {
    opacity: 0.1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.app-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.8rem;
    background: linear-gradient(135deg, rgba(69, 202, 255, 0.1) 0%, rgba(255, 69, 236, 0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.app-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    top: 0;
    left: 0;
    border-radius: 20px 20px 0 0;
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.app-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.8rem;
    text-align: center;
}

/* App Store and Play Store Buttons */
.app-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.app-links a {
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
    justify-content: center;
}

.app-store {
    background: #000;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.play-store {
    background: linear-gradient(90deg, #45caff 0%, #ff45ec 100%);
    color: white;
}

.app-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 576px) {
    .app-links {
        flex-direction: column;
        align-items: center;
    }
    
    .app-links a {
        width: 100%;
        max-width: 200px;
    }
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 70%, rgba(255, 69, 236, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.contact-section h2:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #45caff 0%, #ff45ec 100%);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.8rem;
    gap: 1.2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #45caff;
    padding: 0.8rem;
    background: rgba(69, 202, 255, 0.1);
    border-radius: 50%;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(69, 202, 255, 0.3);
}

.info-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: linear-gradient(90deg, #45caff 0%, #ff45ec 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #fff;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.contact-form textarea {
    min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #45caff;
    box-shadow: 0 0 10px rgba(69, 202, 255, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form button {
    align-self: center;
    cursor: pointer;
    background: linear-gradient(90deg, #45caff 0%, #ff45ec 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Media Queries for Contact Section */
@media screen and (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    width: 100%;
}

footer p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #45caff;
    text-decoration: underline;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .nav-links {
        width: 60%;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background: rgba(12, 12, 22, 0.9);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 999;
    }
    
    .nav-links li {
        opacity: 0;
        margin: 1.5rem 0;
    }
    
    .burger {
        display: block;
        z-index: 1000;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .app-links {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero-apps {
        flex-wrap: wrap;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: #fff;
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: #fff;
}

/* Animations */
.fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

.fadeInLeft {
    animation: fadeInLeft 1s ease forwards;
}

.fadeInRight {
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 3D Card Effect */
.tilt-card {
    transform-style: preserve-3d;
}

.tilt-card-inner {
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.tilt-effect {
    transform: rotateX(var(--rotateX)) rotateY(var(--rotateY));
}

/* Add styles for floating particles/stars */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: visible;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.particle.blue {
    background-color: rgba(69, 202, 255, 0.6);
    box-shadow: 0 0 6px rgba(69, 202, 255, 0.3);
}

.particle.purple {
    background-color: rgba(255, 69, 236, 0.6);
    box-shadow: 0 0 6px rgba(255, 69, 236, 0.3);
}

.particle.large {
    width: 3px;
    height: 3px;
}

.particle.small {
    width: 1px;
    height: 1px;
}

/* Style the horizontal lines */
.horizontal-line {
    position: fixed;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(69, 202, 255, 0.2) 25%, 
        rgba(255, 69, 236, 0.2) 50%, 
        rgba(69, 202, 255, 0.2) 75%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Remove the specific horizontal lines and just keep one subtle one at the horizon */
.line-1 {
    top: 50%;
    opacity: 0.5;
}

.line-2, .line-3, .line-4 {
    display: none;
}

/* Ensure the main-container spans the full page */
.main-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    z-index: 1;
} 