* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
}

.logo img {
    max-height: 60px;
}


/* Ensure the header sticks to the top */

#navbar_sticky {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Ensures it stays above other content */
    background-color: #fff;
    /* Optional: background color for the sticky header */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: subtle shadow effect */
}


/* Optional: Spacing and padding for the header */

#navbar_sticky .container {
    padding: 3px 0;
}


/* Ensure the content inside the navbar is aligned properly */

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


/* Style for contact buttons */

.contact-button {
    color: #333;
    text-decoration: none;
    margin-left: 0px;
}

.contact-button i {
    margin-right: 5px;
}


/* On smaller screens, align the items better */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .contact {
        margin-top: 10px;
    }
}

.contact {
    display: flex;
    gap: 20px;
}

.contact-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #006400;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.contact-button:hover {
    background-color: #004d00;
}

.contact-button i {
    margin-right: 10px;
}

.hero {
    background-size: cover;
    background-position: center;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
}

.hero-content {
    display: flex;
    justify-content: space-between;
    width: 80%;
    z-index: 1;
    /* Place content above overlay */
}

.hero-left {
    width: 50%;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-list {
    list-style: none;
}

.contact-buttons {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding-top: 18%;
}

.hero-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 2.1rem;
}

.hero-list i {
    color: #ffd700;
    margin-right: 10px;
}

.hero-right {
    background-color: #03070494;
    text-align: center;
    align-items: center;
    border-radius: 7px;
    padding: 15px;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-right h1 {
    font-size: 35px;
    margin-bottom: 0px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
}

.contact-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #006400;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
}

.contact-button:hover {
    background-color: #004d00;
}

.contact-button i {
    margin-right: 10px;
}

.about-us .about-text .title h2 {
    font-weight: 700;
}

.about-img img {
    width: 100%;
    /* Ensure the image scales properly */
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 2rem;
    line-height: 1.2;
}

.about-tex p {
    font-size: 1rem;
    line-height: 1.6;
}

.collections h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.card {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.card-img-top {
    border-radius: 10px;
    height: 260px;
}

.card-img-service {
    border-radius: 10px;
    height: 220px;
    width: 100%;
}

.card-title {
    font-size: 1.2rem;
    margin-top: 15px;
    color: #333;
}

.stretched-link {
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
}

.stretched-link:hover {
    color: #007bff;
}

.painting-services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.ser-cart {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    /* Zoom in slightly on hover */
}

.card-body img {
    border-radius: 10px;
}

.card-title {
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    margin-top: 10px;
    color: #007bff;
}

.bi-heart {
    font-size: 1.5rem;
    color: #ff6b6b;
}

.stats-section {
    background-color: #6a1b9a;
    /* Purple background */
}

.stat-item i {
    color: #ffca28;
    /* Icon color */
}

.stat-item h2 {
    font-size: 3rem;
    margin: 0;
    color: #fff;
}

.stat-item p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #fff;
}

.card {
    border: none;
    margin-bottom: 30px;
}

.card-title {
    font-weight: bold;
}

.category {
    font-size: 14px;
    font-weight: bold;
}

.meta-info {
    font-size: 12px;
}

#servicecode {
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 4px;
    background: #021c85;
    border: 1px solid #021c85;
    color: white;
    font-weight: bold;
}

#servicechat {
    font-size: 30px;
    color: green;
    padding-top: 4px;
}

.card-text-price {
    font-size: 13px;
    margin-top: 10px;
    color: #000000;
}

.card-title-price {
    font-size: 28px;
    color: black;
    font-weight: bold;
}


/* Media Queries for Mobile Responsiveness */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .contact {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        width: 90%;
    }
    .hero-left,
    .hero-right {
        width: 100%;
        margin-bottom: 20px;
    }
    .hero-left h1 {
        font-size: 2rem;
    }
    .hero-right h1 {
        font-size: 28px;
    }
    .hero-list li {
        font-size: 1rem;
    }
    .about-text h2 {
        font-size: 1.5rem;
    }
    .about-tex p {
        font-size: 0.9rem;
    }
    .about-us {
        padding: 20px 0;
    }
    .about-img {
        text-align: center;
    }
    .about-img img {
        width: 80%;
        /* Reduce image width for smaller screens */
    }
    .about-text {
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 66vh;
    }
    .card-img-top {
        border-radius: 10px;
        height: 180px;
    }
    #categorytitle {
        font-size: 15px;
    }
    #cattitle {
        font-size: 24px;
    }
    .card-img-service {
        border-radius: 10px;
        height: 285px;
        width: 100%;
    }
    .card-text-price {
        font-size: 15px;
        margin-top: 10px;
        color: #000000;
    }
    .card-title-price {
        font-size: 30px;
        color: black;
        font-weight: bold;
    }
}

