/* Common styles used across all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    color: #3b82f6;
    transform: translateY(-1px);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4b5563;
    padding: 8px;
    z-index: 1001;
}

/* Footer Styles */
footer {
    background: #0f172a;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

footer h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-bottom: 25px;
    color: #e2e8f0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.contact-info p {
    color: #94a3b8;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #e2e8f0;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="300" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h3 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    text-align: center;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #f8fafc;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-text h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 25px;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.2;
}

.section-text p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-image {
    text-align: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section-image img:hover {
    transform: scale(1.02);
}

/* Mobile Styles */
@media (max-width: 968px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-content.reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 35px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 20px;
        text-align: center;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h3 {
        font-size: 1.05rem;
    }

    .hero-image img {
        max-height: 280px;
        margin-top: 30px;
    }

    .section {
        padding: 50px 0;
    }

    .section-content {
        gap: 35px;
    }

    .section-text h2 {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .section-text p {
        font-size: 1rem;
    }

    footer {
        padding: 40px 0 25px;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 32px;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content h3 {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-text h2 {
        font-size: 1.5rem;
    }
}
