@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

:root {
    --aBlue: #1F3C88;
    --aRed: #E1251B;
    --aWhite: #ffffff;
    --aLightWhite: #ffffffBF;
    --aLightGray: #F5F5F5;
    --aMediumGray: #9E9E9E;
    --aDarkGray: #212121;
    --aLightBlack: #212121BF;
    --aDarkBlue: #142A66;
    --aLightBlue: #4A6FD6;
    --lightyellow: #fff2cc;
    --lightblue: #eaf3ff;
    --baiJamjuree: "Bai Jamjuree", sans-serif;
    --inter: "Inter", sans-serif;
}

/* Contact Page Css Starts */
.ap-contact-container {
    max-width: 1240px;
    margin: 80px auto;
    padding: 0px 24px;
}

.ap-card {
    background-color: var(--aWhite);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 30px 14px;

}

.ap-content,
.ap-form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.ap-single-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ap-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ap-title span:last-child {
    color: var(--aDarkGray);
}

.ap-red-text {
    color: var(--aRed);
}

.ap-single-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-family: var(--inter);
    font-weight: 400;
    line-height: 1.2;
    color: var(--aLightBlack);
}

.ap-single-address a {
    color: var(--aLightBlack);
    text-decoration: none;
}

.ap-single-address a:hover {
    text-decoration: underline;
}

.ap-single-address p {
    margin-bottom: unset !important;
}

.ap-icon {
    font-size: 18px;
}

.ap-icon img {
    width: 20px;
    height: 20px;
}

/* Form */
.ap-form {
    display: flex;
    flex-direction: column;
}

.ap-form-msg {
    height: 120px;
}

.ap-btn {
    background-color: var(--aRed);
    color: var(--aWhite);
    padding: 12px;
    border: none;
    border-radius: 6px;
    transition: 0.3s;
    width: 100%;
}

.ap-btn:hover {
    background-color: #900;
}

.ap-location-map {
    height: 600px;
}

.ap-location-map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .ap-contact-container {
        padding: 0px 16px;
        margin: 60px auto;
    }

    .ap-card {
        padding: 24px 10px;
    }

    .ap-title {
        font-size: 24px;
    }

    .ap-location-map {
        height: 500px;
    }

}


@media (max-width: 767px) {

    .ap-title {
        font-size: 20px;
    }

    .ap-form-content {
        margin-top: 20px;
        gap: 12px;
    }

    .ap-single-content {
        gap: 8px;
    }

    .ap-location-map {
        height: 400px;
    }


}


@media (max-width: 575px) {
    .ap-contact-container {
        margin: 40px auto;
    }

    .ap-card {
        padding: 20px 0px;

    }

    .ap-content {
        gap: 20px;

    }

    .ap-single-address {
        font-size: 14px;
    }

    .ap-form {}

    .ap-form-content {
        gap: 12px;

    }

    .ap-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .ap-location-map {
        height: 300px;
    }

}

/* Contact Page Css Ends */

/* About Page Css Starts */
.ap-other-pages-hero-section-container {
    background-color: #041930;
    padding: 114px 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 80px;
	position: relative;
}

.ap-other-pages-hero-section-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity */
}


.ap-other-pages-hero-section {
    max-width: 720px;
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 12px;
	position: relative;
    z-index: 1;
}

.ap-other-pages-hero-section-head {
    margin-bottom: 10px !important;
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    text-align: center;
    color: var(--aWhite);
}

.ap-other-pages-hero-section-para {
    margin-bottom: 0px !important;
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: var(--aWhite);
}

.ap-after-hero-section-about {
    padding: 20px;
}

.ap-about-page-hero-section-container {
    margin-bottom: 48px !important;
}

.ap-aboutus-whole-container {
    max-width: 1240px;
    margin: auto;
    margin-bottom: 60px;
    padding: 0px 8px;
}

.ap-about-us-container-text {
    max-width: 624px;
}

.ap-mission-vision-goal-whole-color-container {
    background-color: var(--aDarkBlue);
    margin-bottom: 70px;
    padding: 166px 0px 130px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.ap-mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--aDarkGray4D);
    z-index: -1;
}

.ap-mission-vision-goal-container {
    max-width: 1240px;
    margin: auto;
    padding: 0px 8px;
}

.ap-about-us-container-text h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--baiJamjuree);
    margin-bottom: 20px !important;
}

.ap-about-us-container-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    font-family: var(--baiJamjuree);
    margin-bottom: unset !important;
    color: var(--aDarkGray);
}


.ap-about-us-container-image {
    height: 320px;
    border: 4px solid var(--aRed);
}

.ap-about-us-container-image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: contain;
}

.ap-mission-vision-goal-col {
    margin-bottom: 20px;
}

.ap-mission-vision-goal-col h3 {
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 700;
    color: var(--aWhite);
    line-height: 1.2;
    margin-bottom: 14px !important;
}