.footer {
    background-color: #eaeaea;
    color: #fff;
    padding: 16px 0;
}

.footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer ul li {
    margin: 10px 0px;
}

.footer ul li a {
    font-size: 16px;
    padding: 5px 0px;
}

.footer h5 {
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    color: black;
    font-weight: bold;
}

.footer p,
.footer a {
    color: #000000;
    font-size: 14px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    margin-right: 10px;
    font-size: 20px;
    color: #fff;
}

.footer .social-icons a:hover {
    color: #ffa500;
}

.footer .fb-section img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .footer .col-md-3 {
        margin-bottom: 20px;
    }
}

.contact-section {
    padding: 40px 0;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-info h5 {
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-info p,
.contact-info a {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.contact-info a:hover {
    color: #dc3545;
}

.social-icons a {
    font-size: 20px;
    margin-right: 10px;
    color: #dc3545;
}

.social-icons a:hover {
    color: #007bff;
}

.form-control {
    margin-bottom: 15px;
}

.btn-red {
    background-color: #dc3545;
    color: #fff;
}

.btn-red:hover {
    background-color: #c82333;
}

#FAQ {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.faq-title {
    font-weight: 700;
}

.accordian {
    width: 100%;
    margin: 0 auto;
    padding: 15px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.item {
    background-color: #e7ecf5;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    transition: background-color 0.3s ease;
}

.item.selected {
    background-color: #ffffff;
}

.item::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #06965c;
}

.FAQ-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: #131414;
}

.faqQuestion {
    font-size: 15px;
    color: #131414;
    text-align: start;
}

.FAQ-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0, 1, 0, 1);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #131414;
}

.FAQ-content.show {
    max-height: 9999px;
    transition: max-height 0.8s cubic-bezier(1, 0, 1, 0);
}

.expandToggle {
    background: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.FAQ-ShowMore {
    text-align: center;
    margin-top: 10px;
}

.FAQ-ShowMore button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: #06965c;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.FAQ-ShowMore button:hover {
    background-color: #8ee0c4;
    color: black;
    font-weight: 700;
}

.faq-text-button .faq-btn a {
    font-size: 19px;
    font-weight: 800;
    padding: 16px 14px;
    border: 1px solid red;
    color: #000;
    border-radius: 16px;
}

.faq-text-button h2 {
    font-weight: 700;
}

.faq-text-button .faq-btn a:hover {
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
    border-radius: 16px;
}


/* Responsive styles */

@media (max-width: 1024px) {
    .accordian {
        max-width: 90%;
    }
    .item {
        padding: 12px 16px;
    }
    .FAQ-title {
        font-size: 16px;
    }
    .expandToggle {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .accordian {
        padding: 10px;
    }
    .item {
        padding: 10px 14px;
    }
    .FAQ-title {
        font-size: 14px;
    }
    .expandToggle {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .accordian {
        padding: 5px;
    }
    .item {
        padding: 8px 12px;
    }
    .FAQ-title {
        font-size: 12px;
    }
    .expandToggle {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: rgb(7, 106, 7);
    border-color: rgb(7, 106, 7);
}

#AllGalleryImage {
    padding-left: 10px;
    padding-right: 10px;
}

#gallerycategoryPart {
    padding-left: 10px;
    padding-right: 10px;
}

.testimonial-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: unset;
}

@media only screen and (max-width: 768px) {
    #het {
        height: auto !important;
    }
    #mobileHide {
        display: none;
    }
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 335px !important;
    }
}

@media only screen and (max-width: 500px) {
    #het {
        height: auto !important;
    }
    #mobileHide {
        display: none;
    }
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 177px !important;
    }
}