/* General Styles */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #1a1a1a;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007BFF;
}

/* Hero Section Styles */
.hero {
    background-image: linear-gradient(to bottom, rgba(0, 123, 255, 0.7), rgba(0, 123, 255, 0.9)), url('https://images.unsplash.com/photo-1582719478150-04fc1e2c3586?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 200px 20px;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    position: relative;
    margin-top: 75px;
}

.hero h1 {
    font-size: 48px;
    margin: 0 0 20px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 24px;
    margin: 0 0 30px;
    font-weight: 300;
    animation: fadeInUp 1.5s ease-out;
}

.hero button {
    background-color: #ff7b00;
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    animation: fadeIn 2s ease-out;
}

.hero button:hover {
    background-color: #ff5200;
}

/* Keyframes for Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Section Styles */
section {
    padding: 60px 0;
    text-align: center;
}

.services, .about, .contact {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 50px 20px;
}

.services h2, .about h2, .contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: #007BFF;
    color: white;
    border-radius: 10px;
    padding: 30px 20px;
    width: 30%;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card .icon img {
    width: 64px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.card p {
    font-size: 16px;
    font-weight: 300;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

/* Contact Section Styles */
.contact p {
    font-size: 18px;
    font-weight: 400;
}

.contact a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}
