/* =======================
   BASE STYLES
======================= */
body {
  font-family: Arial, sans-serif;
}

/* =======================
   NAVIGATION MENU
======================= */
.main-nav {
  background: #111;
  padding: 10px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li {
  display: inline-block;
  margin: 0 15px;
}
.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s;
}
.main-nav a:hover {
  background: #ff4444;
  border-radius: 6px;
}

/* =======================
   HERO SECTION
======================= */
.hero-section {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.hero-section img {
  width: 200px;
  animation: float 3s ease-in-out infinite;
}

/* =======================
   FLOAT ANIMATION
======================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =======================
   LANGUAGE TOGGLE BUTTONS
======================= */
.language-toggle {
  text-align: center;
  margin: 20px 0;
}
.language-button,
.language-toggle button {
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  background: #ff4444;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
}
.language-button:hover,
.language-toggle button:hover {
  background: #cc0000;
}

/* =======================
   FEATURES SECTION
======================= */
.features {
  background: #f8f8f8;
  padding: 50px 20px;
  color: #333;
}
.features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}
.feature-item {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.6;
  padding-left: 25px;
  position: relative;
}
.feature-item::before {
  content: '✔️';
  position: absolute;
  left: 0;
  top: 0;
}
.features img {
  margin-top: 15px;
  width: 150px;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.features img:hover {
  transform: scale(1.05);
}

/* =======================
   FOOTER CALL TO ACTION
======================= */
.footer-cta {
  text-align: center;
  background: #222;
  color: white;
  padding: 40px 20px;
  font-size: 20px;
}

/* =======================
   ABOUT SECTION
======================= */
.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px;
}
.about-text {
  flex: 1 1 60%;
  font-size: 18px;
  line-height: 1.6;
}
.about-text ul {
  padding-left: 20px;
}
.about-text li {
  margin-bottom: 20px;
}
.about-logo {
  flex: 1 1 30%;
  text-align: center;
}
.about-logo img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}
.about-text img:hover {
  transform: scale(1.05);
}

/* =======================
   REQUEST LOGO (USED IN REQUEST PAGE)
======================= */
.request-logo {
  max-width: 200px;
  height: auto;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

/* =======================
   RESPONSIVE DESIGN
======================= */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .request-logo {
    max-width: 160px;
  }
}

/* =======================
   IMAGE COMPARISON SLIDER
======================= */
.comparison-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}
.twentytwenty-wrapper {
  margin: 40px 0;
}
.twentytwenty-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.twentytwenty-container img {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: clip-path 0.3s ease;
  clip-path: inset(0 50% 0 0);
}
.twentytwenty-container img:last-child {
  clip-path: inset(0 0 0 50%);
  z-index: 2;
}
.twentytwenty-container:hover img:first-child {
  clip-path: inset(0 0 0 50%);
}
.twentytwenty-container:hover img:last-child {
  clip-path: inset(0 50% 0 0);
}

/* =======================
   WP FORMS CONTAINER
======================= */
.wpforms-container {
  margin-top: 30px;
}
