/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main, .content-wrapper {
    flex: 1;
}

/* Navigation Bar */
.navbar {
    background: white;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #2A2AEA;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 0.95em;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: #2A2AEA;
}

.dropdown-icon {
    font-size: 0.7em;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-right .nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.language-selector {
    position: relative;
}

.lang-button {
    background: none;
    border: none;
    font-size: 0.95em;
    color: #333;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-button:hover {
    color: #2A2AEA;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 150px;
    z-index: 1001;
    margin-top: 5px;
}

.lang-dropdown.active {
    display: block;
}

.lang-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 0.9em;
}

.lang-option:hover {
    background-color: #f0f4f8;
    color: #2A2AEA;
}

.lang-option.active {
    background-color: #2A2AEA;
    color: white;
}

.navbar-icon {
    cursor: pointer;
    font-size: 1.2em;
    color: #333;
    transition: color 0.3s;
}

.navbar-icon:hover {
    color: #2A2AEA;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2A2AEA 0%, #2849D2 50%, #1C38A6 100%);
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.hero .tagline {
    font-size: 1.8em;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    background: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9em;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.content-section h1 {
    font-size: 3em;
    color: #2A2AEA;
    margin-bottom: 30px;
    text-align: center;
}

.content-section h2 {
    font-size: 2em;
    color: #2A2AEA;
    margin-bottom: 30px;
    text-align: center;
}

.content-section h3 {
    font-size: 1.5em;
    color: #2A2AEA;
    margin: 30px 0 15px 0;
}

.content-section p {
    font-size: 1.3em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 12px 40px;
    color: #666;
    font-size: 0.9em;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
    color: #2A2AEA;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 3px solid #2A2AEA;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #2A2AEA;
    font-size: 1.2em;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95em;
}

/* Products/Items Grid */
.products-grid,
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-item,
.item-card {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #2A2AEA;
    transition: all 0.3s;
    cursor: pointer;
}

.product-item:hover,
.item-card:hover {
    background: #f0f4f8;
    transform: translateX(5px);
}

.product-item h4,
.item-card h4 {
    color: #2A2AEA;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.product-item p,
.item-card p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2A2AEA 0%, #2849D2 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    border-radius: 4px;
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1em;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2A2AEA;
    padding: 12px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1em;
    margin-top: 20px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #f0f4f8;
    transform: scale(1.02);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #999;
    padding: 50px 40px;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid #333;
}

footer p {
    margin: 10px 0;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
    font-size: 0.9em;
}

.footer-links a:hover {
    color: #2A2AEA;
}

/* Two Column Layout */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.col-item h3 {
    color: #2A2AEA;
    margin: 20px 0 10px 0;
    font-size: 1.2em;
}

.col-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar-left {
        gap: 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .content-section {
        padding: 40px 20px;
    }
    
    .two-col-grid {
        grid-template-columns: 1fr;
    }

    
}

.about-social {
    margin-top: 16px;
}

.about-social a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.linkedin-icon {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #0a66c2;
    border: 1px solid #0a66c2;
    border-radius: 4px;
    padding: 6px 8px;
    line-height: 1;
    transition: all 0.2s ease;
}

.about-social a:hover .linkedin-icon {
    background-color: #0a66c2;
    color: #ffffff;
}

