* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f7fa;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    color: #2a56b3;
    text-decoration: none;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2a56b3;
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    background-color: #2a56b3;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
}

.services {
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    transform: translateY(-5px);
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #2a56b3;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-card p {
    color: #555;
    line-height: 1.6;
}

.service-card-link:hover .service-card h3 {
    color: #1a3c8b;
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .service-detail {
        flex-direction: row;
    }
    
    .service-image {
        flex: 1;
    }
    
    .service-content {
        flex: 1;
    }
}

.service-features li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.capability-card, .expertise-card {
    background-color: #f8fafd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2a56b3;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.result-card {
    text-align: center;
    background-color: #eef2f7;
    padding: 15px;
    border-radius: 8px;
}

.result-number {
    font-size: 28px;
    font-weight: bold;
    color: #2a56b3;
}

.breadcrumb {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #2a56b3;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background-color: #2a56b3;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 15px;
}

.cta-button:hover {
    background-color: #1a3c8b;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.project-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #2a56b3;
    margin-bottom: 15px;
}

.expertise-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 20px;
}

.portfolio {
    background-color: #f9fafb;
}

.project-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 32px;
    color: #2a56b3;
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

footer {
    background-color: #2a56b3;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
