﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


a {
    font-weight: 500;
    text-decoration: none;
    font-size: 12px;
    color: black;
}
p{
    text-align:justify;
}

.dropdown {
    font-size: 12px;
}

i {
    font-size: 18px;
    position: relative;
    left: -4px;
    top: 4px;
}


header {
    width: 100%;
    position: relative;
    top: 20px;
}

.navbar_links {
    list-style-type: none;
    display: flex;
    gap: 42px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    background-color: #f9f9f9;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.contact_btn {
    padding: 14px 36px;
    background-color: #eb866b;
    border: none;
    border-radius: 32px;
    color: white;
    font-weight: 500;
    font-size: 12px;
}

.form input,
.form select,
.form textarea {
    padding: 14px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(128, 128, 128, 0.255);
    margin-top: 10px;
}

.form label {
    margin-top: 10px;
}

.form input:checked {
    border: 1px solid rgba(128, 128, 128, 0.255);
}

.service-div {
    max-height: 450px;
}

    .service-div img {
        max-height: 350px;
        min-height: 350px;
        object-fit: cover;
    }

.hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
    background: white;
    margin: 23px;
    padding: 16px 16px;
    bottom: -75px;
    position: absolute;
}

#services {
    width: 100%;
    padding: 14px;
    padding-right: 40px;
    /* space for arrow */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    /* Remove default arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Add custom arrow as background image */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23555" height="14" viewBox="0 0 20 20" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M5.516 7.548L10 12.032l4.484-4.484 1.06 1.06L10 14.152 4.455 8.607z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px 14px;
}


.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

    .dropdown-content a:hover {
        background-color: #f1f1f1;
    }

.dropdown:hover .dropdown-content {
    display: block;
}

.bg_overlay {
    background: linear-gradient(rgba(98, 69, 46, 0.6), rgba(76, 54, 38, 0.6)), url('../Images/bg1.jpg');
    position: relative;
    top: -200px;
}

header {
    position: absolute;
    top: 20px;
    z-index: 2;
}

.line-heading {
    position: relative;
    display: inline-block;
    /* keeps the line relative to the text width */
    padding-left: 100px;
    font-family: "belleza", sans-serif;
    /* space for the line */
}

    .line-heading::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 80px;
        /* length of the line */
        height: 1px;
        /* thickness */
        background-color: #eb866b;
        /* color of the line */
    }

.get_started_btn {
    padding: 14px 36px;
    background-color: #eb866b;
    border: none;
    border-radius: 32px;
    color: white;
    font-weight: 500;
    font-size: 12px;
}

.latest_project_container {
    margin: 0 0 0 90px;
}

.hero_img {
    border-radius: 50% 50% 0% 0%;
}

.hamburger_menu {
    color: #EB866B;
    font-size: 20px;
    font-weight: 600;
}

.hover:hover {
    background-color: #EB866B !important;
    color: white;
}

.about_img_1 {
    border-radius: 20px;
    object-fit: cover;
    object-position: center center;
}

.img_about_div {
    position: relative;
    width: 100%;
    padding: 25px 50px 25px 25px;
    top: -70px;
    left: 30px;
    background-color: white;
    border-radius: 20px;
    color: #696969;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.progress-container {
    width: 100%;
    max-width: 600px;
    /* margin: 20px auto; */
}

.progress-item {
    margin-bottom: 10px;
}

.progress-title {
    font-size: 16px;
    margin-bottom: 5px;
}

.progress-bar {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    height: 12px;
    position: relative;
    /* box-shadow: inset 0 0 5px #000; */
}

.progress-fill {
    height: 100%;
    width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 10px;
    /* font-weight: bold; */
    color: #fff;
    white-space: nowrap;
    animation: fillAnimation 3s linear forwards;
}

/* Bar styles with different colors and fill widths */
.bar1 .progress-fill {
    background: #EB866B;
    --fill-width: 92%;
    animation-delay: 0.2s;
}

.bar2 .progress-fill {
    background: #EB866B;
    --fill-width: 90%;
    animation-delay: 0.4s;
}

.bar3 .progress-fill {
    background: #EB866B;
    --fill-width: 89%;
    animation-delay: 0.6s;
}

