:root {
    --primary-blue: #0a3d62;
    --accent-blue: #1e90ff;
    --dark-blue: #082032;
    --light-blue: #4bcffa;
    --pure-white: #ffffff;
    --off-white: #f5f6fa;
    --light-gray: #dfe4ea;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #000 100%);
    color: var(--pure-white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(30, 144, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(75, 207, 250, 0.1) 0%, transparent 20%);
    z-index: -1;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(8, 32, 50, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(75, 207, 250, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 45px;
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgba(75, 207, 250, 0.7));
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pure-white);
    background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1.2rem;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-gray);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--pure-white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-blue), var(--accent-blue));
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 61, 98, 0.95);
    backdrop-filter: blur(10px);
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--light-gray);
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: rgba(30, 144, 255, 0.15);
    color: var(--pure-white);
    padding-left: 2rem;
}

/* Page Container */
.page-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 5%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    z-index: 10;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--light-blue), var(--pure-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--light-gray);
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--light-blue), var(--accent-blue));
    color: var(--pure-white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    transition: var(--transition);
    z-index: -1;
}

.cta-button:hover::before {
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.6);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
}

.float-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    top: 20%;
    right: 10%;
    animation: float 8s infinite ease-in-out;
}

.float-2 {
    width: 300px;
    height: 300px;
    background: var(--light-blue);
    bottom: 10%;
    left: 5%;
    animation: float 10s infinite ease-in-out;
    animation-delay: 1s;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--light-blue), var(--pure-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
    margin: 1rem auto;
    border-radius: 10px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(10, 61, 98, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(75, 207, 250, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
}

.service-card.animate {
    animation: fadeUp 0.8s forwards;
}

.service-card:nth-child(1).animate { animation-delay: 0.2s; }
.service-card:nth-child(2).animate { animation-delay: 0.4s; }
.service-card:nth-child(3).animate { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(75, 207, 250, 0.4);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--light-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.service-card p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* Apps Section */
.apps-section {
    background: rgba(8, 32, 50, 0.4);
}

.app-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.app-image {
    flex: 1;
    position: relative;
    transform: translateX(-50px);
    opacity: 0;
}

.app-image.animate {
    animation: fadeInLeft 1s forwards;
}

.app-phone {
    width: 100%;
    max-width: 300px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.app-content {
    flex: 1;
    transform: translateX(50px);
    opacity: 0;
}

.app-content.animate {
    animation: fadeInRight 1s forwards;
}

.app-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--light-blue), var(--pure-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-content p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.app-features {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features li {
    padding: 0.8rem 0;
    color: var(--light-gray);
    display: flex;
    align-items: center;
}

.app-features li i {
    color: var(--light-blue);
    margin-right: 10px;
    font-size: 1.2rem;
}

.download-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.download-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.download-badge img {
    height: 50px;
}

/* About Section */
.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
    background: rgba(10, 61, 98, 0.3);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(75, 207, 250, 0.2);
}

.about-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-blue);
    display: flex;
    align-items: center;
}

.about-section h3 i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.about-section p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Coming Soon Page */
.coming-soon {
    text-align: center;
    padding: 6rem 0;
}

.coming-soon h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--light-blue), var(--pure-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coming-soon p {
    font-size: 1.5rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Contact Page */
.contact-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-blue);
}

.contact-info p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
    margin-top: 2rem;
}

.contact-details li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--light-blue);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-blue);
    transition: var(--transition);
    font-size: 1.8rem;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--light-blue);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    background: rgba(10, 61, 98, 0.3);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(75, 207, 250, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(75, 207, 250, 0.2);
    border-radius: 8px;
    color: var(--pure-white);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: rgba(5, 20, 34, 0.95);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(75, 207, 250, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--light-blue);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-blue);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--light-blue);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* 404 Page */
.not-found {
    text-align: center;
    padding: 8rem 0;
}

.not-found h1 {
    font-size: 6rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, var(--light-blue), var(--pure-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.not-found p {
    font-size: 1.5rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .app-container, .contact-container {
        flex-direction: column;
        text-align: center;
    }
    
    .app-features li, .contact-details li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

 .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.6rem;
            color: var(--light-blue);
            z-index: 1001;
            background: rgba(10, 61, 98, 0.3);
            border-radius: 8px;
            width: 45px;
            height: 45px;
            justify-content: center;
            align-items: center;
            position: absolute;
            right: 20px;
            top: 20px;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-links {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 80px;
                right: -100%;
                height: calc(100vh - 80px);
                width: 70%;
                background: rgba(8, 32, 50, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 30px;
                transition: right 0.4s ease;
                z-index: 1000;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
            }
            
            .nav-links.active {
                right: 0;
                display:flex;
            }
            
            .nav-links li {
                margin: 1.2rem 0;
                width: 100%;
            }
            
            .dropdown {
                position: static;
            }
            
            .dropdown-content {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
            }
            
            .dropdown.active .dropdown-content {
                max-height: 300px;
            }
            
            .dropdown > a {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .dropdown > a .dropdown-icon {
                transition: transform 0.3s ease;
            }
            
            .dropdown.active > a .dropdown-icon {
                transform: rotate(180deg);
            }
        }