.ap-mission-vision-goal-col p {
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--aWhite);
    margin-bottom: unset !important;
}

.ap-why-choose-us-content-about p {
    -webkit-line-clamp: unset;
}

@media (max-width:1024px) {
    .ap-mission-vision-goal-whole-color-container {
        padding: 94px 0px 60px;
    }
}

@media (max-width:991px) {



    .ap-about-us-container-text h3,
    .ap-mission-vision-goal-col h3 {
        font-size: 28px;
    }

    .ap-about-us-container-image {
        height: 280px;
    }

    .ap-aboutus-whole-container {
        margin-bottom: 50px;
    }

    .ap-mission-vision-goal-whole-color-container {
        padding: 60px 0px 50px;
        margin-bottom: 60px;
    }

    .ap-after-hero-section-about .ap-after-hero-section-col-left {
        padding-left: 20 !important;
    }

}

@media (max-width: 767px) {
    .ap-about-page-hero-section-container {
        margin-bottom: 32px !important;
    }

    .ap-mission-vision-goal-whole-color-container {
        margin-bottom: 50px;
    }

    .ap-about-us-container-image {
        height: 240px;
    }

    .ap-aboutus-whole-container {
        margin-bottom: 40px;
    }


    .ap-after-hero-section-col-left {
        margin-bottom: 20px !important;
    }

    .ap-mission-vision-goal-whole-color-container {
        background-image: none;
    }

    .ap-mission-vision-goal-whole-color-container {
        padding: 40px 0px 30px;
    }

    .ap-about-us-container-text h3 {
        font-size: 24px;
        margin-bottom: 16px !important;
    }
}

@media (max-width: 575px) {
    .ap-mission-vision-goal-whole-color-container {
        margin-bottom: 40px;
    }

    .ap-about-us-container-col {
        margin-bottom: 20px !important;
    }

    .ap-about-us-container-text h3,
    .ap-mission-vision-goal-col h3 {
        font-size: 20px;
    }

    .ap-about-us-container-text p,
    .ap-mission-vision-goal-col p {
        font-size: 14px;
    }

    .ap-about-us-container-image {
        height: 200px;
        width: 200px;
        margin: auto;
    }

    .ap-about-us-container-image {
        margin-top: 16px !important;
    }

}

/* ceo section css */

.ceo-container {
    margin-bottom: 80px;
}

.ceo-sub-container {
    max-width: 1240px;
    margin: auto;
    padding: 12px 0px;
    position: relative;
}

.ceo-overlay {
    position: absolute;
    width: 70%;
    height: 100%;
    background-color: var(--aLightGray);
    z-index: -1;
    top: 0;
    left: 0;
    transform: translate(0, 0);
}

.ceo-msg-container {
    background-color: var(--aLightGray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 36px 36px 36px 92px;
}

.ceo-msg-container h3 {
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 600;
    color: var(--aDarkGray);
    line-height: 1.3;
    text-align: center;
    margin-bottom: 24px;
}

.ceo-msg-container p {
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--aLightBlack);
    margin-bottom: 12px;
}

.ap-ceo-image {
    max-width: 100%;
    width: 100%;
    height: 407px;
}

.ap-ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {

    .ceo-overlay,
    .ceo-sub-container {
        position: unset;
        transform: unset;
    }

    .ceo-container {
        background-color: var(--aLightGray);
        margin-bottom: 60px;
        padding-bottom: 40px;
    }

    .ceo-msg-container {
        padding-left: 36px;
    }

    .ceo-msg-container h3 {
        font-size: 30px;
    }

    .ap-ceo-image {
        width: 75%;
        margin: auto;
        height: 400px;
    }

    .ap-ceo-image img {
        object-position: top center;
    }
}

