/* Resetting default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f2f2f2;
    color: #333;
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    list-style-type: none;
    display: flex;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #007bff;
}

.logo img {
    max-height: 80px;
}

/* Hero section styles */
/* Adjustments for hero section */

/* Hero section styles */
.hero-section {
    background-image: url('img/build.png');
    background-size: cover; /* This makes the background image cover the entire background */
    background-repeat: no-repeat; /* Prevents the background image from repeating */
    background-position: center;
    color: #ffffff;
    padding: 100px 0;
    text-align: center; /* Center-align content */
    font-family: 'Montserrat';
    font-weight:bold;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center; /* Center-align text */
}

.hero-content h1 {
    display: inline; /* Make h1 inline */
    font-size: 2.5rem; /* Example font size */
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #333;
}

.btn-primary {
    background-color: #333;
}

.btn-primary:hover {
    background-color: #333;
}


/* About section styles */
/* Adjustments for about section */

.about-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.container1 {
    position: relative;
    z-index: 2; /* Ensure content is above particles */
    margin: 0 auto;
    max-width: 35%;
}

.container2 {
    position: relative;
    z-index: 2; /* Ensure content is above particles */
    margin: 0 auto;
    max-width: 35%;
    height: 100%;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Particles behind content */
}

.section-title h2 {
    margin-bottom: 30px;
    color: #333;
    font-size: 1.8rem;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000000;
    font-family: lobster;
}

/* Animation styles */
@keyframes moveBackground {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.about-section {
    background: linear-gradient(45deg, #D0401F, #F9F6EE, #C67C5F);
    background-size: 400% 400%;
    animation: moveBackground 10s infinite alternate;
}






/* Adjustments for four service items */

/* Services section styles */
.services-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #ec870e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 2;
}

.service-item h4 {
    font-size: 1.0rem;
    margin-top: 15px;
    margin-bottom: 10px;
}

.service-item img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
/* Define keyframes for the background gradient animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Apply the animation to the services-section */
.services-section {
    background: linear-gradient(45deg, #EDEADE, #F9F6EE, #D3D3D3);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
}


.portfolio-gallery {
    display: flex;
    justify-content: center;
}

.slideshow-container {
    max-width: 800px; /* Adjust the maximum width as needed */
    position: relative;
    margin: 0 auto; /* Center align the container */
}

.portfolio-item {
    display: none;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Styles for navigation arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    user-select: none;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}







/* Contact section styles */
.contact-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    
}

.container {
    text-align: center; /* Center align content */
}

.contact-options {
    list-style-type: none; /* Remove default list styling */
    padding: 0; /* Remove default padding */
}

.contact-options li {
    display: inline-block; /* Display list items inline */
    margin: 0 20px; /* Add spacing between items */
    margin-top: 20px;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px; /* Adjust padding as needed */
    width: 160px; /* Set a fixed width for all buttons */
    text-align: center; /* Center align text */
    background-color: #007bff; /* Button background color */
    color: #fff; /* Text color */
    text-decoration: none; /* Remove underline */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.contact-button:hover {
    background-color: #0056b3; /* Darker background on hover */
}




/* Footer styles */
.footer {
    background-color: #333;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    text-align: center;
}




