/* Language Toggle and Header Styles */

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    text-decoration: none;
    color: #333333;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    color: #333333;
}

.logo-subtitle {
    font-weight: 400;
    font-size: 0.9rem;
    color: #666666;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.main-nav a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #68b0e5;
}

/* Language Toggle Button Styling */
.language-toggle-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
}

.language-toggle-pill {
    display: flex;
    background-color: white;
    border-radius: 24px;
    padding: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
}

.language-btn {
    padding: 8px 16px;
    border: none;
    background: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
    min-width: 45px;
    text-align: center;
}

.language-btn.active {
    background-color: #3366cc;
    color: white;
}

.language-btn:not(.active):hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .language-toggle-container {
        top: 15px;
        right: 15px;
    }
    
    .language-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    padding: 0.75rem 2rem;
}

.mobile-menu a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

/* Updated Services Cards Styling */
.services-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 420px;
    min-width: 320px;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    color: #68b0e5;
}

.service-brief {
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-highlights {
    list-style-type: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.service-highlights li {
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-highlights li i {
    color: #68b0e5;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

/* Updated Button Styling */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #68b0e5;
    color: white;
}

.btn-primary:hover {
    background-color: #4a96c9;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #68b0e5;
    border: 1px solid #68b0e5;
}

.btn-secondary:hover {
    background-color: rgba(104, 176, 229, 0.1);
    color: #4a96c9;
}

/* Media Queries */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }
    
    .services-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
} 