:root {
  --primary-color: #3597dc;
  --secondary-color: #28a745;
  --text-color: #333;
  --light-bg: #f8f9fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
}

html {
  scroll-padding-top: 80px; /* Adjust the value based on your header height */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  animation: slideInDown 1s ease-in-out;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  flex-grow: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-right: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.header-buttons {
  display: flex;
  align-items: center;
}

.currency-toggle {
  margin-right: 15px;
}

.currency-checkbox {
  display: none;
}

.currency-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90px;
  height: 34px;
  background-color: #ebebeb;
  border-radius: 17px;
  padding: 5px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
}

.currency-label .currency {
  z-index: 1;
  font-weight: bold;
  width: 35px;
  text-align: center;
  color: var(--text-color);
}

.currency-label::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 28px;
  border-radius: 14px;
  background-color: white;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
}

.currency-checkbox:checked + .currency-label::after {
  transform: translateX(45px);
}

.currency-checkbox:checked + .currency-label {
  background-color: var(--primary-color);
}

/* Adjust text color for non-selected currency */
.currency-checkbox:not(:checked) + .currency-label .currency:last-child {
  color: #999;
}

.currency-checkbox:checked + .currency-label .currency:first-child {
  color: #ffffff;
}

.currency-checkbox:checked + .currency-label .currency:last-child {
  color: #000000;
}

.whatsapp-button {
  background-color: #25d366;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  transform: scale(1.05);
}

.whatsapp-button i {
  margin-right: 5px;
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
}

.mobile-menu-toggle .hamburger {
  width: 30px;
  height: 22px;
  position: relative;
}

