﻿﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #eb4c8e;
  --secondary-color: #ff8a00;
  --background-color: #0d0c1d;
  --surface-color: rgba(255, 255, 255, 0.05);
  --text-color: #ffffff;
  --muted-text-color: rgba(255, 255, 255, 0.7);
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --font-family: 'Inter', sans-serif;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}
@media (max-width: 768px) {
    .site-nav {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  background-color: var(--surface-color);
  box-shadow: 0 0 10px var(--shadow-color);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  box-shadow: 0 0 10px var(--shadow-color);
  background-color: rgba(13, 12, 29, 0.8);
  border-bottom: 1px solid var(--border-color);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo img {
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  margin-left: 10px;
  color: var(--text-color);
}

.site-nav a {
  margin: 0 15px;
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--primary-color);
}

.site-header .cta-button {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.site-header .cta-button:hover {
  background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0;
  min-height: 100vh;
}

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

.hero-headline {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--muted-text-color);
  margin-bottom: 30px;
}

.hero-cta a {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  margin-right: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.arcaiftoolsexplaintop {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}
.video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.primary-cta {
  color: var(--primary-color);
}

.primary-cta:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

.secondary-cta {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--primary-color);
}

.secondary-cta:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

.hero-image {
  border-radius: 1%;
  max-width: 45%;
  position: relative;
}
.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.hero-image img {
  width: 100%;
  border-radius: 1%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Features Section */
.features {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.feature-icon img {
  height: 80px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-description {
  font-size: 16px;
  color: var(--muted-text-color);
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
}

.gallery-wrapper {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-nav:hover {
  background-color: var(--primary-color);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Download Section */
.download {
  padding: 100px 0;
  text-align: center;
}

.download-content {
  max-width: 600px;
  margin: 0 auto;
}

.download-description {
  font-size: 18px;
  color: var(--muted-text-color);
  margin-bottom: 30px;
}

/* Footer */
.site-footer {
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
}

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

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo h3 {
  font-size: 20px;
  font-weight: 700;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: var(--muted-text-color);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-color);
}

.social-links a {
  margin: 0 10px;
}

.social-links img {
  height: 24px;
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.2);
}
.footer-contact {
  text-align: right;
}

@media(max-width:768px){

  .footer-contact {
    text-align:center;
  }

}
.copyright {
  text-align: center;
  margin-top: 30px;
  color: var(--muted-text-color);
}
/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: #0d0c1d; /* Matching the body background color */
}

.faq .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 42px; /* Matching other section titles */
    font-weight: 700;
    color: var(--text-color);
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: var(--surface-color);
}

.faq-item summary {
    font-size: 20px;
    font-weight: 600;
    padding: 20px;
    cursor: pointer;
    outline: none;
    position: relative;
    color: var(--text-color);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted-text-color);
}

/* Adding some styles for the new FAQ section to be consistent with the rest of the page */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Styles for Photo BG Remove Tool --- */

/* Base display styles for elements controlled by JS */
#loader,
#color-palette {
    display: flex;
}

#download-btn {
    display: inline-block;
}

/* Utility class for hiding elements via JS */
.hidden {
    display: none !important;
}

/* --- Blog Index Page Overrides --- */
.hero-content--blog-index {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features--blog-index {
    padding: 60px 0;
}

.features-grid--blog-index {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.section-title--blog-card {
    font-size: 28px;
    margin-bottom: 10px;
}

.cta--blog-card {
    margin-top: 20px;
    display: inline-block;
}
