/* -------------------------------------
  General Styles
------------------------------------- */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Links */
a {
  color: #00a6d0;
  text-decoration: none;
}

a:hover {
  color: #b87900;
  text-decoration: none;
}

/* -------------------------------------
  Navigation Menu
------------------------------------- */
.navmenu ul li a.active,
.navmenu ul li a:hover {
  color: #f7c35f;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navmenu ul li ul {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}

.navmenu ul li ul li a {
  padding: 10px 20px;
  display: block;
  color: #333;
}

.navmenu ul li ul li a:hover {
  background: #f7f7f7;
  color: #008bd0;
}

/* Mobile nav toggle */
.mobile-nav-toggle {
  font-size: 1.5rem;
}

/* -------------------------------------
  Call to Action Buttons
------------------------------------- */
.btn-getstarted,
.btn-get-started {
  background-color: #d08c00;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  text-transform: uppercase;
}

.btn-getstarted:hover,
.btn-get-started:hover {
  background-color: #b87900;
  color: #fff;
}

/* Video button */
.btn-watch-video i {
  font-size: 1.4rem;
  margin-right: 8px;
}

/* -------------------------------------
  Hero Image
------------------------------------- */
.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------
  FAQ Section
------------------------------------- */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item .faq-content {
  display: none;
  padding-top: 10px;
  font-size: 0.95rem;
  color: #555;
}

.faq-item.faq-active .faq-content {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-item .faq-toggle {
  position: absolute;
  right: 10px;
  top: 18px;
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------
  Skills Section
------------------------------------- */
.skills .progress {
  height: 60px;
  margin-bottom: 20px;
  background: #f2f2f2;
  border-radius: 50px;
  padding: 10px;
}

.skills .progress-bar-wrap {
  background: #e6e6e6;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.skills .progress-bar {
  height: 10px;
  background: linear-gradient(90deg, #ffcc00, #ff9900);
  transition: width 1s ease-in-out;
}

.skills .skill {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

/* -------------------------------------
  Clients Section
------------------------------------- */
#clients .swiper-slide img {
  max-height: 60px;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

#clients .swiper-slide img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* -------------------------------------
  Footer
------------------------------------- */
.footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

.footer .copyright {
  margin-bottom: 10px;
}

.footer a {
  color: #5fc4f7;
}

/* -------------------------------------
  Responsive Adjustments
------------------------------------- */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .skills .progress {
    height: auto;
  }

  .skills .skill {
    font-size: 0.95rem;
  }

  .faq-item h3 {
    font-size: 0.95rem;
  }
}
