/* SECTIONS */
section {
    padding: 80px 10%;
}

section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

/* CARDS */
.services,
.projects {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 8px;
    min-width: 220px;
    text-align: center;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/* HEADER */
.lang-switch {
    text-align: right;
    padding: 10px 40px;
    font-size: 14px;
}

.lang-switch a {
    color: #555;
    text-decoration: none;
    margin-left: 10px;
}

.lang-switch a.active {
    font-weight: 700;
    color: #000;
}

.main-nav {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.main-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

header {
  background: #2c3e50;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

nav {
  background: #f4f4f4;
  padding: 10px;
  text-align: center;
}

nav a {
  margin: 0 10px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: bold;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
/* HERO BLOCK */
.hero {
    min-height: 80vh;
    background: #243746;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-content .btn {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #243746;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
}
/* HERO UPGRADE */
.hero {
    position: relative;
    background: linear-gradient(
        rgba(36,55,70,0.92),
        rgba(36,55,70,0.92)
    );
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(255,255,255,0.05),
        transparent 60%
    );
}
/* SECTIONS */
section {
    padding: 90px 10%;
}

section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #243746;
}

/* SERVICES & PROJECTS */
.services,
.projects {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #f7f7f7;
    padding: 32px;
    border-radius: 10px;
    min-width: 220px;
    text-align: center;
    font-weight: 500;
    color: #243746;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px
.btn {
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    background: #eaeaea;
    transform: translateY(-2px);
}
footer {
    text-align: center;
    padding: 30px;
    background: #f2f2f2;
    color: #666;
    font-size: 14px;
}
