body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f9fafe;
  color: #333;
}

body, h1, h2, h3, h4, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
header {
  background: white;
  color: rgb(255, 115, 0);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

header img {
  height: 50px;
}

/* Navigation */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: rgb(255, 115, 0);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #004e80;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  color: rgb(255, 115, 0);
  padding-right: 20px;
  cursor: pointer;
  z-index: 1001;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.language-switcher button {
  background-color: white;
  color: rgb(255, 115, 0);
  border: 1px solid transparent;
  margin: 0 5px;
  padding: 6px 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.language-switcher button:hover {
  background-color: #004e80;
  color: white;
}

/* Hero section */
.hero {
  background: url("../Image/ArmavirDent3.jpg") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  height: 250px;
  border-radius: 15px;
  position: relative;
  background: linear-gradient(0deg,rgba(34, 193, 195, 0.6) 0%, rgba(253, 187, 45, 0.6) 100%);
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.3;
}

.btn-primary {
  color: black;
  padding: 15px 35px;
  font-size: 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: rgb(255, 115, 0);
  color: white;
}

main {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 60px;
}

h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  color: black;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  max-width: 100px;
  margin-bottom: 15px;
}

.service-card h4 {
  margin: 10px 0;
  font-size: 20px;
  color: #22C1C3;
}

.service-card p {
  font-size: 16px;
  color: black;
  line-height: 1.4;
}

footer {
  background: orange;
  color: white;
  text-align: center;
  padding: 20px 15px;
  font-size: 14px;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
  header {
    padding: 15px;
    display: flex
  }

  nav,
  .language-switcher {
    display: none;
    width: 100%;
  }

  .hamburger {
    display: block;
  }

  nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #f8f8f8;
    padding: 15px 30px;
    gap: 15px;
    border-top: 1px solid #ddd;
    z-index: 100;
  }

  .language-switcher.active {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
  }

  .hero{
    background-position: center;
  }

  .hero-content {
    width: 90%;
    height: auto;
    h2{
      font-size: 20px;
    }
  }
}