@media (max-width: 767px) {
    .ceo-container {
        margin-bottom: 40px;
    }

    .ceo-msg-container {
        padding: 36px 24px;
    }

    .ceo-msg-container h3 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .ap-ceo-image {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 575px) {
    .ceo-container {
        padding-bottom: 20px;
    }

    .ceo-msg-container h3 {
        font-size: 24px;
    }

    .ceo-msg-container p {
        font-size: 14px;
    }

    .ap-ceo-image {
        height: 300px;
    }
}

/* ceo section css ended */


/* About Page Css Ends */

/* product page */
.ap-product-pages-hero-section-container {
    /* margin-bottom: unset !important; */
}

.ap-product-pages-after-hero-section {
    height: 369px;
    margin-bottom: 80px;
}

.ap-product-pages-after-hero-section img {
    width: 100%;
    height: 100%;
    background-color: #d6312b;
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-size: cover;
}

.ap-product-list-container-head-black {
    margin-bottom: 25px !important;
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.2;
    text-align: center;
    color: #000000;
}

.ap-product-list-block {
    max-width: 1240px;
    margin: auto;
    margin-bottom: 10px;
}

.ap-one-product-col {
    margin-bottom: 32px !important;
}

.ap-one-product-block-ap {
    text-decoration: none;
    color: #000000;
}

.ap-one-product-pic {
    width: 100%;
    height: 295px;
}


.ap-one-product-pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.ap-one-product-title,
.ap-one-product-description {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.ap-one-product-title {
    font-weight: 400;
    margin: 16px 0px 4px !important;
    line-height: 1.2;
    font-family: var(--baiJamjuree);
    font-size: 20px;
    /* -webkit-line-clamp: 1; */
    text-transform: capitalize;
    color: #000000;

}

.ap-one-product-title:hover {
    text-decoration: underline;
}

.ap-one-product-description {
    margin-bottom: 0px !important;
    line-height: 1.2;
    font-family: var(--baiJamjuree);
    font-size: 16px;
    -webkit-line-clamp: 2;
    color: #828282;
    font-weight: 500;
}



@media (max-width: 991px) {
    .ap-one-product-pic {
        height: 250px;
    }

    .ap-other-pages-hero-section-head {
        font-size: 28px;
    }

}

@media (max-width: 767px) {


    .ap-one-product-pic {
        height: 200px;
    }

    .ap-other-pages-hero-section-head {
        font-size: 24px;
    }

    .ap-other-pages-hero-section-para {
        font-size: 14px;
    }

}

@media (max-width: 578px) {}

@media (max-width: 380px) {
    .ap-one-product-col {
        width: 100% !important;
    }
}


.ap-single-product-pages-hero-section-container {
    margin-bottom: 80px;
}

.ap-interior-paints-space-container {
    max-width: 1240px;
    margin: auto;
    margin-bottom: 50px;
    padding: 0px 8px;
}

.ap-interior-paints-header-part {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 44px;
}

.ap-interior-paints-header-part>h3 {
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    margin: unset !important;
}

.ap-interior-paints-header-part>p {
    font-family: var(--baiJamjuree);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    margin: unset !important;
}

.ap-one-product-col-custom {
    margin-bottom: 44px;
}

.ap-one-product-bg-pic {
    height: 295px;
}

.ap-one-product-bg-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    border-radius: 8px;
}

@media (max-width:991px) {
    .ap-single-product-pages-hero-section-container {
        margin-bottom: 60px;
    }

    .ap-interior-paints-header-part>h3 {
        font-size: 28px;
    }

    .ap-one-product-title {
        font-size: 18px;
    }

    .ap-one-product-bg-pic {
        height: 400px;
    }
}

@media (max-width:767px) {
    .ap-single-product-pages-hero-section-container {
        margin-bottom: 40px;
    }

    .ap-one-product-bg-pic {
        height: 350px;
    }

    .ap-interior-paints-header-part>h3 {
        font-size: 24px;
    }

    .ap-interior-paints-space-container {
        margin-bottom: 20px;
    }

    .ap-one-product-col-custom {
        margin-bottom: 30px;
    }

    .ap-one-product-title {
        font-size: 16px;
    }

    .ap-one-product-description {
        font-size: 14px;
    }
}

@media (max-width:575px) {
    .ap-interior-paints-header-part {
        margin-bottom: 30px;
    }

    .ap-interior-paints-header-part>h3 {
        font-size: 20px;
    }

    .ap-one-product-bg-pic {
        height: 300px;
    }

    .ap-interior-paints-space-container {
        margin-bottom: 10px;
    }
}

@media (max-width:425px) {
    .ap-one-product-bg-pic {
        height: 250px;
    }
}

@media (max-width:375px) {
    .ap-one-product-col-custom {
        width: 100% !important;
    }

    .ap-one-product-text {
        text-align: center;
    }
}

@media (max-width:325px) {
    .ap-one-product-bg-pic {
        height: 200px;
    }
}

/*  product page  ended*/

/* single product and blog page */

.ap-single-pages-hero-section-container {
    background-color: #e7e7e7;
    height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.ap-single-pages-hero-section-container .ap-other-pages-hero-section-head {
    color: var(--aDarkGray);
}

.ap-single-pages-hero-section-container .ap-other-pages-hero-section-para {
    color: var(--aRed);
    font-weight: 600;
}

.ap-single-blog-highlight {
    background: linear-gradient(180deg, #f2f2f2 0%, #ffffff 44%, #ffffff 100%);
    padding-bottom: 20px;
}

.ap-single-pages-hero-section-container .ap-other-pages-hero-section {
    max-width: 1240px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 0 130px;
}

.ap-how-to-repair-section {
    max-width: 1240px;
    margin: auto;
    padding: 50px 130px;
    background-color: var(--aWhite);
    box-shadow: 0px 4px 4px 0px #0000000D;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: -60px;
    margin-bottom: 60px;
    border-radius: 18px;
    border-top: 5px solid var(--aRed);
}

.ap-how-to-repair-section h1,
.ap-how-to-repair-section h2,
.ap-how-to-repair-section h3,
.ap-how-to-repair-section h4,
.ap-how-to-repair-section h5,
.ap-how-to-repair-section h6 {
    margin: unset !important;
    font-family: var(--baiJamjuree);
    color: var(--aDarkGray);
    line-height: 1.25;
}

.ap-how-to-repair-section h1 {
    font-size: 40px;
    font-weight: 700;
}

.ap-how-to-repair-section h2 {
    font-size: 36px;
    font-weight: 700;
}

.ap-how-to-repair-section h3 {
    font-size: 32px;
    font-weight: 600;
}

.ap-how-to-repair-section h4 {
    font-size: 28px;
    font-weight: 600;
}

.ap-how-to-repair-section h5 {
    font-size: 24px;
    font-weight: 600;
}

.ap-how-to-repair-section h6 {
    font-size: 20px;
    font-weight: 600;
}

.ap-how-to-repair-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.ap-how-to-repair-meta time {
    font-family: var(--baiJamjuree);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--aWhite);
    background: var(--aDarkBlue);
    border: 1px solid var(--aDarkBlue);
    border-radius: 999px;
    padding: 8px 14px;
}

.ap-how-to-repair-section p {
    margin: unset !important;
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--aLightBlack);
}

.ap-how-to-repair-section ul {
    margin: unset !important;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ap-how-to-repair-section li {
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--aDarkGray);
}

.ap-how-to-repair-section a {
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--aRed);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ap-how-to-repair-section a:hover {
    color: #980600;
}



@media (max-width: 1240px) {
    .ap-single-pages-hero-section-container .ap-other-pages-hero-section {
        padding: 0 100px;
    }

    .ap-how-to-repair-section {
        margin-left: 12px;
        margin-right: 12px;
    }
}

@media (max-width: 1200px) {
    .ap-single-pages-hero-section-container .ap-other-pages-hero-section {
        padding: 0 80px;
    }

    .ap-how-to-repair-section {
        padding: 50px 100px;
    }
}

@media (max-width: 991px) {

    .ap-single-pages-hero-section-container .ap-other-pages-hero-section {
        padding: 0 60px;
    }

    .ap-how-to-repair-section {
        padding: 40px 80px;
    }

    .ap-how-to-repair-section h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .ap-single-pages-hero-section-container {
        height: 300px;
    }

    .ap-how-to-repair-section {
        padding: 30px 50px;
    }

    .ap-how-to-repair-section h1 {
        font-size: 34px;
    }

    .ap-how-to-repair-section h2 {
        font-size: 30px;
    }

    .ap-how-to-repair-section h3 {
        font-size: 28px;
    }

    .ap-how-to-repair-section h4 {
        font-size: 24px;
    }

    .ap-how-to-repair-section h5 {
        font-size: 22px;
    }

    .ap-how-to-repair-section h6 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .ap-single-pages-hero-section-container {
        height: 300px;
    }

    .ap-single-pages-hero-section-container .ap-other-pages-hero-section {
        padding: 0 40px;
    }

    .ap-how-to-repair-section {
        padding: 30px 50px;
        border-radius: 14px;
    }

    .ap-how-to-repair-section h3 {
        font-size: 24px;
    }

    .ap-how-to-repair-section h4 {
        font-size: 22px;
    }

    .ap-how-to-repair-section h5,
    .ap-how-to-repair-section h6 {
        font-size: 20px;
    }

    .ap-how-to-repair-meta time {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .ap-single-pages-hero-section-container {
        height: 250px;
    }

    .ap-single-pages-hero-section-container .ap-other-pages-hero-section {
        padding: 0 20px;
    }

    .ap-how-to-repair-section {
        padding: 20px 12px;
        border-radius: 10px;
    }

    .ap-how-to-repair-section h3 {
        font-size: 20px;
    }

    .ap-how-to-repair-section p {
        font-size: 14px;
    }

    .ap-how-to-repair-section li,
    .ap-how-to-repair-section a {
        font-size: 14px;
    }

    .ap-how-to-repair-section h4 {
        font-size: 18px;
    }

    .ap-how-to-repair-section h5,
    .ap-how-to-repair-section h6 {
        font-size: 16px;
    }
}

/* single product page  ended*/
/* single page css */
.ap-single-product-page-container {
    max-width: 1240px;
    margin: auto;
    padding: 0px 8px;
    margin-bottom: 80px;
}

/* .ap-single-product-page-image {
    height: 430px !important;
} */

.ap-single-product-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.slider-nav {
    margin-top: 12px;
}

.slider-nav-item {
    height: 140px !important;
}

.slider-nav-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}


.ap-single-product-page-description-session h3 {
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.ap-single-product-feature-block .container-fluid,
.ap-single-product-features-col {
    padding: unset !important;
}

.ap-product-review,
.ap-single-product-feature-block h3 {
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--aDarkGray);
    margin-bottom: 12px !important;
}

.ap-product-tabs .nav-link {
    border: none;
    color: var(--aDarkGray);
    opacity: 0.7;
    font-weight: 500;
}

.ap-product-tabs .nav-link.active {
    color: var(--aDarkGray);
    opacity: 1;
}

.ap-product-desc {
    margin-bottom: 30px !important;
}

.ap-product-descp {
    font-family: var(--baiJamjuree);
    margin-bottom: unset !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--aLightBlack);
    max-width: 542px;
    max-height: calc(1.2em * 7);
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ap-product-descp.expanded {
    max-height: 1000px;
}

.ap-single-product-page-size h6 {
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--aLightBlack);
}

