/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: #2674f2;
    color: white;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 10px;
}

.logo-icon i {
    font-size: 1.2rem;
    margin-right: 5px;
}

nav ul {
    display: flex;
    list-style-type: none;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
}

.contact-btn {
    background-color: white;
    color: #2674f2;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Hero section */
.hero {
    background-color: #2674f2;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Services section */
.services {
    padding: 4rem 0;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #2674f2;
    margin-bottom: 1rem;
}

/* DevOps Process section */
.devops-process {
    background-color: #f1f3f5;
    padding: 4rem 0;
}

.devops-process h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.devops-process > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.process-step {
    background-color: white;
    border-radius: 5px;
    padding: 1.5rem;
    text-align: center;
    width: calc(33.333% - 2rem);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process-step img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

/* Contact form section */
.contact-form {
    padding: 4rem 0;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-container {
    display: flex;
    gap: 2rem;
}

form {
    flex: 1;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-btn {
    background-color: #2674f2;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.benefits {
    flex: 1;
}

.benefits h3 {
    margin-bottom: 1rem;
}

.benefits ul {
    list-style-type: none;
}

.benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.benefits i {
    font-size: 1.5rem;
    color: #2674f2;
    margin-right: 1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
    }

    .form-container {
        flex-direction: column;
    }

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

/* Dropdown menu styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Adjust the chevron icon */
.dropdown > a > i {
    margin-left: 5px;
}

/* Responsive adjustments for the header */
@media (max-width: 1024px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 10px 0;
    }

    .dropdown-content {
        position: static;
        background-color: transparent;
        box-shadow: none;
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .contact-btn {
        margin-top: 20px;
    }
}