body {
    margin: 0;
    padding: 0;
    font-family: Calibri, sans-serif;
    font-size: larger;
    padding-top: 180px;
}

.container {
    width: 80%;
    margin: 0 auto;
    
}

header {
    background-color: #333;
    height: 87px;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    position: relative;
}

header img {
    display: block;
    margin: 0 auto;
    margin-top: 20px;    
}


.phone-number {
    position: absolute;
    top: 52px; /* Adjust as needed */
    right: 30px; /* Adjust as needed */
    color: white; /* Color of the phone number */ 
    color: inherit;      
}

.hero {
    margin-top: 201px; /* Adjust top margin to account for fixed header */
    background-size: cover;
    background-position: center;
    text-align: left;
    color: #363434;   
    padding: 10px 0;    
    border-top: 3px solid #006635;
    background-color: white;
    opacity: 1;
    z-index: 2;
    

}

.container {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 20px;
    
}

.cta {
    border-top: 3px solid #006635;
    background-color: rgba(255, 255, 255, 0.2); /* Default background color with some transparency */
    transition: background-color 0.3s ease;
    padding: 125px;
    text-align: center;
    border-bottom: 3px solid #006635;
    position: relative;
    
}

h1 {
    margin-bottom: 0px;
    text-align: center;
}

.quote-btn {
    display: inline-block;
    width: 100px;    
    background-color: #ff6600;
    border:3px solid #006635;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 20px; /* Adjust as needed */
}

.quote-btn:hover {
    opacity: 0.7;
    transform: scale(1.05);
    transition: transform 0.3s ease;
    transform: opacity 0.3s ease;
}

.pay-btn {
    display: inline-block;
    width: 100px;
    background-color: #006635;
    border: 3px solid tomato;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 20px; /* Adjust as needed */
}

.pay-btn:hover {
    opacity: 0.7;
    transform: scale(1.05);
    transition: transform 0.3s ease;
    transform: opacity 0.3s ease;
}

.services {
    text-align: center;
    padding: 50px 0;
}

.services ul {
    padding: 0;
}

.services ul li {
    list-style: none;
    margin-bottom: 10px;
}

.contact {
    text-align: center;
    padding: 50px 0;
}

.description {
    color: #363434; 
    display: block;    
    margin-bottom: 20px;
    width: 100%;
}


.banner-image {
    position: fixed; /* Change to fixed positioning */
    top: 0; /* Position the image in the middle of the viewport vertically */
    left: 0; /* Position the image in the middle of the viewport horizontally */
    width: 100%; /* Set the width to cover the entire viewport */
    height: 100%; /* Allow the height to adjust proportionally */
    object-fit: cover; /* Ensure the image covers the entire area */
    z-index: -1; /* Ensure the image stays behind other content */
}

.banner {
    position: fixed;
    top: 127px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 252px;
    z-index: -0;    
}

.banner-container {
    display: flex;
    width: 100%;
    border-top: 3px solid #006635;
    margin-bottom: 0;    
}



.slide {
    display: none;    
    position: relative;
    flex: 0 0 100%;
    margin-bottom: 0;
}

.slide.active {
    display: block; 
}

.slide img {
    width: 100%;
    height: 252px; /* Ensure image height adjusts proportionally */
}

.text-overlay {
    position: absolute;
    top: 50%; /* Align the top of the text overlay with the center of the banner */
    left: 50%; /* Align the left side of the text overlay with the center of the banner */
    transform: translate(-50%, -50%); /* Center the text overlay both vertically and horizontally */
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    font-size: 18px;
    border-radius: 10px; /* Adjust the value to change the roundness */
    max-width: 80%; /* Adjust the width as needed */
    text-align: center; /* Center the text horizontally */
}

footer {
    border-top: 3px solid #006635;
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.services {
    color: #363434; 
    background-color: #f9f9f9;
    padding: 50px 0;
}

.service-container {
    color: #363434; 
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    
}

.service {
    color: #363434; 
    width: 30%;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.service img {
    width: 100%;
    height: auto;
    border-radius: 5px 5px 0 0;
}

.service img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.service p {
    margin-top: 10px;
}

.service-area {
    border-top: 3px solid #006635;
    background-color: #30d786;
    color: #363434;
    
}

.two-lists {
    display: flex;
    justify-content: center; /* Space items evenly */
    padding: 0;
}

.list {
    width: 48%; /* Adjust width as needed */    
    padding: 10px;
    margin: 0 10px;
}

.list h2 {
    margin-top: 0;
    padding: 0;
    font-size: large;
    text-align: center;

    
}

.list ul {
    padding: 0;    
    margin: 0;
    text-align: center;
    list-style: none;
}


/* Media query for smaller screens */
@media screen and (max-width: 768px) {

    header img {     
        margin-top: 15px;    
    }
    .phone-number {
        position: absolute; /* Change to absolute positioning */
        top: 90px;
        right: 50%; /* Center horizontally */
        transform: translateX(50%); /* Center horizontally */
        text-align: center; /* Center the text */
        width: auto; /* Reset width */
    }
    .service {
        width: calc(80% - 20px); /* Adjust the width to fit two items with some spacing */
    }

    .cta {
        display: flex;
        flex-direction: column;
        align-items: center; /* Align items vertically */
    }

    .quote-btn, .pay-btn {
        margin: 10px 0; /* Add space between buttons */
    }
}
@media screen and (max-width: 1501px){
    .banner {      
        width: 1501px;          
    }    
}

@media screen and (min-width: 769px) {
    .service {
        width: calc(30% - 20px); /* Adjust the width to fit three items with some spacing */
    }
}