.mobile-menu-toggle .hamburger .bar {
  background-color: var(--text-color);
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle .hamburger .bar::before,
.mobile-menu-toggle .hamburger .bar::after {
  content: '';
  background-color: var(--text-color);
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle .hamburger .bar::before {
  top: -8px;
}

.mobile-menu-toggle .hamburger .bar::after {
  top: 8px;
}

.mobile-menu-toggle.active .hamburger .bar {
  background-color: transparent;
}

.mobile-menu-toggle.active .hamburger .bar::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle.active .hamburger .bar::after {
  transform: rotate(-45deg);
  top: 0;
}

.hero {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  padding: 120px 0 60px;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #0c0065;
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background-color: var(--light-bg);
  transform: scale(1.05);
}

.features {
  padding: 20px 0;
  background-color: #ffffff;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.compatibility {
  padding: 20px 0 1px 0;
  background-color: #ffffff;
}

.compatibility h2 {
  text-align: center;
  margin-bottom: 40px;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.compatibility-item {
  text-align: center;
}

.compatibility-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.downloads {
  padding: 20px 0 10px 0;
  background-color: #ffffff;
}

.downloads h2 {
  text-align: center;
  margin-bottom: 40px;
}

.downloads p {
  text-align: center;
  margin-bottom: 40px;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.downloads-item {
  text-align: center;
}

.downloads-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-secondary:hover {
  background-color: #218838;
  transform: scale(1.05);
}

.pricing {
  padding: 20px 0;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.tab-button {
  background-color: #f1f1f1;
  border: none;
  color: var(--text-color);
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab-button:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.tab-button:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.tab-button.active {
  background-color: var(--primary-color);
  color: #ffffff;
}

.pricing-content {
  position: relative;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pricing-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  width: 300px;
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  margin-bottom: 10px;
}

.faq {
  padding: 20px 0;
  background-color: #ffffff;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
  background-color: var(--light-bg);
  padding: 20px;
  border-radius: 10px;
}

.faq-item h3 {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-item h3::after {
  content: '\25BC';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.faq-item.open h3::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item-content {
  display: none;
  margin-top: 10px;
}

.faq-item.open .faq-item-content {
  display: block;
}

.apk-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 12px 0;
}

.apk-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.apk-table-single {
  min-width: 100%;
}

.apk-table th,
.apk-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.apk-table-link {
  color: #0c0065;
  font-weight: bold;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.apk-table-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.url-copy-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background-color: #f4f6f8;
  margin: 8px 0;
}

.url-copy-text {
  word-break: break-all;
  font-size: 0.95rem;
}

.url-copy-button {
  border: none;
  background-color: #0c0065;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
}

.url-copy-button:hover {
  background-color: #0056b3;
}

.footer {
  background-color: var(--text-color);
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.footer .footer-email-link {
  color: #ffffff;
}

.footer .footer-email-link:hover {
  color: #ffffff;
}

.social-media a {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-media a:hover {
  color: var(--primary-color);
}

.fa-circle-18 {
  position: relative;
  width: 1em;
  height: 1em;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: bold;
  font-size: 0.7em;
}

.fa-circle-18::before {
  content: "18+";
  color: white;
  font-size: 0.4em;
}

/* Menu Overlay */
.menu-overlay {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .apk-table {
    min-width: 560px;
    font-size: 0.9rem;
  }

  .apk-table-single {
    min-width: 100%;
    font-size: 0.85rem;
  }

  .apk-table-single td {
    padding: 7px;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    order: 1;
  }

  .currency-toggle {
    margin-right: 10px;
  }

  .whatsapp-button {
    margin: 0;
  }

  .mobile-menu-toggle {
    display: block;
    order: 2;
  }

  .hamburger {
    cursor: pointer;
  }

  .navbar {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -250px;
    height: 100%;
    width: 250px;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .navbar.active {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
  }

  .nav-menu li {
    margin: 20px 0;
    text-align: left;
    padding-left: 20px;
  }

  .nav-menu a {
    font-size: 1.2rem;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }

  .menu-overlay.active {
    display: block;
  }
}

/* Desktop Styles */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }

  .navbar {
    position: static;
    display: flex;
    flex-direction: row;
    height: auto;
    width: auto;
    padding-top: 0;
    background-color: transparent;
    align-items: center;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
  }

  .nav-menu li {
    margin: 0 15px;
    padding: 0;
  }

  .nav-menu li:last-child {
    margin-right: 0;
  }

  .nav-menu a {
    font-size: 1rem;
  }

  .header-buttons {
    margin-left: auto;
  }

  .navbar.active {
    left: 0;
  }

  .menu-overlay {
    display: none;
  }
}

.beauty-link {
  position: relative;
  text-decoration: none;
  color: #0c0065;
  font-family: Arial, sans-serif;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
  font-weight: bold;
}

.beauty-link .first-line,
.beauty-link .second-line {
  display: block;
  text-align: center;
}

.beauty-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px; /* Thickness of the underline */
  background-color: #0c0065; /* Same color as the text */
  transition: width 0.3s ease; /* Animation speed */
}

.beauty-link:hover::after {
  width: 100%; /* Expands underline to full width */
}

.beauty-link:hover {
  color: #0056b3; /* Changes color on hover */
}

.btn-primary:hover {
  background-color: #45a049;
  color: #ffffff;
}

.slider-wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.slider-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  touch-action: pan-y;
}
.slider {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
  z-index: 10;
}
.arrow:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.arrow-left {
  left: 10px;
}
.arrow-right {
  right: 10px;
}
@media (max-width: 768px) {
  .slider-container {
      max-width: 100%;
  }
  .arrow {
      width: 30px;
      height: 30px;
      font-size: 16px;
  }
}

/* Tutorial Steps Grid */

.responsive-img {
    max-width: 100%;
    height: auto;
}

.tutorial {
    padding-top: 90px; /* Adjust this value to your navbar's height if necessary */
    background-color: #f8f9fa; /* Assuming this matches your pricing section background */
    padding-bottom: 40px; /* Same as your pricing section */
}

.tutorial h1, .tutorial p {
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px; /* Add padding if necessary */
}

.tips {
    /*padding-top: 20px; /* Adjust this value to your navbar's height if necessary */
    background-color: #f8f9fa; /* Assuming this matches your pricing section background */
    padding-bottom: 40px; /* Same as your pricing section */
}

.tips h1, .tips p {
    margin: 0 auto;
    text-align: center;
    padding: 10px 20px; /* Add padding if necessary */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.step-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-card h2 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.step-card p {
    margin-top: 15px;
}

.step-card img {
    width: 100%; /* Makes the image responsive */
    height: auto; /* Maintains the aspect ratio */
    border-radius: 5px; /* Optional: Adds rounded corners to the image */
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Optional: Adds a subtle shadow for depth */
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr); /* Ensures only two columns on screens wider than 768px */
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr; /* Single column layout for smaller screens */
    }
}
