/* 
 * aiclothesremoverIN.site - Main Stylesheet
 * Indian-inspired design with colors from the Indian flag: saffron, white, and green
 */

:root {
  --saffron: #FF9933; /* Indian flag saffron */
  --white: #FFFFFF;   /* Indian flag white */
  --green: #138808;   /* Indian flag green */
  --navy: #000080;    /* Navy blue for contrast */
  --blue: #0000FF;    /* Blue accent */
  --dark: #333333;    /* Dark text color */
  --light: #F9F9F9;   /* Light background color */
  --chakra: #00008B;  /* Dark blue from Ashoka Chakra */
}

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

body {
  font-family: 'Noto Sans', 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--light);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: var(--blue);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--saffron);
}

ul {
  list-style: none;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo img {
  max-height: 40px;
  width: auto;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: var(--dark);
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
}

nav ul li a:hover {
  color: var(--saffron);
  background-color: rgba(255,153,51,0.1);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--saffron);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(255,153,51,0.1), rgba(19,136,8,0.1));
  padding: 130px 0 80px;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-content h1 span {
  color: var(--saffron);
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  color: var(--white);
  font-weight: bold;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  color: var(--white);
}

.hero-image {
  margin-top: 40px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--white);
}

.features-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--dark);
  position: relative;
}

.features-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--saffron), var(--green));
  border-radius: 2px;
}

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

.feature-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

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

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: #666;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.process-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

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

.process-step {
  text-align: center;
  padding: 20px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.process-step h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--white);
}

.benefits-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

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

.benefit-card {
  background: rgba(255,153,51,0.05);
  border-left: 4px solid var(--saffron);
  padding: 25px 20px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.benefit-card:nth-child(even) {
  background: rgba(19,136,8,0.05);
  border-left-color: var(--green);
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.benefit-card p {
  color: #666;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--dark);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
}

.accordion-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--saffron);
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  top: 9px;
  left: 0;
  width: 100%;
  height: 2px;
}

.accordion-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
}

.accordion-item.active .accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--saffron), var(--green));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-banner p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-banner .cta-button {
  background: var(--white);
  color: var(--saffron);
}

.cta-banner .cta-button:hover {
  background: var(--light);
  color: var(--green);
}

/* Footer */
footer {
  background-color: #333;
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
}

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

.footer-links ul li a {
  color: var(--white);
  opacity: 0.8;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--saffron);
}

.footer-keywords {
  margin-top: 20px;
  opacity: 0.5;
  font-size: 0.9rem;
}

.footer-disclaimer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Animation Classes */
.pre-animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  
  .hero-section,
  .features-section,
  .process-section,
  .benefits-section,
  .faq-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  nav.active {
    max-height: 300px;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav ul li {
    margin: 0;
    margin-bottom: 15px;
  }
  
  nav ul li:last-child {
    margin-bottom: 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo,
  .footer-links,
  .footer-keywords {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .footer-links ul {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .features-grid,
  .process-steps,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner h2 {
    font-size: 1.8rem;
  }
  
  .process-step {
    padding: 15px 10px;
  }
}
