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

:root {
    --primary-color: #6c63ff;
    --secondary-color: #4caf50;
    --accent-color: #ff6b6b;
    --dark-color: #2c2c54;
    --light-color: #f9f9f9;
    --text-color: #333;
    --text-light: #777;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 span,
h2 span,
h3 span {
    color: var(--primary-color);
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    margin: 10px;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
    background-color: #5a52d5;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-secondary:hover {
    background-color: #3d8b40;
    transform: translateY(-2px);
}

/* Special Section */
.special {
    padding: 10px 0;
    border-radius: 15px;
    background-color:#e57373;
    color: #ffffff;
    font-size: 1.5rem;
    /* letter-spacing: .05ch; */
    text-align: center;
}

.banner-bold {
    font-weight: 600;
    /* text-decoration: underline; */
}

.banner-link {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    height: 500px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.alien-character {
    position: absolute;
    height: 200px;
    bottom: -30px;
    right: -50px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features {
    background-color: white;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
}

/* App Showcase Section */
.app-showcase {
    background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.app-showcase .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.phone-mockups {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

.phone {
    height: 450px;
    position: relative;
    margin: 0 -30px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.phone:nth-child(1) {
    transform: rotate(-10deg) translateY(20px);
    z-index: 1;
}

.phone:nth-child(2) {
    z-index: 3;
    transform: scale(1.1);
}

.phone:nth-child(3) {
    transform: rotate(10deg) translateY(20px);
    z-index: 1;
}

.phone:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 4;
}

.phone:nth-child(2):hover {
    transform: translateY(-10px) scale(1.15);
}

.showcase-content {
    flex: 1;
    padding-left: 50px;
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.showcase-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature-list {
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 10px;
    color: var(--secondary-color);
    background: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* About Section */
.about {
    background-color: white;
}

.about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-content {
    flex: 1;
    padding-right: 50px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-height: 400px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    animation: float 4s ease-in-out infinite;
}

.about-image-top {
    display: none;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, #2c2c54 0%, #474787 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.download p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-buttons .btn {
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    font-size: 1.1rem;
}

.download-buttons .btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-links ul li {
    margin-right: 20px;
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {

    .hero .container,
    .app-showcase .container,
    .about .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content,
    .showcase-content,
    .about-content {
        max-width: 100%;
        margin-bottom: 0px;
        padding-right: 0;
        padding-left: 0 !important;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .phone-mockups {
        margin-top: 30px;
        justify-content: center;
        width: 100%;
    }

    .phone {
        height: 350px;
        margin: 0 -15px;
    }

    .feature-list li {
        justify-content: center;
    }

    .about-image img {
        display: none;
    }

    .about-image-top {
        display: block;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
        animation: float 4s ease-in-out infinite;
    }

    .about-image-top img {
        max-height: 120px;
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links ul {
        justify-content: center;
        margin: 20px 0;
    }

    .social-links {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav {
        margin-top: 20px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .phone-mockups {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .phone {
        height: 300px;
        margin: 0 -25px;
    }

    .phone:nth-child(1) {
        transform: rotate(-5deg) translateY(10px) !important;
        z-index: 1;
    }

    .phone:nth-child(2) {
        transform: scale(1.05) !important;
        z-index: 3;
    }

    .phone:nth-child(3) {
        transform: rotate(5deg) translateY(10px) !important;
        z-index: 1;
    }

    .phone:hover {
        transform: translateY(-5px) !important;
    }

    .phone:nth-child(1):hover {
        transform: translateY(-5px) rotate(-5deg) !important;
    }

    .phone:nth-child(2):hover {
        transform: translateY(-5px) scale(1.05) !important;
    }

    .phone:nth-child(3):hover {
        transform: translateY(-5px) rotate(5deg) !important;
    }

    .feature-list {
        text-align: left;
    }

    .feature-list li {
        justify-content: flex-start;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .download-buttons .btn {
        min-width: 160px;
        justify-content: center;
    }

    .btn i {
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        margin: 10px 0;
        justify-content: center;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
    }

    .download-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .download-buttons .btn {
        width: 80%;
        max-width: 250px;
        justify-content: center;
        text-align: center;
    }

    .phone {
        height: 220px;
        margin: 0 -30px;
    }

    .phone:nth-child(1) {
        transform: rotate(-10deg) translateY(10px) scale(0.9) !important;
    }

    .phone:nth-child(3) {
        transform: rotate(10deg) translateY(10px) scale(0.9) !important;
    }
}

@media (max-width: 380px) {
    .phone {
        height: 180px;
        margin: 0 -35px;
    }

    .phone:nth-child(1) {
        transform: rotate(-15deg) translateY(10px) scale(0.85) !important;
    }

    .phone:nth-child(3) {
        transform: rotate(15deg) translateY(10px) scale(0.85) !important;
    }

    .download h2 {
        font-size: 2rem;
    }

    .download p {
        font-size: 1rem;
    }

    .download-buttons .btn {
        width: 100%;
    }
}