/* Main CSS Styles for aiclothingremoverIN.site */
:root {
    --primary: #7E3ACE;        /* Purple as primary color */
    --secondary: #FF6B35;      /* Orange as secondary */
    --accent: #4CB944;         /* Green accent */
    --info: #3B7AC9;           /* Blue info */
    --text: #333333;
    --text-light: #666666;
    --background: #FFFFFF;
    --background-alt: #F8F3FF;
    --border: #E5E5E5;
}

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

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--background);
}

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

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

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

h1, h2, h3, h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
    color: var(--primary);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    color: var(--primary);
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    margin: 15px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.4rem;
    color: var(--text);
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Header styles */
header {
    background-color: var(--background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

.logo-svg {
    width: 180px;
    height: 50px;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    fill: var(--primary);
}

.logo-subtext {
    font-size: 14px;
    fill: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: var(--background-alt);
}

/* Hero section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #F8F3FF 0%, #E8DAFF 100%);
    border-radius: 0 0 0 100px;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 10px 15px rgba(126, 58, 206, 0.2));
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(126, 58, 206, 0.4);
}

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

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

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

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

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

.feature-icon svg {
    width: 60px;
    height: 60px;
}

/* How it works section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--background-alt);
    border-radius: 100px 0 100px 0;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* FAQ section */
.faq {
    padding: 80px 0;
    background-color: var(--background);
}

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

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--background);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    padding-right: 20px;
}

/* Popular terms section */
.popular-terms {
    padding: 60px 0;
    background-color: var(--background-alt);
}

.terms-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.term {
    background-color: var(--background);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.term:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(126, 58, 206, 0.2);
}

/* Footer section */
footer {
    background-color: #31175E;
    padding: 60px 0 30px;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo-svg {
    width: 60px;
    height: 60px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    margin-top: 20px;
    opacity: 0.7;
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-visual {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .hero {
        padding: 60px 0 40px;
        border-radius: 0;
    }
    
    .how-it-works {
        border-radius: 0;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
