body {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
  }
  * {
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
  }
  .navbar {
    background: #003366 !important; /* Universitet rangiga mos */
    height: 10vh;
  }
  .navbar-brand img {
    height: 40px;
    margin-right: 10px;
    animation: fadeInDown 1s ease-in-out;
  }
  .hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../../2.png') no-repeat center center/cover;
    height: 90vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
    animation: slideInDown 1.5s ease;
  }
  .hero p {
    animation: fadeInUp 2s ease;
  }
  .btn-primary {
    background-color: #0055a5;
    border: none;
    transition: 0.3s;
  }
  .btn-primary:hover {
    background-color: #0077cc;
    transform: scale(1.05);
  }
  .course-card {
    transition: 0.3s;
    border-left: 5px solid #0055a5;
  }
  .course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }
  .news-card {
    transition: 0.3s;
  }
  .news-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }
  footer {
    background: #002244;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  .courses iframe {
      width: 100%;
      height: 450px;
  }

  /* Animations */
  @keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
  @keyframes fadeInUp { from {opacity: 0; transform: translateY(30px);} to {opacity: 1; transform: translateY(0);} }
  @keyframes slideInDown { from {opacity: 0; transform: translateY(-50px);} to {opacity: 1; transform: translateY(0);} }
  @keyframes fadeInDown { from {opacity: 0; transform: translateY(-20px);} to {opacity: 1; transform: translateY(0);} }




  .course-card {
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border-radius: 12px;
}
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(13, 110, 253, 0.3);
    background: linear-gradient(135deg, #e0f0ff, #ffffff);
}
.icon {
    font-size: 50px;
    color: #0d6efd;
    transition: transform 0.3s, color 0.3s;
}
.course-card:hover .icon {
    transform: scale(1.2);
    color: #0b5ed7;
}
.card-title {
    color: #0d6efd;
    font-size: 16px;
}
.card-text {
    color: #495057;
    font-size: 12px;
}
.card-img-top {
    object-fit: cover;
    object-position: top;
}
.card-body {
    height: 200px;
}
.btn-primary {
    background-color: #0d6efd;
    border: none;
    transition: background 0.3s;
}
.btn-primary:hover {
    background-color: #0b5ed7;
}
@media (max-width: 767px) {
    .icon {
        font-size: 40px;
    }
}
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(13, 110, 253, 0.3);
}
.icon {
    transition: transform 0.3s, color 0.3s;
}
.course-card:hover .icon {
    transform: scale(1.2);
    color: #0b5ed7;
}
@media (max-width: 767px) {
    .icon {
        font-size: 40px !important;
    }
}





.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }





  .step-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .step-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  }
  .step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: #0055a5;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .step-card h5 {
    color: #003366;
    font-weight: 600;
  }
  .step-card p {
    color: #555;
  }




.faq {
  padding: 100px 0px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: lightgray;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #4267B2;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}





#contact .animate__animated img {
    object-position: top;
    object-fit: cover;
}