/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header and Navigation */
.site-header {
    background-color: #22496D;
    border-bottom: 0px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar {
    padding: 15px 0;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    font-size: 16.8px;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Page Hero (for other pages) */
.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #4A90E2;
    color: #fff;
}

.btn-primary:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Intro Section */
.intro-section {
    padding: 60px 20px;
    text-align: center;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

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

/* Team Section */
.team-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.team-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.team-member .role {
    font-size: 0.9rem;
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 20px;
}

.testimonials-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.testimonial {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4A90E2;
}

.testimonial .quote {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial .author .name {
    font-weight: 700;
    color: #333;
}

.testimonial .author .title {
    font-size: 0.9rem;
    color: #666;
}

.more-reviews {
    max-width: 800px;
    margin: 0 auto;
}

.more-reviews h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.more-reviews ul {
    list-style: none;
}

.more-reviews li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.more-reviews li:last-child {
    border-bottom: none;
}

/* Solutions Grid */
.solutions-grid {
    padding: 60px 20px;
}

.solution-item {
    margin-bottom: 50px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.solution-item h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.solution-item h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #4A90E2;
}

.solution-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.solution-item ul {
    margin-left: 20px;
    color: #666;
}

.solution-item li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.solution-item a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
}

.solution-item a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-cta {
    margin-top: 40px;
}

/* Footer */
.site-footer {
    background-color: #eae9ed;
    color: #000;
    padding: 30px 20px;
    text-align: center;
    margin-top: 60px;
}

.site-footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .intro-section h2 {
        font-size: 1.8rem;
    }

    .team-grid,
    .testimonials-grid,
    .solutions-grid .container {
        grid-template-columns: 1fr;
    }
}
