html {
  scroll-behavior: smooth;
}

.btn-header-slider {
  position: relative;
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.btn-header-slider::after {
  content: "";
  transition: all 0.3s ease;
}

.btn-header-slider::after {
  content: attr(data-title);
  text-wrap: nowrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.5);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header>nav>img {
  width: 200px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
}

.try-free-btn {
  margin-left: auto;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger i {
  font-size: 1.5rem;
}

.hamburger .fa-bars {
  display: block;
}

.hamburger .fa-times {
  display: none;
}

.hamburger.active .fa-bars {
  display: none;
}

.hamburger.active .fa-times {
  display: block;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #f4f4f4;
}

.btn-container {
  display: flex;
  justify-content: start;
  gap: 10px;
  margin-top: 20px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-text .btn {
  background-color: #007bff;
  color: white;
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 50px;
}

.hero-text .btn .fas {
  margin-right: 10px;
}

.hero-text .btn:hover {
  background-color: #0056b3;
}

/* Hero image styling with rotation animation */
.hero-image {
  max-width: 50%;
  text-align: right;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  animation: rotateImage 10s infinite linear;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  transform-origin: center;
}

@keyframes rotateImage {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* about */
/* Styling for About Us section */
.abouts {
  padding: 60px 20px;
  background-color: #f9f9f9;
  /* Light background for the About section */
}

.abouts .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.25rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* About content styling */
.abouts-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  /* Space between items */
}

.abouts-item {
  flex: 1 1 calc(33.333% - 30px);
  /* Three equal columns, with gap */
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abouts-item:hover {
  transform: translateY(-10px);
  /* Slightly lift up the item */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  /* Enhance the shadow on hover */
}

.abouts-item .icon {
  font-size: 3rem;
  color: #007bff;
  /* Icon color */
  margin-bottom: 20px;
}

.abouts-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.abouts-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* FITUR-FITUR */
/* Features Section Styling */
.features {
  padding: 60px 20px;
  background-color: #ffffff;
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 1.25rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Features content styling */
.features-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.features-item {
  flex: 1 1 calc(33.333% - 30px);
  text-align: center;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.features-item .icon {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 20px;
}

.features-item h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.features-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* FOOTER */
/* Footer Styling */
.footer {
  background-color: #333;
  color: #fff;
  padding: 50px 20px;
  font-size: 1rem;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 calc(33.333% - 30px);
}

.footer h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #f9f9f9;
}

.footer p,
.footer ul,
.footer li {
  color: #ccc;
  line-height: 1.6;
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #007bff;
}

.footer-contact p {
  margin: 10px 0;
}

.footer-contact i {
  margin-right: 10px;
  color: #007bff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.footer-bottom p {
  color: #ccc;
  margin: 0;
}

.social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  margin-left: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #007bff;
}


/* Styles for the pricing section */
.prices {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.prices .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.prices-content {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.prices-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1;
  max-width: 320px;
  transition: transform 0.3s ease;
}

.prices-item:hover {
  transform: translateY(-10px);
}

.price-header h3 {
  font-size: 24px;
  font-weight: bold;
}

.price-amount h4 {
  font-size: 36px;
  color: #007BFF;
  margin: 10px 0;
}

.price-amount span {
  font-size: 18px;
  color: #555;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
  text-align: left;
}


@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px;
    right: 0;
    background-color: #fff;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links a {
    padding: 0.75rem 0;
    display: block;
    color: #333;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero-image {
    display: none;
  }

  .hero-text {
    text-align: center;
    max-width: 95%;
  }

  .btn-header-slider {
    position: relative;
    text-decoration: none;
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    transition: all 0.3s ease;
  }

  .btn-header-slider:hover {
    gap: 0.5rem;
    width: 10rem;
  }

  .btn-header-slider:active {
    transform: scale(0.9);
  }

  .btn-header-slider::after {
    content: "";
    transition: all 0.3s ease;
  }

  .btn-header-slider:hover::after {
    content: attr(data-title);
    text-wrap: nowrap;
  }

  /* abouts */
  .abouts-content {
    flex-direction: column;
    align-items: center;
  }

  .abouts-item {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .features-content {
    flex-direction: column;
    align-items: center;
  }

  .features-item {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .social-icons {
    margin-top: 10px;
  }

  .prices-content {
    flex-direction: column;
    align-items: center;
  }

  .prices-item {
    max-width: 100%;
    margin-bottom: 20px;
  }
}