/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: maroon;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 75px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

footer {
    background-color: grey;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: grey;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.hero h1 {
    margin: 0;
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
}

.hero .btn {
    background-color: maroon;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: darkred;
}

.hero h2 {
    margin: 0;
    font-size: 2.5em;
}
/* About Section */
.about {
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services ul {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
    width: 100%; /* Adjust width as needed */
    margin: 0 auto; /* Center the list within its container */
    padding: 0;
    list-style-type: none; /* Remove default list styling */
}

/* Contact Section */
.contact {
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact form {
    display: flex;
    text-align: center;
    flex-direction: column;
}

.contact form label {
    margin-top: 10px;
    text-align: center;
}

.contact form input, .contact form textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 5px;
}

.contact form button {
    margin-top: 20px, auto;
    padding: 10px;
    background-color: maroon;
    color: white;
    border: none;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

.contact form button:hover {
    background-color: darkred;
}
/* Carousel Styles */
.carousel {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    border: 5px solid maroon;
    border-radius: 10px;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    display: flex;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(128, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
}

.carousel-btn:hover {
    background-color: maroon;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* What We Do Section */
.what-we-do {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.what-we-do h2 {
    color: maroon;
    font-size: 2em;
    margin-bottom: 20px;
}

.what-we-do p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.what-we-do .btn {
    background-color: maroon;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

.what-we-do .btn:hover {
    background-color: darkred;
}

/* Social Media Section */
.social-media {
    text-align: center;
    padding: 40px 20px;
    background-color: grey;
    color: white;
}

.social-media h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.2);
}

/* Gallery Section */
.gallery {
    padding: 40px 20px;
    text-align: center;
}

.gallery h1 {
    color: maroon;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.gallery p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}
/* Navigation Styles */
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Active Link Style */
nav ul li a.active {
    text-decoration: underline;
}

.custom-line {
    border: 1px solid #9e0909; /* Black color */
    width: 50%; /* Half the width of the container */
    margin: 20px auto; /* Space above and below the line */
}