* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f8;
    color: #333;
}

/* Hero Section */
.hero {
    background: #001f4d; /* Navy Blue */
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.hero button {
    background: #ffc107; /* Accent color */
    color: #001f4d;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.hero button:hover {
    background: #e0a800;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Services Section */
.services {
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #001f4d;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Solutions Section */
.solutions {
    background: #e3e8f1; /* Light Navy shade */
    padding: 60px 0;
    text-align: center;
}

.solutions h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #001f4d;
}

.solution-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.solution-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 20px;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #001f4d;
}

.testimonial-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #f1f3f6;
    padding: 25px;
    border-radius: 15px;
    width: 300px;
    font-style: italic;
}

/* Footer */
footer {
    background: #001f4d; /* Navy Blue */
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}
