/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

.btn {
    display: inline-block;
    color: #fff;
    background: #337ab7;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #23527c;
}

.section-block {
    padding: 60px 0;
    background: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.section-block h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header .logo {
    float: left;
    font-size: 2em;
    font-weight: bold;
}

header nav {
    float: right;
    margin-top: 10px;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header a:hover {
    color: #77aaff;
    font-weight: bold;
}

/* Hero Section */
#hero {
    background: url('../images/hero_image.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-item img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #337ab7;
    margin-bottom: 10px;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.process-steps .step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: #e9e9e9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.process-steps .step h3 {
    color: #337ab7;
    margin-bottom: 10px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-item h3 {
    color: #337ab7;
    margin-bottom: 10px;
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-item img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.project-item p {
    margin-top: 10px;
    font-weight: bold;
}

/* Testimonials */
.testimonial-slider {
    margin-top: 40px;
}

.testimonial-item {
    background: #e9e9e9;
    padding: 30px;
    border-radius: 8px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-item span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #337ab7;
}

/* Contact Form */
#contact form {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: left;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#contact form input[type="text"],
#contact form input[type="email"],
#contact form input[type="tel"],
#contact form textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#contact form button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #337ab7;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
}

#contact form button:hover {
    background: #23527c;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 5px 0;
}

footer .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

/* Cookie Consent Pop-up */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    display: block; /* Hidden by default */
}

.cookie-consent .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.9em;
}

.cookie-consent a {
    color: #77aaff;
    text-decoration: underline;
}

.cookie-consent .btn {
    background: #28a745;
    border: none;
    cursor: pointer;
}

.cookie-consent .btn:hover {
    background: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .logo,
    header nav {
        float: none;
        text-align: center;
    }

    header nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    #hero h1 {
        font-size: 2.5em;
    }

    .service-grid,
    .process-steps,
    .features-grid,
    .project-gallery {
        grid-template-columns: 1fr;
    }

    .process-steps .step {
        max-width: 100%;
    }

    .cookie-consent .container {
        flex-direction: column;
    }
}


