* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 50vh;
    padding-top: 50px; /* Adjust for fixed header height */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
}




.language-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
}

.language-switch a {
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-switch a:hover {
    background: rgba(52, 152, 219, 0.1);
}

.language-switch a.active {
    background: #3498db;
    color: white;
}

.language-switch span {
    color: #666;
    font-weight: 500;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon {
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-icon.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .nav-links {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        transition: left 0.3s ease;
        z-index: 998;
        padding: 15px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        font-size: 1rem;
        padding: 8px 0;
        display: block;
        border-radius: 4px;
    }

    .nav-links li a:hover {
        background: #f8f9fa;
    }

    .language-switch {
        position: fixed;
        bottom: 15px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 999;
        font-size: 0.85em;
    }

    .nav-links.active + .language-switch {
        opacity: 1;
    }
}

body.menu-open {
    overflow: hidden;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 250px 125px;
    margin-bottom: 40px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: 300;
}

.services-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
}

.services-text {
    text-align: center;
    margin-bottom: 30px;
}

.services-text h2 {
    color: #2c3e50;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-icon {
    margin-bottom: 15px;
}

.service-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1em;
    margin-bottom: 15px;
}

.service-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #666;
    font-size: 0.9em;
}

.service-details li::before {
    content: "•";
    color: #3498db;
    position: absolute;
    left: 0;
    top: 0;
}

.about {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.about-text {
    flex: 1;
}

.about-logo {
    flex: 1;
    text-align: right;
}

.about-logo img {
    width: 500px;
}

.about h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2em;
    font-weight: 700;
}

.about p {
    color: #666;
    line-height: 1.6;
    font-size: 1em;
}

.contact {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-text {
    text-align: center;
    margin-bottom: 30px;
}

.contact-text h2 {
    color: #2c3e50;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 1.2em;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 600px;
}

.contact-form-title {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2.5em; /* Larger font size for prominence */
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 1em;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 200px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    color: #666;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
}

.form-checkbox input[type="checkbox"]:checked {
    background: #3498db;
    border-color: #3498db;
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #2c3e50;
}

.social-link i {
    font-size: 1.1em;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    margin-top: 60px;
    border-radius: 15px 15px 0 0;
}

@media (max-width: 768px) {
    body {
        padding-top: 80px; /* Adjust for smaller header on mobile */
    }

    .hero {
        padding: 150px 75px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1em;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .about-logo img {
        width: 200px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form-title {
        font-size: 2em; /* Slightly smaller on mobile */
    }

    .form-group {
        margin-bottom: 15px;
    }

    .submit-btn {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .services-text h2,
    .about h2,
    .contact-text h2 {
        font-size: 1.5em;
    }

    .contact-form-title {
        font-size: 1.8em; /* Adjusted for smaller screens */
    }

    .service-card,
    .contact-item {
        padding: 15px;
    }

    .service-image {
        width: 150px;
        height: 150px;
    }
}