/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header .logo {
    width: 150px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 10px 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e2cd00;
}

/* Parallax Section */
.parallax {
    background-image: url('images/slide1.png');
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-text {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2em;
}

/* About Us Section */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 50px 0;
}

.about-content p {
    font-size: 1.1em;
    margin: 10px 0;
}

.about-content strong {
    font-weight: bold;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: center;
}

.service-item {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
}

.service-item h3 {
    font-size: 1.5em;
    margin: 20px 0;
}

.service-item ul {
    list-style-type: none;
    padding: 0;
}

.service-item ul li {
    padding: 5px 0;
    font-size: 1.1em;
}

/* Contact Section */
.contact-info p {
    font-size: 1.1em;
    margin: 10px 0;
}

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

/* Parallax Banner */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    /* Adjust the height to fit your design */
}

/* Email Button */
.email-button {
    background-color: #4b7ba6;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.email-button:hover {
    background-color: #e2cd00;
}

.about-container {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.about-content {
    max-width: 1100px;
    margin: auto;
}

.company-overview {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 30px;
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.about-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 300px;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-icon img {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
}

.about-card h3 {
    color: #4b7ba6;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 1em;
    color: #555;
}

.about-values ul {
    list-style-type: none;
    padding: 0;
}

.about-values ul li {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    background: #e2cd00;
    padding: 8px;
    border-radius: 5px;
    margin: 5px 0;
    transition: transform 0.2s;
}

.about-values ul li:hover {
    transform: scale(1.1);
}