.ap-each-sizes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ap-each-sizes p {
    padding: 8px 10px;
    border-radius: 4px;
    color: var(--aDarkGray);
    border: 0.7px solid var(--aMediumGray);
    font-family: var(--baiJamjuree);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: unset !important;
}

.ap-single-product-page-description-session {
    padding-left: 76px;
}


.ap-read-toggle {
    color: var(--aLightBlack);
    cursor: pointer;
    font-weight: 500;
    font-family: var(--inter);
    font-size: 14px;
    display: none;
}

.ap-read-toggle:hover {
    text-decoration: var(--aLightBlue);
}

.ap-singleicon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: auto;
    background-color: #4882C3CC;
    position: relative;
}

.ap-singleicon img {
    width: 25px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ap-single-feature-section p {
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 15px;
    margin-bottom: unset !important;
    color: var(--aLightBlack);
    text-align: center;
}


@media screen and (max-width: 991px) {
    .ap-single-product-page-container {
        margin-bottom: 60px;
        padding: 0px 4px;
    }

    .ap-single-product-page-description-session {
        padding-left: 0px;
    }

    .ap-single-product-page-image {
        height: 400px !important;
    }

    .ap-single-product-page-description-session h3 {
        font-size: 28px;
    }

    .ap-product-descp {
        max-width: unset;
    }

    .ap-single-product-page-image img {
        width: 50%;
        margin: auto;
    }

    .slider-nav {
        max-width: 575px;
        width: 100%;
        margin: 10px auto 0px;
    }

    .slider-nav-item {
        height: 100px !important;
    }

}

@media screen and (max-width: 767px) {
    .ap-single-product-page-image {
        height: 350px !important;
    }

    .ap-single-product-page-description-session h3 {
        font-size: 24px;
    }

    .ap-single-product-page-container {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 575px) {
    .ap-single-product-page-image {
        height: 300px !important;
    }

    .ap-single-product-page-description-session h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .ap-product-descp,
    .ap-single-feature-section p {
        font-size: 14px;
    }

    .ap-single-product-page-container {
        margin-bottom: 20px;
    }

    .ap-each-sizes p {
        padding: 4px 6px;
        font-size: 14px;
    }

    .ap-single-product-page-image img {
        width: 100%;
        object-fit: contain;
    }

    .slider-nav-item {
        height: 80px !important;
    }

}

/* slider css */
.msjk-ap-single-product-sliderr-product-section {
    max-width: 1240px;
    margin: auto;
    margin-bottom: 80px;
}

.msjk-ap-custom-category-section {
    max-width: 1300px;
    margin: auto;
    padding: 0px 20px;
    margin-bottom: 50px;
}

.msjk-category-slider-container {
    max-width: 100%;
    margin: auto;
}

.msjk-category-slider-block {
    position: relative;
}

.msjk-ap-custom-category-heading-h2 {
    margin-bottom: 32px !important;
    text-align: center;
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    text-transform: capitalize;
}

.msjk-left-singlepage img,
.msjk-right-singlepage img {
    width: 20px;
    height: 20px;
}

.msjk-right-singlepage {
    right: 0px;
    position: absolute;
    top: 40%;
    transform: translate(0%, -50%);
    cursor: pointer;
}

.msjk-left-singlepage {
    left: 0px;
    position: absolute;
    top: 40%;
    transform: translate(0%, -50%);
    cursor: pointer;
}

.msjk-single-slider-page-image {
    color: #000000;
    font-family: "Bai Jamjuree", serif;
    text-decoration: none;
}

.msjk-product-p-text:hover {
    color: #000000;
    text-decoration: underline;
}

.msjk-category-img {
    height: 290px;
}

.msjk-category-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.msjk-category-p-text {
    font-family: var(--baiJamjuree);
    text-transform: capitalize;
    line-height: 1.2;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-weight: 400;
    font-size: 20px;
    margin-top: 16px !important;
    margin-bottom: 0px !important;
}

.msjk-category-p-decsp {
    font-family: var(--baiJamjuree);
    font-size: 14px;
    font-weight: 500;
    color: #828282;
    line-height: 1.2;
    margin: 8px 0px 0px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ap-paint-slider-img-wrapper {
    width: 100%;
/*     height: 350px; */
    position: relative;
}

.msjk-ap-slider-image-each-slider {
    max-width: 95%;
    margin: auto;
    height: 100%;
}

.msjk-one-category-col {
    margin-bottom: 32px !important;
}

.ap-single-product-demo-images {
    max-width: 95%;
    margin: auto;
    height: 100%;
}

@media (max-width: 991px) {

    .msjk-ap-single-product-sliderr-product-section {
        margin-bottom: 60px;
    }

    .msjk-ap-custom-category-heading-h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .msjk-ap-single-product-sliderr-product-section {
        margin-bottom: 40px;
    }

    .msjk-category-img {
        height: 200px;
    }

    .msjk-ap-custom-category-heading-h2 {
        font-size: 24px;
    }

    .msjk-category-p-text {
        font-size: 16px;
    }
}

@media (max-width: 575px) {

    .msjk-ap-custom-category-heading {
        margin-bottom: 25px;
    }

    .msjk-ap-custom-category-heading-h2 {
        font-size: 20px;
    }

    .msjk-category-p-decsp {
        margin-top: 4px !important;
    }

    @media (max-width: 575px) {
        .ap-single-product-demo-images {
            padding: 0px 16px;
        }
    }
}

/* slider ended css */

/* single page css ends*/

/* Career page css */
.career-opportunities-section {
    background-color: var(--aLightWhite);
    padding: 20px 0 80px;
}

.career-page-container {
    max-width: 1240px;
    margin: auto;
}

.career-section-header {
    margin-bottom: 20px;
}

.career-section-header h3 {
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--aDarkGray);
    margin-bottom: 10px !important;
}

.career-section-header p {
    font-family: var(--baiJamjuree);
    font-size: 16px;
    line-height: 1.6;
    color: var(--aDarkGray);
    margin-bottom: 0;
}

.career-section-kicker {
    display: inline-block;
    margin-bottom: 18px !important;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--lightyellow);
    color: var(--aDarkGray) !important;
    font-family: var(--baiJamjuree);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.career-opening-list {
    display: grid;
    gap: 18px;
}

.career-opening-card {
    background: var(--aWhite);
    border: 1px solid var(--aMediumGray);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.career-opening-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
}

.career-opening-card h4 {
    font-family: var(--baiJamjuree);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--aDarkGray);
    margin: 8px 0 0 !important;
}

.career-opening-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--lightblue);
    color: var(--aDarkBlue);
    font-family: var(--baiJamjuree);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.career-opening-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 14px;
}

