

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures the navbar stays on top */
}

.logo img {

    height: 175px;
 }
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #cccccc;
}

.start-project a {
    background-color: #ffffff;
    color: #21282c;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
    font-size: 16px;
    border: none;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.start-project a:hover {
    background-color: #cccccc;
    color: #21282c;
}

.hero {
    position: relative;
    height: 50vh; /* Adjust this value to control the height of the hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area while maintaining aspect ratio */
}

.hero .hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

.hero-content h1, .hero-content p {
    margin: 0;
    color: #fff;
}

.hero-content h1 {
    font-size: 2.5em;
}

.hero-content p {
    font-size: 1.5em;
}

.hero-content .start-project {
    margin-top: 20px;
    display: inline-block;
    background-color: #fff;
    color: #21282c;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.hero-content .start-project:hover {
    background-color: #cccccc;
    color: #21282c;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.services {
    padding: 40px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.services h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.services .service-item {
    display: inline-block;
    width: calc(20% - 20px);
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.services img {
    width: 100%;
    display: block;
}

.service-item img {
    width: 350px;
    height: 200px;
}

.services .service-item .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* Keep the overlay visible even without hover */
    transition: transform 0.3s, opacity 0.3s; /* Add transform to the transition */
}

.services .service-item:hover .service-overlay {
    transform: scale(1.05); /* Scale the overlay on hover */
    opacity: 1; /* Ensure opacity remains 1 on hover */
}

.services .service-overlay p {
    margin: 0;
    font-size: 1.2em;
    text-align: center;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.header {
    margin-bottom: 20px;
}

.icon {
    width: 50px;
    height: 50px;
}

.content {
    margin-bottom: 20px;
}
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 20px; /* Increased padding to make the footer larger */
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon img {
    width: 24px; /* Adjust size as needed */
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
    opacity: 0.8;
}

.rights-reserved {
    margin: 0;
    font-size: 14px;
}

.example-image {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border-radius: 10px;
}

.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 20px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('alberto-castillo-q-mx4mSkK9zeo-unsplash.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.3; /* Adjust the opacity to create the light tint effect */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: black;
}
.hero-section p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 20px;
    color: black;
}

/* Add these styles to your styles.css file */

.contact {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    background-color: #21282c;
    color: #fff;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

button[type="submit"]:hover {
    background-color: #333;
}

/* Footer styling */
/* Footer styling */
/* Footer styling */
.footer {
    background-color: #000; /* Set this to the same color as your navbar */
    color: #fff;
    padding: 20px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Distributes space between elements */
    align-items: center;
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon img {
    width: 24px; /* Adjust size as needed */
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
    opacity: 0.8;
}

.rights-reserved {
    margin: 0;
    font-size: 14px;
}


.contact-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 50px auto;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button[type="submit"] {
    background-color: #21282c;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button[type="submit"]:hover {
    background-color: #333;
}

@media (max-width: 1200px) {
    .services .service-item {
        width: calc(25% - 20px); /* 4 items per row */
    }
}

@media (max-width: 992px) {
    .services .service-item {
        width: calc(33.333% - 20px); /* 3 items per row */
    }

    .navbar {
        flex-direction: column;
        padding: 20px;
    }

    .hero-content {
        left: 50%;
        transform: translateX(-50%);
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .hero-section h1 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .services .service-item {
        width: calc(50% - 20px); /* 2 items per row */
    }

    .hero {
        height: 40vh; /* Adjust height for smaller screens */
    }

    .hero-content h1 {
        font-size: 1.5em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .contact-container {
        padding: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9em;
    }
}

@media (max-width: 576px) {
    .services .service-item {
        width: 100%; /* 1 item per row */
    }

    .navbar {
        padding: 10px;
    }

    .nav-links {
        gap: 10px;
    }

    .hero-content {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 1.2em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .contact-container {
        padding: 10px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.8em;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-icons {
        margin-top: 10px;
    }
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #000;
    padding: 20px;
    position: sticky; /* Make the mobile nav sticky */
    top: 150px; /* Adjust this value to match the height of the navbar */
    z-index: 999; /* Slightly lower than the navbar */
}

.mobile-nav.is-active {
    display: flex;
    transition: all 0.3s ease; /* Smooth transition when toggled */
}


.nav-links-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centering content horizontally */
    gap: 10px;
}

.nav-links-mobile li {
    margin-bottom: 10px;
}

.nav-links-mobile a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links-mobile a:hover {
    color: #cccccc;
}

@media (max-width: 1222px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