.bar4 .progress-fill {
    background: #EB866B;
    --fill-width: 88%;
    animation-delay: 0.8s;
}

@keyframes fillAnimation {
    from {
        width: 0;
    }

    to {
        width: var(--fill-width);
    }
}

.progress-fill {
    border-radius: 10px;
}

.service_info {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* Number of lines you want to show */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    /* Adjust based on your text size */
    max-height: 4.5em;
}

.makeAppointment {
    background-image: linear-gradient(to bottom, rgba(24, 13, 0, 0.871), rgba(16, 8, 0, 0.921)), url('../Assets/Images/appointment_img.jpg');
    color: white;
}

.form_img {
    width: 100%;
    height: 100%;
    padding: 0px 20px;
    margin-left: 10px;
}

.hero_div {
    padding-top: 420px;
    justify-content: center !important;
    background-color: transparent;
}

.slider-container {
    margin: 0 auto;
}

.slick-slider .slide-item {
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    max-height: 210px;
}

.slide-item img {
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
}

.slick-dots li {
    display: none;
}

    .slick-dots li:nth-child(-n+3) {
        display: inline-block;
    }

.blog-btn {
    color: white;
    background-color: #EB866B;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: #eb876bd6;
    /* Orange background */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container {
    height: 270px;
}

    .image-container > img {
        height: 100%;
    }

    .image-container:hover .img-overlay {
        opacity: 1;
    }

.input-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px;
    width: 100%;
    /* Adjust as per your design */
}

.email-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 16px;
    color: #555;
    background-color: transparent;
}

.send-button {
    width: 40px;
    height: 40px;
    background-color: #EB866B;
    /* Orange color */
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .send-button i {
        position: relative;
        left: -1px;
        top: 1px;
        font-size: 20px;
        height: auto;
    }

@media (min-width:320px) and (max-width:1195px) {
    .hero_div {
        padding-top: 300px;
    }

    .latest_project_container {
        margin: 0 !important;
    }

    .whychooseCont {
        margin: 40px !important;
    }

    .last-service-div {
        max-height: 500px !important;
    }

        .last-service-div img {
            min-height: 450px !important;
            max-height: 450px !important;
        }

        .last-service-div .hover {
            /* bottom: 0 !important; */
        }

    .ourProcess {
        margin-top: -1056px !important;
        padding-top: 875px !important;
    }

    .form {
        margin: 20px !important;
        padding: 30px !important;
    }

    .form_img {
        margin-left: 0px;
    }

    .process_div {
        margin: 0 !important;
        padding: 30px;
    }

    .businessDiv {
        margin: 0 !important;
        right: 0 !important;
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .pricingDiv {
        height: 90%;
    }

    .blog-img {
        height: 420px !important;
    }

    .newsletter {
        align-items: center !important;
    }

    .hero-info-div {
        left: 0 !important;
    }

    .header-logo {
        right: 0 !important;
    }

    .header-btn {
        left: 0 !important;
    }

    .hero-info-heading {
        font-size: 62px !important;
    }



    .slider-container {
        top: 0 !important;
    }

    .carousel_container {
        margin-bottom: -120px !important;
        top: -100px !important;
    }

    .img {
        margin: 0 50px 0px 50px !important;
    }

    .service-div {
        height: 100% !important;
    }
}

@media (min-width: 320px) and (max-width:768px) {
    .hero-info-heading {
        font-size: 40px !important;
    }
}

@media (min-width: 320px) and (max-width:500px) {
    .hero-info-heading {
        font-size: 34px !important;
    }

    .last-service-div {
        max-height: 450px !important;
    }

        .last-service-div img {
            max-height: 350px !important;
            min-height: 350px !important;
        }

    .carousel_container {
        margin-bottom: -190px !important;
        top: -150px !important;
    }

    .makeAppointment {
        margin-top: 80px;
    }

    .ourProcess {
        margin-top: -892px !important;
        padding-top: 700px !important;
    }

    .line-heading {
        padding: 0 !important;
    }

        .line-heading::before {
            display: none;
        }

    .pricing {
        margin-top: 70px !important;
    }

    .ourServices {
        margin-top: 35px !important;
    }

    .img_about_div {
        top: 0 !important;
        left: 0 !important;
    }

    .bg_overlay {
        padding-bottom: 100px;
    }
}