.career-opening-meta span,
.career-opening-card p {
    font-family: var(--baiJamjuree);
    font-size: 15px;
    line-height: 1.6;
    color: var(--aDarkGray);
}

.career-opening-meta strong {
    color: var(--aDarkGray);
}

.career-opening-card p {
    margin-bottom: 0 !important;
}

.career-apply-btn,
.career-submit-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 10px;
    font-family: var(--baiJamjuree);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.career-apply-btn {
    padding: 11px 18px;
    background: var(--aRed);
    color: var(--aWhite);
    white-space: nowrap;
}

.career-apply-btn:hover {
    background: var(--aRed);
    color: var(--aWhite);
    transform: translateY(-1px);
}

.career-resume-card {
    background: var(--aDarkBlue);
    color: var(--aWhite);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(15, 47, 74, 0.2);
}

.career-section-header-light h3,
.career-section-header-light p {
    color: var(--aWhite);
}

.career-resume-form .form-label {
    font-family: var(--baiJamjuree);
    font-size: 14px;
    font-weight: 600;
    color: var(--aWhite);
    margin-bottom: 8px;
}

.career-form-control {
    min-height: 48px;
    border-radius: 12px;
    border: 1px solid var(--aLightWhite);
    background: var(--aLightGray);
    color: var(--aDarkGray);
    font-family: var(--baiJamjuree);
}

