/* Main stylesheet for utstech ERP Clone */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #222;
}

/* Add more styles as the structure is built */

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #1a237e;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.main-nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: #1a237e;
}
.cta-btn {
    background: #1a237e;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #3949ab;
}

/* Hero Section */
.hero {
    background: linear-gradient(120deg, #1a237e 0%, #3949ab 100%);
    color: #fff;
    padding: 5rem 0 4rem 0;
    text-align: center;
}
.hero .container {
    max-width: 900px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
.hero .cta-btn {
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    .main-nav ul {
        gap: 1rem;
    }
    .hero {
        padding: 3rem 0 2rem 0;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
} 

/* About Section */
.about {
    background: #f5f7fa;
    padding: 4rem 0 3rem 0;
    text-align: center;
}
.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a237e;
}
.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}
.about-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
}
.about-list li {
    background: #fff;
    border-radius: 20px;
    padding: 0.7rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 1rem;
    color: #3949ab;
}

/* Features Section */
.features {
    background: #fff;
    padding: 4rem 0 3rem 0;
    text-align: center;
}
.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a237e;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-card {
    background: #f5f7fa;
    border-radius: 18px;
    padding: 2rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(26,35,126,0.10);
}
.feature-card h3 {
    color: #3949ab;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}
.feature-card p {
    color: #333;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .about-list {
        flex-direction: column;
        gap: 0.7rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .about, .features {
        padding: 2rem 0 1.5rem 0;
    }
} 

/* Why Choose Us Section */
.why-choose {
    background: #f5f7fa;
    padding: 4rem 0 3rem 0;
    text-align: center;
}
.why-choose h2 {
    color: #1a237e;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.benefit {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem 1.2rem;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
}
.benefit h3 {
    color: #3949ab;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.benefit p {
    color: #333;
    font-size: 1rem;
}
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}
.stat span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #1a237e;
}
.stat p {
    margin: 0;
    color: #3949ab;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    padding: 4rem 0 3rem 0;
    text-align: center;
}
.testimonials h2 {
    color: #1a237e;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.testimonial {
    background: #f5f7fa;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem 1.2rem;
    max-width: 340px;
    flex: 1 1 260px;
    font-style: italic;
}
.testimonial span {
    display: block;
    margin-top: 1rem;
    color: #3949ab;
    font-size: 0.95rem;
    font-style: normal;
}

/* Contact Section */
.contact {
    background: #f5f7fa;
    padding: 4rem 0 3rem 0;
    text-align: center;
}
.contact h2 {
    color: #1a237e;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.contact-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
}
.contact-form button {
    background: #1a237e;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #3949ab;
}

/* Footer */
.site-footer {
    background: #1a237e;
    color: #fff;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .benefits-grid, .testimonials-grid {
        flex-direction: column;
        gap: 1.2rem;
    }
    .stats-row {
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .why-choose, .testimonials, .contact {
        padding: 2rem 0 1.5rem 0;
    }
    .benefit, .testimonial {
        min-width: 0;
        max-width: 100%;
        padding: 1rem 0.7rem;
    }
    .stats-row {
        flex-direction: column;
        align-items: center;
    }
} 