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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.menu-icon {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
}

/* Sections */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Home Section */
#home {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

#home .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    animation: dropIn 1s ease-out forwards;
}

.hero-content p {
    opacity: 0;
    animation: slideFromLeft 1s ease-out forwards;
}

.app-screenshot {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.app-screenshot img {
    max-width: 400px;
    border-radius: 20px;
    animation: slideUp 1s ease-out;
    will-change: transform, opacity;
    -webkit-animation: slideUp 1s ease-out;
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Optional: Add this if you want the animation to play when scrolling into view */
.app-screenshot img {
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
}

/* Add responsive behavior */
@media (max-width: 768px) {
    #home .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .app-screenshot {
        justify-content: center;
    }
}

/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.animate {
    animation: featureCardSlideUp 1s ease-out forwards;
}

/* Modify animation delays for the animate class */
.feature-card.animate:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-card.animate:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card.animate:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes featureCardSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    object-fit: contain;
}

/* Optional: Add hover effect */
.feature-card:hover {
    transform: translateY(-5px);
}

/* About Section */
#about {
    background: #f8f9fa;
}

.company-info {
    text-align: center;
}

.company-logo {
    max-width: 500px;
    width: 90%;
    display: block;
    margin: 0 auto 30px;
}

/* Contact Section */
#contact .container {
    padding-left: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
}

/* Add animation classes */
.contact-item.animate {
    animation: contactItemSlideUp 0.8s ease-out forwards;
}

.contact-item.animate:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-item.animate:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes contactItemSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item h3 {
    min-width: 120px;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 0;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Make sure the section title is big like in the image */
#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

#features .container {
    text-align: center;
}

/* Add Font Awesome for social icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Keep all your original CSS exactly as is */

/* Then add ONLY mobile specific styles at the bottom of your CSS file */
@media screen and (max-width: 768px) {
    /* Mobile-only grid layout */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* Mobile-only card styles */
    .feature-card {
        padding: 1.5rem;
        margin: 0 15px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    /* Mobile-only navigation */
    .nav-content {
        padding: 15px;
    }
    
    .menu-icon {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: block;
    }
    
    .nav-links li {
        display: block;
        margin: 15px 0;
    }

    /* Mobile-only hero section */
    .hero-content {
        text-align: center;
        padding: 40px 20px;
    }
    
    .app-screenshot img {
        max-width: 100%;
        height: auto;
    }

    /* Mobile-only contact section */
    .contact-info {
        flex-direction: column;
    }
    
    .contact-item {
        margin: 20px 0;
    }

    /* About section mobile styles */
    .company-logo {
        max-width: 400px;
        width: 90%;
        margin: 0 auto 10px;
    }
    
    .company-description {
        font-size: 1rem;
        padding: 0 20px;
        text-align: center;
        line-height: 1.5;
    }

    /* Contact section mobile styles */
    #contact {
        padding: 40px 20px;
    }
    
    #contact h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .contact-info {
        padding: 0 15px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .contact-item h3 {
        display: none;
    }
    
    .contact-item p {
        font-size: 1rem;
    }

    /* Header text adjustments */
    h1 {
        font-size: 2rem !important; /* Reduced from 3rem */
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.4rem !important;
    }

    /* Screenshot size adjustment */
    .app-screenshot {
        max-width: 300px; /* Reduced size */
        margin: 0 auto;
    }
    
    .app-screenshot img {
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .contact-item h3 {
        display: none;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 25px;
        gap: 0;
    }

    #contact .contact-item h3,
    .contact-info .contact-item h3 {
        display: none !important; /* Added more specific selector and !important */
    }
    
    #contact .contact-item,
    .contact-info .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 25px;
        gap: 0;
    }

    #contact .container h2 {
        margin-bottom: 10px; /* Reduce space between "Contact Us" and email */
    }
    
    #contact .contact-info {
        margin-top: 0; /* Remove top margin if any */
    }
    
    #contact .contact-item p {
        margin: 0; /* Remove default paragraph margins */
    }
}

/* Add Font Awesome in your HTML head */
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">

/* Menu icon styles - hide on desktop */
.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .menu-icon {
        display: block; /* Show on mobile */
        position: absolute;
        right: 20px;
        top: 20px;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: block;
    }
    
    .nav-links li {
        display: block;
        margin: 15px 0;
        text-align: center;
    }
}