.career-form-control:focus {
    border-color: var(--aWhite);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--aWhite);
}

.career-form-control option {
    color: var(--aDarkBlue);
}

.career-ap-textarea {
    min-height: 120px !important;
    height: 120px !important;

}

.career-submit-btn {
    width: 100%;
    min-height: 50px;
    background: var(--aRed);
    color: var(--aWhite);
}

.career-submit-btn:hover {
    background: var(--aWhite);
    color: var(--aRed);
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .career-section-header h3 {
        font-size: 28px;
    }

    .career-resume-card {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .career-opportunities-section {
        padding-bottom: 60px;
    }

    .career-opening-card-top {
        flex-direction: column;
    }

    .career-apply-btn {
        width: 100%;
    }

    .career-opening-card,
    .career-resume-card {
        border-radius: 16px;
    }
}

@media (max-width: 575px) {
    .career-section-header h3 {
        font-size: 24px;
    }

    .career-opening-card {
        padding: 20px;
    }

    .career-resume-card {
        padding: 20px;
    }
}

/* End of the career page */

/* color technique section */
.about-the-technique-container {
    max-width: 1240px;
    margin: auto;
    margin-bottom: 70px;
}

.color-technique-blogs .say-about-blogs-heading {
    max-width: 570px;
}

.ap-about-the-technique-text-section h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--baiJamjuree);
    margin-bottom: 20px !important;
}

