* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.75);
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066cc;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0066cc;
}

/* Language Selector */
.language-selector-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#language-selector {
    padding: 0.3rem 1rem 0.3rem 1rem;
    border: 2px solid #141414;
    border-radius: 50px;
    background-color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%20viewBox%3D%220%200%20292.4%20292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%20197.9l-139.3-139.3c-4.1-4.1-10.8-4.1-14.9%200L5.4%20197.9c-4.1%204.1-4.1%2010.8%200%2014.9s10.8%204.1%2014.9%200l131.9-131.9l131.9%20131.9c4.1%204.1%2010.8%204.1%2014.9%200s4.2-10.8%200-14.9z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    padding-right: 2.5rem; /* Make space for the arrow */
}

#language-selector:hover {
    border-color: #0066cc;
}

#language-selector option span {
    display: flex;
    align-items: center;
}

.flag-icon {
    width: 20px; /* Adjust size as needed */
    height: auto;
    vertical-align: middle;
    margin-right: 5px;
}

/* Hero Section */
.hero {
    background-image: url("../images/landing-bg-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f4f8;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-end;

}

.animated-gradient-text {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(to right, #0077E8 0%, #34DA72 50%, #0077E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-animation 6s linear infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-text p {
    font-size: 1.1rem;
    color: #111524;
    margin-bottom: 2rem;
}

.app-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 12rem;
}

.app-badge img {
    height: 40px;
    width: auto;
}

.app-badge {
    display: inline-block;
    transition: transform 0.3s;
}

.app-badge:hover {
    transform: scale(1.1);
}

.hero-image {
    text-align: center;
}

.phone-mockup img {
    max-width: 150%;
    height: auto;
    display: block;
    transform: translateX(-16%);
}

/* Features Section */
.features {
    background-image: url("../images/landing-bg-2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 2rem;
    position: relative;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    color: white;
}

.feature-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.feature-mockup {
    width: auto;
    height: auto;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.feature-list li {
    margin-bottom: 1rem;
}

/* AI Assistant Section */

.ai-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    padding: 4rem 2rem 0;
}

.ai-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ai-logo {
    height: 28px;
    width: auto;
    margin-bottom: 1rem;
}

.ai-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ai-text p {
    color: #111524;
    margin-bottom: 1rem;
}

.free-link {
    color: #0066cc;
    text-decoration: none;
}

.free-link:hover {
    text-decoration: underline;
}

.chat-mockup {
    width: 350px;
    height: auto;
    margin: 0 auto;
}

.chat-mockup img {
    max-width: 100%;
    height: auto;
}

/* Tools Section */
.tools {
    padding: 80px 2rem;
    text-align: center;
    background: #000000;
}

.tools-content {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.tools h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.tool-icon img {
    height: 120px;
    width: auto;
    margin-bottom: 1rem;
}

.tool-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tool-card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Learning Section */
.learning {
    background: linear-gradient(to bottom, #3589EB, #0055B8);
    padding: 4rem 2rem 0;
    color: white;
    text-align: center;
}

.learning-content {
    max-width: 800px;
    margin: 0 auto;
}

.learning h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.learning p {
    margin-bottom: 2rem;
}

.sign-up-btn {
    background: #000;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
}

.sign-up-btn:hover {
    background: #111524;
    transform: scale(1.1);
}

.learning-mockup-image {
    max-width: 100%;
    max-height: 400px;
    display: block;
    margin: 2rem auto 0 auto;
}

/* Download Section */
.download {
    background: url('../Images/landing-bg-6.jpg') no-repeat center center/cover;
    padding: 4rem 2rem;
    text-align: center;
    color: black;
    min-height: auto;
}

.download h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.download-badges {
    justify-content: center;
    margin-top: 2rem;
}

.download .app-badge {
    padding: 0.75rem 1.5rem;
    background-color: #f0f0f0;
    border-radius: 8px;
    text-decoration: none;
    color: #111524;
    transition: background-color 0.3s;
}

.download .app-badge:hover {
    background-color: #e0e0e0;
    transform: scale(1.10);
}

.download-app-badge {
    margin-right: 1rem;
    display: inline-block;
}

.download-app-badge-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s;
}

.download-app-badge-image:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #111111;
    color: white;
    padding: 2rem;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #0066cc;
}

.separator {
    color: #666;
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
    
    .footer-info, .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content,
    .features-content,
    .ai-content {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1rem;
    }
}