/* styles.css */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    background-image: url('images/background-image.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 20px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d9534f;
}

.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    margin-left: 10px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.marquee-container {
    background-color: #d9534f;
    color: #fff;
    padding: 10px 0;
}

.hero {
    background: url('images/background-image.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
}

.hero-background {
    background-image: url('images/background-image.jpg');
    background-size: 100% 300px; /* 100% width and 300px height */
    background-repeat: no-repeat;
    background-position: center;
    height: 300px; /* Adjust height as needed */
    width: 100%;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.dots {
    text-align: center;
    padding: 10px 0;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

section {
    padding: 60px 20px;
}

section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 1px;
}

section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

section ul {
    list-style-type: none;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
}

section ul li {
    margin-bottom: 10px;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #555;
}

/* Gallery Section: 2x2 grid with larger images */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
}

.gallery-container img {
    width: 100%;
    height: auto;
    max-width: 500px; /* Adjust this value to control the image size */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

#contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-form label {
    font-size: 18px;
    margin: 10px 0 5px;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

#contact-form button {
    padding: 10px 20px;
    font-size: 18px;
    color: #fff;
    background-color: #d9534f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #c9302c;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

footer .footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

footer .footer-section {
    margin: 20px 0;
}

footer .footer-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

footer .footer-section p, footer .footer-section ul, footer .footer-section a {
    font-size: 18px;
}

footer .footer-section ul {
    list-style: none;
    padding: 0;
}

footer .footer-section ul li {
    margin-bottom: 10px;
}

footer .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-section ul li a:hover {
    color: #d9534f;
}

footer .footer-section .social a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s;
}

footer .footer-section .social a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    border-top: 1px solid #444;
    margin-top: 20px;
}

/* Existing styles.css content... */

.faq h1 {
    font-size: 32px; /* Adjust as needed */
    margin-bottom: 20px;
}

.faq h2 {
    font-size: 28px; /* Adjust as needed */
    margin-bottom: 15px;
}

.header-image {
    width: 33%; /* or specific width */
    height: auto; /* to maintain aspect ratio */
    margin-bottom: 20px; /* spacing between image and first header */
}



