
  :root {
      --primary: #1abc9c;
      --secondary: #2c3e50;
      --light: #f9f9f9;
      --text: #333;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--light);
      color: var(--text);
      line-height: 1.6;
    }

    header {
      margin-top: 5em;
      background-color: white;
      padding: 2rem 1rem;
      text-align: center;
      border-bottom: 1px solid #eee;
    }

    header h1 {
      font-size: 2.5rem;
      color: var(--primary);
      animation: fadeIn 1s ease-in;
    }

    .hero {
      background: linear-gradient(to right, #00bcd4, #0079a4);
      padding: 4rem 2rem;
      text-align: center;
      animation: slideUp 1.2s ease-out;
    }

    .hero h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--secondary);
    }

    .hero p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: #555;
    }

    .section {
      padding: 3rem 2rem;
      max-width: 1000px;
      margin: auto;
    }

    .section h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .section p {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }

    .values {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
    }

    .value-card {
      background-color: white;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-5px);
    }

    .team {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .team-member {
      text-align: center;
      padding: 1rem;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .team-member img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
    }

    .team-member h4 {
      margin: 0.5rem 0 0.2rem;
      color: var(--secondary);
    }

    .cta {
      text-align: center;
      padding: 3rem 1rem;
      background-color: var(--primary);
      color: white;
    }

    .cta h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .cta a {
      background-color: white;
      color: var(--primary);
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .cta a:hover {
      background-color: #e0f7f4;
    }

  

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

.navbar {
  position: fixed;
  top: 0;
 
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 999;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #e63946;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5em;
}

.nav-links li {
  position: relative;
  
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 10px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #e63946;
}




.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #222;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
  color: #e63946;
}

/* ОПРАВЕНО DROPDOWN МЕНЮ */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  position: absolute;
  top: 100%; /* веднага под бутона */
  left: 0;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  z-index: 1000;
  min-width: 160px;
  display: none;
}

/* За да не изчезва, когато курсорът е върху него */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

/* Responsive menu toggle */
.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links li {
    text-align: center;
  }
  
  
  .nav-active {
    display: flex;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: none;
  }
  .menu-toggle {
  display: block;
  font-size: 1.8em;
  cursor: pointer;
}
}

footer {
  background-color: #111;
  color: #ccc;
  padding: 4em 2em 2em;
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3em;
}

.footer-col h4 {
  color: #ff6347;
  margin-bottom: 1em;
  font-size: 1.2em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.8em;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff6347;
}

.newsletter {
  display: flex;
  margin-top: 1em;
}

.newsletter input {
  padding: 0.5em;
  flex: 1;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter button {
  padding: 0.5em 1em;
  background: #ff6347;
  border: none;
  color: white;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.socials {
  margin-top: 1.5em;
}

.socials a img {
  width: 24px;
  margin-right: 1em;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.socials a img:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 2em;
  text-align: center;
  font-size: 0.8em;
  border-top: 1px solid #333;
  padding-top: 1em;
  color: #777;
}






