/* styles.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #FFFFFF;
  color: #333333;
}

header {
  background-color: #193a65;
  color: #FFFFFF;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-img {
  height: 50px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
  position: relative;
}

nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #FFCC00;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.banner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-image: url('image1.jpg');
  background-size: 100% 100%;
  background-position: center;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  text-align: center;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.banner-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 18px;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translate(-50%, -60%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}

.our-services {
  padding: 50px 0;
  background-color: #FFFFFF;
}

.our-services h2 {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #F0F0F0;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card i {
  font-size: 48px;
  color: #336699;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  margin-bottom: 20px;
}

.service-card .learn-more {
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.service-card .learn-more:hover {
  background-color: #E6B800;
}

.service-description {
  display: none;
  margin-top: 20px;
  padding: 10px;
  background-color: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.service-description ul {
  list-style: disc;
  padding-left: 20px;
}

.how-we-work {
  padding: 50px 0;
  background-color: #F0F0F0;
}

.how-we-work h2 {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

.steps-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
}

.steps-list li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s ease;
}

.steps-list li.visible {
  opacity: 1;
  transform: translateX(0);
}

.steps-list li:hover {
  background-color: #FFFFFF;
}

.steps-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #336699;
}

footer {
  background-color: #193a65;
  color: #FFFFFF;
  padding: 20px;
  text-align: center;
}

footer p {
  margin-bottom: 10px;
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  color: #FFFFFF;
  font-size: 24px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #FFCC00;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .banner {
    padding-top: 75%;
  }

  .banner-text h1 {
    font-size: 32px;
  }

  .banner-text p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-list li {
    font-size: 14px;
  }
}