/* Global styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 20px;
}

.logo h1 {
    margin: 0;
}

.navigation ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navigation ul li {
    margin-right: 20px;
}

.navigation ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.navigation ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #1e3d58;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 40px;
}

.hero p {
    font-size: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* About Us Section */
.section {
    padding: 40px 0;
    background-color: white;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.media {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.media img, .media video {
    width: 100%;
    max-width: 600px;
}

/* Our Work Section */
.work-category {
    margin-bottom: 40px;
}

.work-category h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-gallery {
    display: flex;
    gap: 20px;
}

.project-item img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Client Testimonials Section */
.testimonial {
    background-color: #e6f7ff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.testimonial p {
    font-style: italic;
}

/* More Info Section */
.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

