/* General Page Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    color: #F5F5DC; /* Off-white text */
    text-align: center;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

h1, h2 {
    color: #FFD700; /* Gold color */
}

p {
    padding: 0 15px;
}

/* Banner Styles */
.banner {
    background-color: #000; /* Black background */
    padding: 20px 0;
    text-align: center;
}

.banner-content {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    align-items: center;
}

.banner-image {
    max-width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
}

/* Services Section */
.services {
    padding: 20px;
    text-align: center;
}

.service-gallery {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on small screens */
    justify-content: center; /* Center items */
}

.service-item {
    margin: 10px;
    flex: 1 1 150px; /* Allow items to grow and shrink */
}

.service-image {
    max-width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
}

/* Contact Section */
.contact {
    padding: 20px;
    text-align: center;
}

button {
    padding: 10px 20px;
    background-color: #FFD700; /* Gold button */
    color: #000; /* Black text */
    border: none;
    cursor: pointer;
}

/* Footer Styles */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Banner Styling */

.banner-content {
    display: flex;
    align-items: center;
}

.banner-image {
    width: 190px;   /* Adjust this size based on your needs */
    height: auto;
    margin-right: 20px;  /* Adds spacing between the image and the text */
}

.banner-text {
    font-size: 1.2em;
    color: #fff;   /* Adjust text color as needed */
}

.banner {
    background-color: #F4D03F; /* Gold color */
    padding: 50px;
    position: relative;
    background: linear-gradient(90deg, #F4D03F, #000); /* Gold to black gradient */
}

.banner h1 {
    font-size: 3em;
    margin: 0;
    color: #000; /* Black for text contrast */
}

.banner p {
    font-size: 1.5em;
    color: #fff; /* White for subtext contrast */
}

/* Services Section */
.services {
    padding: 50px;
    background-color: #000;
}

.services h2 {
    font-size: 2.5em;
    color: #F4D03F;
}

.services p {
    color: #F5F5DC;
}

.service-gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.service-item {
    background-color: #111;
    border: 2px solid #F4D03F; /* Gold border */
    border-radius: 10px;
    padding: 20px;
    max-width: 250px;
    text-align: center;
}

.service-image {
    width: 210px;   /* Adjust this size based on your needs */
    height: 300px;
}

.service-item img {
    width: 210px;   /* Adjust this size based on your needs */
    height: 210px;
    border-radius: 10px;
}

.service-item p {
    margin-top: 15px;
    font-size: 1.2em;
    color: #F4D03F; /* Gold text */
}

/* Contact Section */
.contact {
    padding: 50px;
    background-color: #111;
}

.contact h2 {
    font-size: 2.5em;
    color: #F4D03F;
}

.contact p {
    margin-bottom: 20px;
    color: #F5F5DC;
}

.contact button {
    padding: 15px 30px;
    font-size: 1.2em;
    color: #000;
    background-color: #F4D03F;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #fff;
    color: #000;
    transition: 0.3s;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #111;
    color: #F5F5DC;
    font-size: 0.9em;
}
