/* style.css */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Add this */
}

.logo a {
    font-size: 1.8em;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Add this */
    justify-content: center; /* Add this */
}

nav ul li {
    margin-left: 20px;
    margin-right: 20px; /* Add this */
}

nav ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}

nav ul li .cta-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
}

nav ul li .cta-button:hover {
    background-color: #0056b3;
}

main {
    padding: 20px 0;
}

main .container {
    text-align: center;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Add this */
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Add this */
    justify-content: center; /* Add this */
}

footer nav ul li {
    margin-left: 20px;
    margin-right: 20px;
}

footer nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav ul li a:hover {
    color: #007bff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    footer nav ul {
        flex-direction: column;
        align-items: center;
    }

    footer nav ul li {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.5em;
    }

    nav ul li {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/* Hero Section Styles */
.hero {
    background-color: #e9ecef;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #333;
}

.hero .tagline {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons a {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero-buttons .primary-button {
    background-color: #007bff;
    color: #fff;
}

.hero-buttons .primary-button:hover {
    background-color: #0056b3;
}

.hero-buttons .secondary-button {
    background-color: #fff;
    color: #007bff;
    border: 1px solid #007bff;
}

.hero-buttons .secondary-button:hover {
    background-color: #e9ecef;
}

/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 60px 0;
    background-color: #fff;
}

.why-choose-us h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.why-choose-us .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.why-choose-us .feature {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.why-choose-us .feature i {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 15px;
}

.why-choose-us .feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.why-choose-us .feature p {
    color: #666;
}

/* Our Expertise Section Styles */
.our-expertise {
    padding: 60px 0;
    background-color: #e9ecef;
}

.our-expertise h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.our-expertise .expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.our-expertise .expertise-category {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.our-expertise .expertise-category h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.our-expertise .expertise-category h3 i {
    margin-right: 10px;
    color: #007bff;
}

.our-expertise .expertise-category h4 {
    font-size: 1.2em;
    color: #555;
    margin-top: 15px;
    margin-bottom: 5px;
}

.our-expertise .expertise-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.our-expertise .expertise-category ul li {
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.our-expertise .expertise-category ul li i {
    margin-right: 8px;
    color: #007bff;
}

/* Our Process Section Styles */
.our-process {
    padding: 60px 0;
    background-color: #fff;
}

.our-process h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.our-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: center;
}

.our-process .step {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.our-process .step i {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.our-process .step h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.our-process .step p {
    color: #666;
}

/* Testimonials Section Styles */
.testimonials {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.testimonials h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonial {
    background-color: #fff
}