body {
    background: url('/images/bg.jpg') center center/cover no-repeat;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    transition: 0.5s ease;
}
.hero {
    background: url('/images/kuul.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    align-items: center; /* Centers horizontally */
    justify-content: center; /* Centers vertically */
    text-align: center; /* Centers text inside */
    color: white;
}
nav {
    background-color: lightgray;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
    transition: 0.3s ease;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
nav a:hover {
    text-decoration: underline;
}
section {
    padding: 20px;
    text-align: center;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 8px 16px #21027533;
    z-index: 1;
}
.dropdown-content a {
    color: lightgreen;
    padding: 10px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color: lightgreen;
}
.dropdown:hover .dropdown-content {
    display: block;
}
#services {

    background-color: white;
    background-size: cover;
    background-position: center;
    color: black;
    padding: 50px 20px;
}
/* Add background images for each section */
#about {
    background: url('/images/tool.jpg') no-repeat center center/cover;
    background-color: #f4f4f4; /* Fallback background color */
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
}
.about-container {
    display: flex;
    max-width:100%;
    background: lightslategray;
    box-shadow: blanchedalmond;
    border-radius: 10px;
}
.about-content {
    padding: 30px;
    color:whitesmoke;
}
.services {
    padding: 50px 20px;
}
.services-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.services h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}
.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.service-box {
    background-color:rgb(213, 220, 226);
    color: rgb(4, 14, 107);
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-box:hover {
    will-change: transform;
    transform: scale(1.05);
}
.service-box img {
    width: 100px;
    height: auto;
    margin: 0;
}
.service-box p {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.underline {
    width: 50px;
    height: 3px;
    background: #a52a2a;
    margin: 10px auto;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    padding: 50px 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 50px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonials h2 {
    font-size: 24px;
    font-weight: bold;
    color: #a52a2a;
}

.underline {
    width: 50px;
    height: 3px;
    background: #473131;
    margin: 10px auto;
}

/* Testimonial Container */
.testimonial-container {
    margin-top: 20px;
    background-color: rgb(246, 249, 252);
    border-radius: 2px; 
}
.testimonial {
    background-color: rgb(187, 187, 180);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
}

.testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ddd;
}

.testimonial-content {
    text-align: left;
    color:black;
    font-style: italic;
}
.quote {
    font-size: 16px;
    font-style: italic;
    color: black;
}
.author {
    font-weight: bold;
    color:cornflowerblue;
    margin-top: 10px
}

.contact-button {
    background-color: lightcyan;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.contact-button:hover {
    background-color:green;
}
dropdown button:hover {
    background-color: green; /* Darker shade on hover */
}
/* Button Styling */
.dropdown button {
    background-color:green;  /* Set button color to blue */
    color: white;  /* Text color */
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.5s ease;
}
.dropdown-content a:hover {
    background-color: darkblue; /* Darker shade on hover */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
/* Footer Section */
.footer {
    background:rgb(43, 43, 44);
    color: black;
    text-align: center;
    width: 100%;
    bottom: 0;
}
#footer {
    padding: 20px;
    width: 100%;
    bottom: 0;
    border-radius: 10px;
    text-align: center;
    color: black;
    position: relative; /* Keeps footer positioned properly */
}



