/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 0;
    margin: 0;
}

/* Header */
header {
    background-color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.language-switcher a {
    text-decoration: none;
    color: #27ae60;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #27ae60;
}

/* Hero Section */
.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    display: flex;
    align-items: flex-end;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background-color: #27ae60;
    color: #fff;
    padding: 10px 10px;/* 0.8rem 1.5rem; */
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-left: 10px;
    margin-right: 10px;
}

.btn:hover {
    background-color: #2ecc71;
}

/* Section Styling */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #27ae60;
    text-align: center;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro p {
    font-size: 1.1rem;
    color: #555;
}

/* Services/Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.expertise-item h3 {
    margin-bottom: 1rem;
    color: #27ae60;
}

.expertise-item p {
    color: #555;
}


/* Image Handling */
.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-content img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #27ae60;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.9rem;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        position: static
    }

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

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

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo-container {
        flex-direction: column;
        align-items: flex-start;
    }

    section {
        padding: 2rem 1rem;
    }


    /* Home page only */
    #contact > p {
        margin: auto;
        text-align: center;
        max-width: 200px;
    }
}


#contact > p > a {
    margin: 10px;
}

/* For markdown-based files */
#markdown-body > p {
    margin: 15px;
}

/* For dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 4px;
}

.dropdown-menu li {
    padding: 12px 16px;
}

.dropdown-menu li a {
    color: #2c3e50;
    text-decoration: none;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f1f1f1;
    color: #27ae60;
}
