/* 
 * aiclothesremoverIN.pw - Main Stylesheet
 * Color scheme based on Indian flag and cultural colors
 * Saffron: #FF9933
 * White: #FFFFFF
 * Green: #138808
 * Navy Blue: #000080 (Ashoka Chakra)
 * Gold: #D4AF37 (Accent)
 */

/* Base styles and reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #f8f8f8;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: #000080;
  transition: all 0.3s ease;
}

a:hover {
  color: #FF9933;
}

img, svg {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #000080;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #000080;
  margin-bottom: 15px;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #FF9933, #138808);
  margin: 10px auto 0;
  border-radius: 2px;
}

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

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(45deg, #FF9933, #D4AF37);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #138808, #000080);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
  color: white;
}

.btn:hover:before {
  left: 0;
}

.btn-outline {
  background: transparent;
  border: 2px solid #FF9933;
  color: #FF9933;
}

.btn-outline:hover {
  color: white;
  background: #FF9933;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.sticky {
  padding: 12px 0;
  background-color: white;
}

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

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #000080;
  display: flex;
  align-items: center;
}

.logo svg {
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 35px;
}

.nav-menu a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  position: relative;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #FF9933, #138808);
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: #FF9933;
}

.nav-menu a:hover::before {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #000080;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(45deg, rgba(255, 153, 51, 0.9), rgba(19, 136, 8, 0.9)), url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='35' cy='35' r='15' fill='%23000080' fill-opacity='0.1' /%3E%3Ccircle cx='35' cy='35' r='13' stroke='%23000080' stroke-width='1' fill='none' stroke-opacity='0.1' /%3E%3C/svg%3E");
  background-size: cover;
  position: relative;
  color: white;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* Floating chakra decorations */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='75' cy='75' r='60' fill='%23000080' fill-opacity='0.1' /%3E%3Ccircle cx='75' cy='75' r='55' stroke='%23FFFFFF' stroke-width='2' fill='none' stroke-opacity='0.2' /%3E%3C/svg%3E") no-repeat;
  opacity: 0.6;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='%23000080' fill-opacity='0.1' /%3E%3Ccircle cx='50' cy='50' r='35' stroke='%23FFFFFF' stroke-width='2' fill='none' stroke-opacity='0.2' /%3E%3C/svg%3E") no-repeat;
  opacity: 0.6;
  z-index: 1;
}

/* Features section */
.features {
  padding: 100px 0;
  background-color: #fff;
}

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

.feature-box {
  background: linear-gradient(135deg, #fff, #f9f9f9);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(to right, #FF9933, #138808);
  border-image-slice: 1;
}

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

.feature-box::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF9933, #138808);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box h3 {
  margin-bottom: 15px;
  font-size: 1.6rem;
}

/* How it works section */
.how-it-works {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 153, 51, 0.05));
  z-index: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  counter-reset: step-counter;
}

.step {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  counter-increment: step-counter;
}

.step::before {
  content: counter(step-counter);
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF9933, #D4AF37);
  color: white;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.step h3 {
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 3px solid #FF9933;
}

/* About section */
.about {
  padding: 100px 0;
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  text-align: center;
}

.about-image svg {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #FF9933, #138808);
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
}

.about-points {
  margin: 30px 0;
  list-style: none;
}

.about-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.about-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 15px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16'%3E%3Cpath fill='%23FF9933' d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'/%3E%3C/svg%3E") no-repeat;
}

/* CTA section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #FF9933, #138808);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='20' fill='%23FFFFFF' fill-opacity='0.03' /%3E%3C/svg%3E");
  animation: rotate 60s linear infinite;
  z-index: 1;
}

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

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.cta .btn {
  background: white;
  color: #000080;
  font-size: 1.1rem;
  padding: 15px 40px;
}

.cta .btn:hover {
  background: #f0f0f0;
  transform: translateY(-5px);
}

/* Footer */
.footer {
  background-color: #0a0a2e;
  color: #fff;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-about p {
  margin: 20px 0;
  color: #ccc;
  line-height: 1.7;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: inline-flex;
  align-items: center;
}

.footer-logo svg {
  margin-right: 10px;
}

.footer-nav h4, .footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #FF9933;
  position: relative;
  padding-bottom: 15px;
}

.footer-nav h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #FF9933, #138808);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 15px;
}

.footer-nav ul li a {
  color: #ccc;
  transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #FF9933;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #ccc;
}

.footer-contact p svg {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  fill: #FF9933;
}

.footer-bottom {
  text-align: center;
  padding-top: 60px;
  color: #999;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    display: none;
    z-index: 999;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 0;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .features-grid, .steps {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-points li {
    padding-left: 25px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .cta h2 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}