.ap-about-the-technique-text-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--baiJamjuree);
    margin-bottom: unset !important;
}

.ap-about-the-technique-video iframe {
    width: 100%;
    height: 450px;
}

@media (max-width: 991px) {
    .about-the-technique-container {
        margin-bottom: 50px;
    }

    .say-about-blogs-heading {
        padding: 0px 12px;
    }

    .ap-about-the-technique-text-section h3 {
        font-size: 28px;
        margin-bottom: 8px !important;
    }

    .ap-about-the-technique-video iframe {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .about-the-technique-container {
        margin-bottom: 42px;
    }

    .ap-about-the-technique-video iframe {
        height: 350px;
    }
}

@media (max-width: 575px) {
    .about-the-technique-container {
        margin-bottom: 36px;
    }

    .ap-about-the-technique-text-section h3 {
        font-size: 20px;
    }

    .ap-about-the-technique-text-section p {
        font-size: 14px;
    }

    .ap-about-the-technique-video iframe {
        height: 300px;
    }
}

/* color technique section ended*/

/* News Page css */
.ap-news-container-wrapper {
    max-width: 1240px;
    margin: auto;
    padding: 0px 8px;
    margin-bottom: 80px;
}

.ap-news-container a {
    text-decoration: none;
}

.ap-news-head-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ap-news-heading {
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
    color: #000000;
    padding-top: 12px;
    margin-bottom: 12px;
    text-align: center;
    position: relative;
}

.ap-news-para {
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000cc;
    text-transform: capitalize;
    padding-bottom: 32px;
    text-align: center;
    width: 75%;
    margin: auto;
}

.ap-news-card-image {
    /* max-width: 265px; */
    width: 100%;
    height: 200px;
}

.ap-news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ap-news-title {
    font-family: var(--baiJamjuree);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #000000;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 28px 0px;
}

.ap-news-title:hover {
    text-decoration: underline;
}

.ap-news-date {
    font-family: var(--inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #000000cc;
}

.ap-news-sub-title {
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
    text-transform: capitalize;
    margin-bottom: unset !important;
}

.ap-news-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
}

.ap-news-single-row {
    row-gap: 28px !important;
}

@media (max-width: 991px) {
    .ap-news-container-wrapper {
        padding: 0px 4px;
        margin-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .ap-news-container-wrapper {
        margin-bottom: 40px;
    }

    .ap-news-para {
        width: 90%;
    }

    .ap-news-title {
        margin: 18px 0px 20px;
    }
}

@media (max-width: 575px) {
    .ap-news-heading {
        font-size: 28px;
    }

    .ap-news-para {
        width: 95%;
        font-size: 14px;
        padding-bottom: 24px;
    }

    .ap-news-card-image {
        min-height: 200px;
    }

    .ap-news-title {
        margin: 14px 0px 16px;
    }
}

/* End of the News css */

/* Single News Page Starts */
.ap-single-news-container {
    max-width: 1240px;
    margin: 80px auto;
    padding: 0px 24px;
}

.ap-single-news-container-h2 {
    font-family: var(--baiJamjuree);
    color: var(--aDarkGray);
    font-weight: 600;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px !important;
}

.ap-single-news-content-description {
    font-family: var(--inter);
    color: var(--aDarkGray);
    opacity: 0.7;
    font-size: 400;
    font-size: 16px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ap-single-news-content-image {
    height: 450px;
    margin: 20px 0px;
}

.ap-single-news-content-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .ap-single-news-container {
        padding: 0px 16px;
        margin: 60px auto;
    }


    .ap-single-news-container-h2 {
        font-size: 28px;
        margin-bottom: 16px !important;
    }

    .ap-single-news-content-description {
        gap: 14px;
    }

    .ap-single-news-content-image {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .ap-single-news-container {
        margin: 40px auto;
    }

    .ap-single-news-container-h2 {
        font-size: 24px;
        margin-bottom: 14px !important;
    }

    .ap-single-news-content-description {
        font-size: 14px;
        gap: 12px;
    }

    .ap-single-news-content-image {
        height: 350px;
        margin: 16px 0px;

    }
}

@media (max-width: 575px) {

    .ap-single-news-container-h2 {
        font-size: 20px;
        margin-bottom: 12px !important;
    }

    .ap-single-news-content-description {
        font-size: 14px;
        gap: 10px;
    }

    .ap-single-news-content-image {
        height: 300px;
    }
}

/* Single News Page Ends */

/* How Asia Buddha Paints makes International Standard Paints Section Starts */

.ap-intern-std-section {
    background-color: var(--aLightGray);
    padding: 80px 0px;
    margin-bottom: 80px;
}

.ap-intern-std-container {
    max-width: 1240px;
    margin: auto;
    padding: 0px 8px;
}


.ap-intern-std-container h2 {
    font-family: var(--baiJamjuree);
    color: var(--aDarkGray);
    font-size: 700;
    font-size: 32px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 24px !important;
}

.ap-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ap-tab {
    position: relative;
    padding: 14px 16px 14px 24px;
    cursor: pointer;
    color: var(--aDarkGray);
    transition: 0.3s ease;
}

.ap-tab::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--aMediumGray);
    border-radius: 50%;
    transition: 0.3s ease;
}

.ap-tab:hover {
    color: var(--aRed);
}

.ap-tab:hover::before {
    background: var(--aRed);
}

.ap-tab.active {
    color: var(--aRed);
    font-weight: 500;
}

.ap-tab.active::before {
    background: var(--aRed);
}

.ap-tabs li {
    width: 100%;
    padding: 16px;
    border-right: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    font-family: var(--baiJamjuree);
    font-weight: 500;
    font-size: 18px;
}

.ap-intern-std-img {
    overflow: hidden;
    height: 250px;
}

.ap-intern-std-img img {
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

.ap-intern-std-content {
    transition: opacity 0.3s ease;
}

.ap-intern-std-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--aDarkGray);
    font-family: var(--baiJamjuree);
}

