/* Global Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
    gap: 10px;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #00796B;
    margin-right: 20px;
  }
}
@keyframes slideDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
  /* Font */
  --font-inter: 'Inter', sans-serif;
  --font-default: Arial, sans-serif;
  }
  
  body {
    font-family: var(--font-default);
    background-color: #E0F7FA; /* Light blue background */
    color: #212121;
    padding-top: 60px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }

  /* Hero Section */
  .hero-section {
    font-family: var(--font-inter);
    padding-top: 80px;
    position: relative;
    height: 100vh;
    background-color: #0097A7; /* Blue background */
    color: white;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4; /* možeš podesiti vidljivost pozadine */
  }
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
  }
  .hero-section h1 {
    font-size: 48px;
    font-weight: bold;
  }
 
  
  .hero-section p {
    font-size: 18px;
    margin-top: 20px;
  }
  
  
  .cta-btn {
    font-family: var(--font-inter);
    display: inline-block;
    padding: 15px 30px;
    background-color: #004D40;
    color: white;
    font-weight: bold;
    margin-top: 30px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .cta-btn:hover {
    background-color: #00A4D9;
  }
  
  
  .container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
  }
  
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  
  .card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }
  
  .card img {
    height: 60px;
    margin-bottom: 20px;
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 0.95rem;
    color: #555;
  }
  

   /* why US section */
  .whyus-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  color: #333
}

.whyus-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.whyus-section .section-subtitle {
  font-size: 18px;
  color: #7f8c8d;
  margin-bottom: 50px;
}

.whyus-logo {
  display: block;
  margin: 0 auto 40px;
  max-width: 220px;
  height: auto;
  transition: transform 0.3s ease;
}
.whyus-logo:hover {
  transform: scale(1.1);
}
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}

.whyus-card {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}
.whyus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.whyus-card h4 {
  font-size: 20px;
  color: #00A4D9; /* zameni sa primarnom bojom sajta */
  margin-bottom: 15px;

}

.whyus-card p {
  
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

  
  
