/* Reset and basic styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Header */
header {
    background-color: #333;
    padding: 20px 0;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 80%; /* Adjust the width as needed */
    height: auto;
    max-width: 600px;
    display: block;
    margin: 0 auto;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #ffb94f;
    background-color: #444;
    border-radius: 5px;
}

nav ul li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ffb94f;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

nav ul li a:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Hero Section */
.hero {
    background-color: #0078D7;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-top: 50px;  /* Adjust the top margin to push it down */
    margin-bottom: 20px;
    line-height: 1.4;  /* Add some space between lines to improve readability */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;  /* Add line height for clarity */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;  /* Add some padding for a cleaner look */
}


.btn-primary {
    background-color: #ffb94f;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #f39c42;
}



/* Services Section */
.services {
    display: flex;
    flex-direction: column;  /* Stack heading on a new line */
    align-items: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;  /* Reduce margin to push items closer */
    width: 100%;
}

.service-list {
    display: flex;
    justify-content: center;  /* Align services in one line */
    flex-wrap: wrap;  /* Allow wrapping on small screens */
    gap: 20px;
}

.service-item {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 300px;
    width: 100%;
    margin-bottom: 20px;
}

.service-item:hover {
    background-color: #0078D7;
    color: white;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
}



/* Visit Us Section */
.visit-us {
    padding: 60px 20px;
    background-color: #333;
    color: white;
}

.visit-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.visit-us p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.visit-us .address {
    font-size: 1rem;
    text-align: center;
    font-style: italic;
}

.visit-us .contact {
    text-align: center;
    font-size: 1rem;
}

.visit-us .contact a {
    color: #ffb94f;
    text-decoration: none;
    font-weight: bold;
}

.visit-us .contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Slick Slider Customization */
.slick-prev, .slick-next {
    background-color: #ffb94f;
    border-radius: 50%;
    padding: 10px;
}

.slick-prev:hover, .slick-next:hover {
    background-color: #f39c42;
}