.ap-intern-std-content p {
    font-size: 16px;
    line-height: 1.3;
    color: var(--aLightBlack);
    font-family: var(--inter);
}

@media (max-width: 991px) {
    .ap-intern-std-section {
        padding: 60px 0px;
        margin-bottom: 60px;
    }

    .ap-intern-std-container {
        padding: 0px 4px;
    }


    .ap-intern-std-container h2 {
        font-size: 28px;
        margin-bottom: 20px !important;
    }

    .ap-intern-std-section .ap-intern-std-row {
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .ap-tabs {
        margin-bottom: 20px;
    }

    .ap-intern-std-col:nth-child(1) {
        width: 100% !important;

    }

    .ap-intern-std-col:nth-child(2),
    .ap-intern-std-col:nth-child(3) {
        width: 50% !important;
    }
}

@media (max-width: 767px) {
    .ap-intern-std-section {
        padding: 40px 0px;
        margin-bottom: 40px;
    }

    .ap-intern-std-container h2 {
        font-size: 24px;
        margin-bottom: 16px !important;
    }

    .ap-tabs li {
        font-size: 16px;
    }

    .ap-intern-std-content h4 {
        font-size: 16px;
    }

    .ap-intern-std-content p {
        font-size: 14px;
    }

}

@media (max-width: 575px) {
    .ap-intern-std-container h2 {
        font-size: 20px;
        margin-bottom: 12px !important;
    }

    .ap-intern-std-col:nth-child(2),
    .ap-intern-std-col:nth-child(3) {
        width: 100% !important;
    }

}

/* How Asia Buddha Paints makes International Standard Paints Section Ends */

/* Project Page Css Starts */

.ap-project-section {
    max-width: 1240px;
    margin: auto;
    padding: 0px 8px;
    margin-bottom: 80px;
}

.ap-row {
    row-gap: 30px;
}

.ap-project-card {
    cursor: pointer;
}

.ap-project-img {
    height: 250px;
    overflow: hidden;
}

.ap-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.ap-project-card:hover img {
    transform: scale(1.08);
}

.ap-project-content {
    padding-top: 12px;
}

.ap-project-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin: unset !important;
    margin-bottom: 6px !important;
    font-family: var(--baiJamjuree);
    color: var(--aDarkGray);
    line-height: 1.25;
}

.ap-project-content p {
    font-size: 16px;
    font-weight: 400;
    margin: unset !important;
    font-family: var(--inter);
    color: var(--aLightBlack);
    line-height: 1.3;
}

.ap-modal-content {
    background: transparent;
    border: none;
    text-align: center;
}

.ap-modal-body img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.ap-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    z-index: 10;
    cursor: pointer;
}

@media (max-width: 991px) {
    .ap-project-section {
        padding: 0px 4px;
        margin-bottom: 60px;
    }

    .ap-row {
        row-gap: 24px;
    }
}

@media (max-width: 767px) {
    .ap-project-section {
        margin-bottom: 40px;
    }

    .ap-row {
        row-gap: 20px;
    }

    .ap-project-content h5 {
        font-size: 18px;
    }

    .ap-project-content p {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .ap-row {
        row-gap: 16px;
    }

    .ap-project-content h5 {
        font-size: 16px;
    }
}

/* Project Page Css Ends */