/*
Theme Name: Enterprise Theme
Theme URI: 
Author: Your Name
Author URI: 
Description: A professional WordPress theme for enterprise websites
Version: 1.0
Text Domain: enterprise-theme
*/

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}
.logo {
    float: left;
    padding: 15px 0;
}
.main-navigation {
    float: right;
}
.primary-menu {
    list-style: none;
}
.primary-menu li {
    display: inline-block;
    margin-left: 20px;
}
.primary-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 25px 0;
    display: inline-block;
}

/* Hero Slider */
.hero-slider {
    padding-top: 80px;
}
.slide {
    position: relative;
    height: 600px;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-content {
    position: absolute;
    bottom: 100px;
    left: 10%;
    color: #fff;
    max-width: 500px;
}
.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.slide-content p {
    margin-bottom: 20px;
}
.btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
}

/* Sections */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    font-size: 2rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.service-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service-icon {
    margin-bottom: 20px;
}
.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.team-member {
    text-align: center;
}
.member-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}
.position {
    color: #666;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-section {
    background: #f9f9f9;
    padding: 60px 0;
}
.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 0 15px;
}
.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.client-photo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}
.company {
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info h2 {
    margin-bottom: 30px;
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.info-item i {
    margin-right: 15px;
    color: #007bff;
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
}
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .slide-content {
        left: 5%;
        bottom: 50px;
    }
}