body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    scroll-behavior: smooth;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
}


.logo img {
    width: 80px;
    border-radius: 50px;
    margin-left:50px;
    margin-bottom: 5px;
    margin-top: 10px;
}

.logo p {
    display: block;
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin-top: 5px;
    margin-left: 25px;
}
header nav {
    display: flex !important;
    justify-content: flex-end;
    flex-grow: 1;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: right;
    margin-top: -90px;
}

nav ul li {
    margin: 0 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 25px;
}

nav ul li a:hover {
    color: #ffcc00;
}
.close-btn {
    display: none;
}
.menu-toggle {
    color:white !important;
    display: none;
    font-size: 24px;
    cursor: pointer;
}
.quote-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;

    background-color: #795C34;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

    border-radius: 999px; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    transition: all 0.3s ease;
    white-space: nowrap;
}

.quote-button:hover {
    background-color: #A37E4D;
    color: #ffcc00;
    transform: scale(1.05);
}


h2{
    font-size: 40px;
}

.quote-section {
    padding: 50px 0;
    background-color: #f4f4f4;
}

.quote-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.quote {
    flex: 1;
    font-size: 38px;
    font-family: 'Arial', sans-serif;
    color: #585858;
    opacity: 0; 
}

.image {
    flex: 0 0 auto;
    padding-right: 45px;
    opacity: 0; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.quote-section.animate .quote {
    animation: slideInLeft 1s ease-out forwards;
}

.quote-section.animate .image {
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.3s;
}



#about {
    text-align: center;
    padding: 50px 20px;
    background: #A2936F;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.3);
}


.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    text-align: left;
}

.about-content img {
    width: 40%;
    max-width: 350px;
    border-radius: 10px;
    border: 5px solid black;
}

.about-content p {
    width: 55%;
    font-size: 24px;
    line-height: 1.6;
    color: #333;
}

#services {
    text-align: center;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

#services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/serviceback.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: -1;
}


#services h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.services-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;  
    max-width: 1200px;
    margin: 0 auto;  
    justify-content: space-between;
}
.service-item:nth-child(4) {
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 30%;  
    box-sizing: border-box;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);  
    background-color: #ffcc00;
    color: #fff;
}

.service-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

#why-choose-us {
    padding: 50px 27px;
    background-color: #f4f4f4;
    text-align: center;
}

.why-choose-us-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.text-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.text-content ul {
    padding: 0;
    margin: 0;
}

.text-content li {
    font-size: 18px;
    line-height: 1.6;
    color: #795C34;
    margin-bottom: 15px;
}

.text-content li strong {
    font-weight: bold;
}

.image-content {
    flex: 1;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-content img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-content img:hover {
    transform: scale(1.05); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);  
}

.slider-container {
    position: relative;
    width: auto;
    height: 300px;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 20px;
    animation: slide 25s linear infinite;
    width: max-content;
    height: 100%;
}

.slider img {
    width: auto;
    height: 100% ;
    object-fit: contain;
}
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

#contact {
    padding: 80px 20px;
    background-image: url('../images/contactus.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    background-attachment: fixed;
    text-align: center;
}

.contact-us-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    padding: 50px 27px;
    margin: 0 auto;
    gap: 40px;
}

.contact-text {
    flex: 1;
    padding: 20px;
    max-width: 550px;
    color: #fff;
}

.contact-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    font-style: italic;
    text-decoration: underline;
    color: #ff6600; 
}

.contact-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #e0e0e0;
}

.contact-form {
    flex: 1;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7); 
    border-radius: 12px;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #ff6600;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #cc5200;
}

.contact-form button {
    padding: 12px 24px;
    font-size: 18px;
    color: white;
    background-color: #ff6600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #cc5200;
    transform: scale(1.05);
}


footer {
    background-color: #333;  
    color: white;
    padding: 50px 27px;
    text-align: center;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:50px ;
    margin-left: 20px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    border-radius: 80px;
    margin-bottom: 10px; 
}

.instagram-logo {
    font-size: 40px;
    color: #E4405F;
}


.footer-copyright {
    margin-top: 10px;
}
.footer-copyright p {
    font-size: 16px;
    margin: 0;
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
    background-color: black;
    color: white;
    text-align: left;
}

.modal.show .modal-dialog {
    transform: none;
    width: 100%;
    max-width: 1000px;
}

.modal-header{
    background-color: black;
}
.modal-header .close {
    border: none;
    color: #fff;
    font-size: 20px;
    width: 43px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    opacity: 1;
}

.modal-header .close:hover {
    background-color: #ffcc00;
}