/* ======================== General Body Styles ======================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* ======================== Full Width Header Styles ======================== */
header {
    background-color: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
    position: relative;
    width: 100%;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
header .logo {
    display: inline-block;
}

header .logo a {
    text-decoration: none;
    display: inline-block;
}

header .logo img {
    width: 80px;
    height: 80px;
}

/* ======================== Navigation Menu Styles ======================== */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

/* ======================== Dropdown Menu Styles ======================== */
nav ul li ul {
    display: none; /* Hide dropdown items */
    position: absolute;
    background-color: #444;
    padding: 10px 0;
    top: 100%;
    left: 0;
    z-index: 10; /* Ensure dropdown is on top of the header image */
}

nav ul li:hover ul {
    display: block; /* Show dropdown on hover */
}

nav ul li ul li {
    display: block;
    margin: 0;
    padding: 10px 20px;
}

nav ul li ul li a {
    color: white;
    text-decoration: none;
}

nav ul li ul li a:hover {
    background-color: #555;
}

/* ======================== Hamburger Menu for Mobile ======================== */
.hamburger {
    display: none;
    position: absolute;
    right: 15px; /* Keep the hamburger to the right */
    top: 15px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

/* ======================== Mobile Menu Styles ======================== */
.mobile-menu {
    display: none; /* Initially hide mobile menu */
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: #333;
    z-index: 1000;
}

.mobile-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin: 10px 0;
}

.mobile-menu ul li a {
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    display: block;
}

.mobile-menu.open {
    display: block; /* Only display when hamburger is clicked */
}

/* ======================== Responsive Styles for Mobile ======================== */
@media only screen and (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    header .logo {
        margin-left: 10px;
    }

    nav ul {
        display: none; /* Hide desktop menu on mobile */
    }
}

/* ======================== Header Image Styles ======================== */
.header-image {
    position: relative;
    width: 100%;
    height: 400px; /* Max height for header */
    overflow: hidden; /* Ensure excess is hidden */
    z-index: 1; /* Ensure the image stays below the dropdown */
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area while trimming excess */
    object-position: center; /* Centers the image */
}

/* Responsive adjustments for smaller screens */
@media only screen and (max-width: 768px) {
    .header-image {
        height: 250px; /* Set a lower height for mobile */
    }
}

/* ======================== Content Margins for All Screens ======================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (max-width: 1200px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* ======================== Footer Styles ======================== */
footer {
    width: 100%;
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ======================== Contact Us Form Styles ======================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button[type="submit"]:hover {
    background-color: #555;
}

/* ======================== Contact Us Form Responsive Styles ======================== */
@media only screen and (max-width: 768px) {
    .contact-form {
        padding: 10px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form select,
    .contact-form textarea {
        padding: 8px;
        font-size: 14px;
    }

    .contact-form button[type="submit"] {
        padding: 10px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 480px) {
    .contact-form {
        padding: 5px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form select,
    .contact-form textarea {
        padding: 6px;
        font-size: 12px;
    }

    .contact-form button[type="submit"] {
        padding: 8px;
        font-size: 14px;
    }
}

/* ======================== Confirmation Page Styles ======================== */
.confirmation {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirmation h2 {
    margin-bottom: 20px;
}

.confirmation p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* ======================== General Navigation Menu Styles ======================== */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

/* ======================== Dropdown Menu Styles ======================== */
nav ul li ul {
    display: none; /* Hide dropdown items */
    position: absolute;
    background-color: #444;
    padding: 10px 0;
    top: 100%;
    left: 0;
    z-index: 10;
    width: 200px; /* Adjust dropdown width */
}

nav ul li:hover ul {
    display: block; /* Show dropdown on hover for desktop */
}

nav ul li ul li {
    display: block;
    margin: 0;
    padding: 10px 15px;
}

nav ul li ul li a {
    color: white;
    text-decoration: none;
}

nav ul li ul li a:hover {
    background-color: #555;
}

/* ======================== Mobile Menu Styles ======================== */
.mobile-menu {
    display: none; /* Hide mobile menu initially */
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: #333;
    z-index: 1000;
}

.mobile-menu.open {
    display: block; /* Show mobile menu when clicked */
}

.mobile-menu ul {
    display: block;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin: 10px 0;
}

.mobile-menu ul li ul {
    display: none; /* Hide dropdown items in mobile by default */
    position: relative;
}

.mobile-menu ul li ul li {
    margin-left: 15px;
}

.mobile-menu ul li:hover ul {
    display: block; /* Show dropdown items on click in mobile */
}

/* ======================== Hamburger Menu Styles ======================== */
.hamburger {
    display: none;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

/* ======================== Responsive Styles for Mobile ======================== */
@media only screen and (max-width: 768px) {
    nav ul {
        display: none; /* Hide desktop menu in mobile */
    }

    .hamburger {
        display: block; /* Show hamburger icon */
    }

    .mobile-menu ul {
        display: block;
    }
}

/* ======================== Content Container Margins ======================== */
.container {
    max-width: 1200px; /* Set maximum width for the content */
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Responsive Adjustments for Mobile Content */
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 5px;
        padding-right: 5px;
    }
}
/* ======================== Testimonial Section ======================== */
.testimonials {
    text-align: center;
    padding: 50px 0;
    background-color: #f4f4f4;
}

.testimonials h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.testimonial-item p {
    font-size: 1.1em;
    line-height: 1.5;
    color: #333;
}

.slick-dots li button:before {
    color: #333; /* Color for slider dots */
}

.slick-prev:before, .slick-next:before {
    color: #333; /* Color for navigation arrows */
}
/* Ensure pagination dots are in one line */
.slick-dots {
    display: flex !important;
    justify-content: center; /* Center the dots */
    align-items: center;
    margin-top: 15px; /* Add spacing above dots */
}

.slick-dots li {
    display: inline-block; /* Ensure each dot is inline */
    margin: 0 5px; /* Space between dots */
}

.slick-dots li button:before {
    font-size: 12px;
    color: #333; /* Dot color */
}
/* ======================== Testimonial Section Ends Here======================== */