/* Auroracore Tech Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: #4a9eff;
    border-bottom: 2px solid #4a9eff;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #4a9eff;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74, 158, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4a9eff;
    border: 2px solid #4a9eff;
}

.btn-secondary:hover {
    background-color: #4a9eff;
    color: #ffffff;
}

/* Section Styles */
section {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Intro Section */
.intro-section {
    background-color: #f8f9fa;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.product-card h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.product-type {
    color: #4a9eff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin: 1.5rem 0;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page */
.about-content {
    padding: 3rem 0;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
}

.expertise-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.expertise-item p {
    color: #666;
    line-height: 1.7;
}

.application-list {
    list-style: none;
    margin-top: 1rem;
}

.application-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.application-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 1.5rem;
}

.advantage-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.advantage-item p {
    color: #666;
    line-height: 1.7;
}

/* Products Page */
.products-content {
    padding: 3rem 0;
}

.services-intro {
    margin-bottom: 4rem;
}

.services-intro h2 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.services-intro p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-detail {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.product-header {
    border-bottom: 3px solid #4a9eff;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.product-header h2 {
    color: #1a1a2e;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    color: #4a9eff;
    font-size: 1.2rem;
    font-weight: 500;
}

.product-content h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.product-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.spec-item {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 5px;
    border-left: 3px solid #4a9eff;
}

.product-features ul,
.product-applications ul,
.product-support ul {
    list-style: none;
    margin: 1rem 0;
}

.product-features ul li,
.product-applications ul li,
.product-support ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.product-features ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
    font-size: 1.2rem;
}

.product-applications ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

.product-support ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

.customization-services {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.customization-services h2 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.customization-services > p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.custom-service-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.custom-service-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.custom-service-item p {
    color: #666;
    line-height: 1.7;
}

.contact-cta {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.05rem;
}

.contact-cta a {
    color: #4a9eff;
    text-decoration: none;
    font-weight: 500;
}

.contact-cta a:hover {
    text-decoration: underline;
}

/* Contact Page */
.contact-content {
    padding: 3rem 0;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-intro p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #4a9eff;
    padding-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-details a {
    color: #4a9eff;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-actions {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.contact-actions h2 {
    color: #1a1a2e;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.help-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.help-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #4a9eff;
}

.help-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.help-item p {
    color: #666;
    line-height: 1.7;
}

.business-hours {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.business-hours h2 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.business-hours p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.business-hours ul {
    list-style: none;
    margin: 1rem 0;
}

.business-hours ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.business-hours ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
.main-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4a9eff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
    color: #4a9eff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #4a9eff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .main-nav ul {
        gap: 1rem;
        margin-top: 1rem;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-detail {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 2rem 0;
    }

    .product-detail {
        padding: 1rem;
    }
}



