@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&amp;display=swap');


* {
    font-family: "Mulish", sans-serif;
}


a {
    text-decoration: none !important;
}






.sticky {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    animation: sticky 2s;
    box-shadow: 0px -1px 4px 0px;
}


img.header-logo {
    width: 240px;
}



.navbar {
    background-color: #fff;
}

.navbar-brand {
    color: #fff;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #000;
}

.navbar-toggler {
    border: none;
    color: #fff;
}

.navbar-collapse {
    background-color: #fff;
}



.navbar-collapse .nav-link {
    display: flex;
    align-items: center;
}

.navbar-collapse .nav-link i {
    margin-right: 8px;
}

.close-toggler {
    display: flex;
    justify-content: end;
    padding: 10px;
}

.close-toggler button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
}




ul.navbar-nav.ms-auto {
    gap: 42px;
}

.form-content p {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}



.hero-section {
   background: linear-gradient(to bottom, #0000009c, #021828), url(../img/home-bg.jpg);
    color: #fff;
    position: relative;
    height: 645px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: 50% 42%;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content .text-content {
    flex: 1;
    padding: 20px;
}

.hero-content .text-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content .text-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-content .form-content {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 82%);

       background: linear-gradient(45deg, #2f675e, #2f675e);
}


ul.qlt {
    margin: 19px 0px;
    padding: 0px 0px;
    font-size: 18px;
    line-height: 36px;
}


.form-content h2 {
    margin-bottom: 20px;
    color: #000;
    font-size: 16px;
}

.form-content .form-group {
    margin-bottom: 10px;
    position: relative;
}


.msg-content {
    margin-bottom: 15px;
    position: relative;
}

.form-content .form-group i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #2f675e;
}


.msg-content i {
    position: absolute;
    top: 19% !important;
    left: 10px;
    transform: translateY(-50%);
    color: #007bff;
}

.form-content .form-control {
    padding-left: 40px;
    box-shadow: none;
}






button.btn.btn-primary.w-100 {
    background: #226b93;
    border: none;
}




.about-us-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-us-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #194060;
    margin-bottom: 30px;
    font-weight: bold;
}

.about-us-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.about-us-section .content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.about-us-section .card {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s;
    border-top: 15px solid #2f675e;
    position: relative;
}




.about-us-section .card h3 {
    font-size: 1.2rem;
    color: #194060;
    margin-bottom: 15px;
}

.about-us-section .card p {
    font-size: 1rem;
    color: #555;
}







.why-us-section {
    padding: 60px 0px;
    background-color: #343a40;
}

.why-us-section .why-us-title {
    text-align: center;
    margin-bottom: 40px;
    color: #194060;
}

.why-us-section .why-us-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #194060;
}

.why-us-section .card {
    border: none;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 10px;
}

.why-us-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.why-us-section .card .icon {
   /* animation: shake 1.5s infinite;*/
    margin-bottom: 15px;
}


.why-us-section .icon img {
    width: 72px;
}

@keyframes shake {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(2px, -2px);
    }

    50% {
        transform: translate(-2px, 2px);
    }

    75% {
        transform: translate(2px, 2px);
    }
}

.why-us-section .card-body {
    text-align: center;
}

.why-us-section .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.why-us-section .card-text {
    font-size: 0.95rem;
    color: #666;
}





.certification-section {
    padding: 45px 0px 20px 0px;
    background-color: #032a50;
}

.certification-section .certification-title {
    text-align: center;
    margin-bottom: 40px;
}

.certification-section .certification-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

.certification-section .certification-title p {
    color: #fff;
    font-size: 1rem;
}

.certification-section .process-step {
    display: flex;
    align-items: center;
   
    opacity: 1;
}



.certification-section .step-icon {
    font-size: 40px;
    color: #ffffff;
    background: linear-gradient(135deg, #eac532, #2f675e);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
}

.certification-section .step-content h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.certification-section .step-content p {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0px;
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eac532;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-bottom: 20px;
}



.documents-section {
    padding: 30px 0px;
    background-color: #ffffff;
}

.documents-section .documents-title {
    text-align: center;
    margin-bottom: 20px;
}

.documents-section .documents-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2f675e;
}

.documents-section .documents-title p {
    color: #666;
    font-size: 1rem;
}


.documents-section .document-card {
    background: linear-gradient(45deg, #2f675e, #eac532);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.documents-section .document-card:hover {
    transform: scale(1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.documents-section .document-icon {
    font-size: 50px;
    color: #ffffff;
    background: linear-gradient(135deg, #226b93, #226b93);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.documents-section .document-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.documents-section .document-desc {
    font-size: 0.95rem;
    color: #ffffff;
}





.certificates-section {
    display: flex;
    padding: 40px 20px;
}

.certificates-title {
    text-align: center;
    margin-bottom: 20px;
}

.certificates-title h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #226b93;
}

.certificates-title p {
    font-size: 1rem;
    color: #666;
}


/* Left Tab Navigation */
.certificates-section .tab-nav {
    width: 20%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    height: 20%;
}

.certificates-section .tab-nav button {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: none;
    background-color: #226b93;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    color: #fff;
}

.certificates-section .tab-nav button.active {
    background-color: #2f675e;
    color: #fff;
}



.certificates-section .certificates-content {
    width: 80%;
    margin-left: 20px;
}



.certificates-section .certificate-card {
    background-color: #fff;
    width: 100%;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.certificates-section .certificate-card:hover {
    transform: scale(1.05);
    background-color: #226b93;
    color: #fff;
}

.certificates-section .certificate-card i {
    font-size: 2.5rem;
    color: #2f675e;
    margin-bottom: 15px;
    transition: color 0.3s ease-in-out;
}

.certificates-section .certificate-card:hover i {
    color: #fff;
}

.certificates-section .certificate-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #000;
}

.certificates-section .certificate-card p {
    font-size: 1rem;
    margin: 0;
    color: #000;
}

.certificates-section .certificate-details {
    font-size: 0.9rem;
    color: #555;
    margin-top: 10px;
}


.certificates-section .certificate-card:hover .certificate-details {
    color: #fff;
}


i.fas.fa-external-link-alt.ms-2 {
    font-size: 15px;
    color: #226b93;
}



.certificates-section .certificate-card:hover a {
    color: #eac532;
}


.certificates-section .certificate-card:hover i.fas.fa-external-link-alt.ms-2 {
    color: #eac532;
}

.contact_us .contact-card {
    height: 100%;
}

.contact_us .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact_us .contact-icon {
    font-size: 40px;
    color: #2f675e;
}

.contact_us h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
}


.certificate-card a {
    color: #226b93;
    font-size: 18px;
}




footer {
    background-color: #000;
    color: white;
    padding: 40px 0px 1px 0px;
}


footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
   
    width: fit-content;
    color: #2f675e;
}

.footer-section {
    margin-bottom: 20px;
}

.social-icons i {
    font-size: 20px;
    color: white;
    margin-right: 10px;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: #eac532;
}



.footer-bottom p {
    margin-bottom: 0px;
}


footer .em {
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .em i {
    font-size: 20px;
    font-weight: 400;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2f675e, #eac532);
    display: flex;
    justify-content: center;
    align-items: center;
}


i.fas.fa-arrow-circle-right.me-1.color-theme-2 {
    color: #31e2bb;
}



@media (max-width: 767.98px) {
    .hero-section {
        background: linear-gradient(to bottom, #000000c9, #0000009c), url(../img/home-bg.jpg);
        height: 100%;
        overflow: hidden;
        background-position: 36% 50%;
    }

    .social-icons {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-top: 15px;
        /* display: none !important; */
    }


    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #eac532;
        margin-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        padding-bottom: 0px;
    }

    .hero-content .form-content {
        flex: 1;
        padding: 10px 10px 22px 10px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgb(0 0 0 / 82%);
        animation: slideIn 2s;
        background: linear-gradient(45deg, #eac532b5, #eac5321c);
    }


    a.text-decoration-none.text-white {
        font-size: 14px;
    }

    ul.navbar-nav.ms-auto {
        gap: 0px;
    }

    .hero-content .text-content {
        padding: 0;
    }

    .hero-content .text-content h1 {
        font-size: 32px;
        margin-bottom: 13px;
        margin-top: 30px;
    }


    img.header-logo {
        width: 170px;
    }

    .hero-content .text-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }


    .hero-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }


    .hero-content .form-content {
        margin-bottom: 30px;
        margin-top: 20px;
    }


    .about-us-section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }


    .about-us-section p {
        font-size: 15px;
    }

    .about-us-section .content {
        flex-direction: column;
    }

    .why-us-section .why-us-title h2 {
        font-size: 22px;
    }

    .about-us-section {
        padding: 30px 0;
        overflow: hidden;
    }

    .why-us-section .why-us-title {
        text-align: center;
        margin-bottom: 0px;
    }

    .certificates-section {
        display: flex;
        padding: 40px 15px;
        flex-direction: column;
        position: unset;
    }


    .why-us-section {
        padding: 43px 0px;
        overflow: hidden;
    }

    footer {
        background-color: #25282a;
        color: white;
        padding: 30px 0px  5px 0px;
    }

    section#contact_us {
        overflow: hidden !important;
    }


    .documents-section {
        padding: 30px 0px;
        background-color: #ffffff;
        overflow: hidden;
    }


    .certificates-section .certificates-content {
        width: 100%;
        margin-left: 0px;
    }


    .certificates-section .tab-nav {
        width: 100%;
        margin-bottom: 25px;
    }


    .certificates-section {
        display: flex;
        padding: 15px 15px;
        flex-direction: column;
    }


    .certificates-section .certificate-card {
        padding: 10px;
    }


    .certification-section .certification-title h2 {
        font-size: 24px;
    }

    .certification-section {
        padding: 30px 0px 20px 0px;
        overflow: hidden;
    }


    .certification-section .process-step {
        flex-direction: column;
        text-align: center;
    }


    .certification-section .step-icon {
        margin-right: 0px;
    }


    .certification-section .step-content h5 {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .documents-section .documents-title h2 {
        font-size: 22px;
    }
	.documents-title1 { font-size: 22px!important;}

    .contact_us .container.mt-5 {
        margin-top: 10px !important;
    }

    .footer-bottom p {
        margin-bottom: 0px;
    }


    .navbar-toggler:focus {
        text-decoration: none;
        outline: 0;
        box-shadow: none !important;
        border: none !important;
    }

    footer .em {
        display: flex;
        align-items: center;
        gap: 3px;
    }
}








.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 1.4rem;
    bottom: 15rem;
    background: red;
    width: 60px;
    height: 60px;
    padding: 1rem;
    border-radius: 100%;
    box-sizing: border-box;
    color: #ffffff;
    display: none !important;
    display: flex;
    justify-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    font-size: 27px;

}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 160px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
}




.wrapper-1 {
    background: #fff;
    height: initial;
    max-width: 620px;
    margin: 0 auto;
    margin-top: 50px;
    box-shadow: 4px 8px 40px 8px rgba(88, 146, 255, 0.2);
}


.wrapper-2 {
    padding: 30px;
    text-align: center;
}

.wrapper-2 p {
    text-decoration: none;
    color: black;
}

.go-home {
    color: #fff !important;
    background: #78b64e;
    border: none;
    padding: 10px 50px;
    margin: 30px 0;
    border-radius: 30px;
    text-transform: capitalize;
    box-shadow: 0 10px 16px 1px rgba(174, 199, 251, 1);
}


.wrapper-2 h2 {
    font-size: 40px;
    letter-spacing: 3px;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 700;
    color: #226b93;
}

.go-home a {
    color: #fff !important;
    text-decoration: none;
}

.footer-like {
    text-align: center;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}


@media (max-width: 767.98px) {

  .float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 102px !important;
    right: 12px !important;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex !important;
    justify-content: center;
    align-items: center;
}


    .call-buton .cc-calto-action-ripple {
        z-index: 99999;
        position: fixed;
        right: 12px !important;
        bottom: 187px !important;
        background: red;
        width: 55px;
        height: 55px;
        padding: 13px;
        border-radius: 100%;
        box-sizing: border-box;
        color: #ffffff;
        display: flex !important;
        justify-items: center;
        -ms-flex-align: center;
        align-items: center;
        text-decoration: none;
        font-size: 27px;
    }

    .content-thank {
        margin-top: 80px !important;
    }


}







.iso-9001 {
    padding: 50px 0 30px 0;
}


.iso-9001 .iso-content {
    text-align: left;
}


.iso-9001 .iso-image img {
    max-width: 100%;
    border-radius: 10px;
}


.iso-9001 .iso-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #226b93;
}


.iso-9001 .iso-text {
    font-size: 1.1rem;
    line-height: 1.8;
}



.iso-9001-benefit {
    padding: 0px 0px 30px 0;
}

.iso-9001-benefit .card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.iso-9001-benefit .card:hover {
    transform: translateY(-10px);
}

.iso-9001-benefit .card i {
    font-size: 3rem;
    color: #2f675e;
}

.iso-9001-benefit .card-title {
    font-size: 17px;
    font-weight: bold;
    margin-top: 20px;
}

.iso-9001-benefit .card-text {
    font-size: 14px;
    line-height: 1.6;
}

.iso-9001-benefit h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
}




.iso9001 .hero-section {
    background: linear-gradient(to bottom, #06060652, #00000052), url(../img/inner-home.jpg);
    background-position: 50% 20%;
    background-size: cover;
    background-repeat: no-repeat;
}



@media (max-width: 767.98px) {

    .iso-9001 .iso-heading {
        font-size: 24px;
        margin-bottom: 14px;
    }


    .iso-9001 .iso-text {
        font-size: 15px;
        line-height: 1.8;
    }


    .iso-9001-benefit h2 {
        font-size: 23px;
        margin-bottom: 25px !important;
    }

    .iso9001 .certificates-title h2 {
        font-size: 26px;
        font-weight: bold;
        color: #226b93;
    }


    .iso9001 .hero-section {
        background: linear-gradient(to bottom, #06060652, #00000052), url(../img/inner-home.jpg);
        background-position: 66% 5%;
        background-size: cover;
        background-repeat: no-repeat;
    }

}




.iso-27001 {
    padding: 38px 0px 20px 0;
}

.iso-27001 .row {
    align-items: center;
}

.iso-27001 .content {
    padding-right: 50px;
}

.iso-27001 .content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #226b93;
}

.iso-27001 .content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.iso-27001 .image img {
    max-width: 100%;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .iso-27001 .row {
        text-align: center;
    }

    .iso-27001 .content {
        padding-right: 0;
        margin-bottom: 20px;
    }
}




.ISO-27001-benefit {
    padding: 0 0 30px 0;
}

.ISO-27001-benefit .card {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
    height: 250px;
}

.ISO-27001-benefit .card:hover {
    transform: translateY(-10px);
}

.ISO-27001-benefit .card i {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 15px;
}

.ISO-27001-benefit .card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.ISO-27001-benefit .card-text {
    font-size: 15px;
    line-height: 1.6;
}



.stop {
    display: flex;
    align-items: center;
}


.stop p {
    margin-bottom: 0px !important;
}


@media (max-width: 767px) {
    .ISO-27001-benefit .card {
        margin-bottom: 20px;
    }
}

.ISO-27001-benefit h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
}


.hero-section br {
    display: none;
}


@media (max-width: 767.98px) {



    .hero-section br {
        display: block;
    }

    .hero-content .text-content h1 {
        font-size: 22px;
        margin-bottom: 13px;
        margin-top: 30px;
        text-align: left;
    }

    .iso-27001 .content h2 {
        font-size: 27px;
        margin-bottom: 20px;
    }


    .iso-27001 .content p {
        font-size: 15px;
        line-height: 1.6;
    }


    .ISO-27001-benefit h2 {
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 30px !important;
    }

}




.iso-13485 {
    padding: 40px 0 40px 0;
}

.iso-13485 .content {
    display: flex;
    align-items: center;
}

.iso-13485 img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.iso-13485 .text-box {
    padding: 20px;
}

.iso-13485 h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #226b93;
}

::marker {
    color: #e9c432;
}

.iso-13485 p {
    font-size: 1rem;
    line-height: 1.6;
}

.iso-13485 ul {
    margin-top: 20px;
}

.iso-13485 ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .iso-13485 .content {
        flex-direction: column;
    }

    .iso-13485 .text-box {
        padding: 0;
        margin-top: 20px;
    }
}




.ISO-13485\:2016benfit {
    padding: 0 0 43px 0;
}

.ISO-13485\:2016benfit h2 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #226b93;
}

.ISO-13485\:2016benfit .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    background-color: #fff;
    transition: transform 0.3s;
}

.ISO-13485\:2016benfit .card:hover {
    transform: translateY(-10px);
}

.ISO-13485\:2016benfit .card i {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 15px;
}

.ISO-13485\:2016benfit .card h5 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ISO-13485\:2016benfit .card p {
    font-size: 1rem;
    line-height: 1.6;
}



@media (max-width: 767px) {
    .iso-13485 .content {
        flex-direction: column;
    }

    .iso-13485 .text-box {
        padding: 0;
        margin-top: 20px;
    }


    .iso-13485 {
        padding: 30px 10px 40px 10px;
    }


    .iso-13485 h2 {
        font-size: 25px;
    }

    .ISO-13485\:2016benfit h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}





.iso-14001 {
    padding: 50px 0px 15px 0;
}

.iso-14001 .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.iso-14001 .content .text-content {
    max-width: 50%;
}

.iso-14001 .content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 20px;
}

.iso-14001 .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
}

.iso-14001 .content .image-content img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .iso-14001 .content {
        flex-direction: column;
    }

    .iso-14001 .content .text-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}



.iso-14001-benefit {
    padding: 0 0 30px 0;
}

.iso-14001-benefit h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #226b93;
}

.iso-14001-benefit .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px !important;
}

.iso-14001-benefit .card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.iso-14001-benefit .card i {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 20px;
}

.iso-14001-benefit .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.iso-14001-benefit .card-text {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}



@media (max-width: 767px) {

    .iso-14001 .content h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }


    .iso-14001 .content p {
        font-size: 14px;
        line-height: 1.6;
    }


    .iso-14001-benefit h2 {
        font-size: 24px;
        margin-bottom: 29px;
        margin-top: 20px;
    }

}






.iso-18001 {
    padding: 50px 0;
}


.iso-18001 h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 20px;
}

.iso-18001 p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
}

.iso-18001 .image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: 348px;
    object-fit: fill;
}

@media (max-width: 768px) {
    .iso-18001 {
        flex-direction: column;
    }

    .iso-18001 .text-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
}





.iso-ohsas-18001-benefit {
    padding: 0 0 30px 0;
}

.iso-ohsas-18001-benefit h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #226b93;
}

.iso-ohsas-18001-benefit .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.iso-ohsas-18001-benefit .card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.iso-ohsas-18001-benefit .card i {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 20px;
}

.iso-ohsas-18001-benefit .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.iso-ohsas-18001-benefit .card-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}



@media (max-width: 767px) {


    .iso18001 .hero-content .text-content h1 {
        font-size: 25px;
        margin-bottom: 13px;
        margin-top: 30px;
    }


    .iso-18001 h2 {
        font-size: 24px;
    }


    .iso-18001 p {
        font-size: 15px;
        line-height: 1.6;
    }


    .iso-18001 .image-content img {
        height: 100%;
        object-fit: cover;
    }

    .iso-ohsas-18001-benefit h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

}





.iso-20000 {
    padding: 50px 0;
}

.iso-20000 h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #226b93;
}

.iso-20000 p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.iso-20000 .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-size: 1rem;
    padding: 10px 20px;
}

.iso-20000 .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.iso-20000 img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}




.iso-20000-1-benfit {
    padding: 0px 0 30px 0;
}

.iso-20000-1-benfit h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 30px;
    text-align: center;
}

.iso-20000-1-benfit .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.iso-20000-1-benfit .card:hover {
    transform: translateY(-10px);
}

.iso-20000-1-benfit .icon {
    font-size: 2.5rem;
    color: #76b44d;
    margin-bottom: 15px;
}

.iso-20000-1-benfit .card-body h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.iso-20000-1-benfit .card-body p {
    font-size: 14px;
    color: #555;
}


@media (max-width: 767px) {

    .iso20000-1 .iso-20000 h2 {
        font-size: 21px;
    }

    .iso-20000 p {
        font-size: 15px;
        line-height: 1.6;
    }

    .iso-20000-1-benfit h2 {
        font-size: 19px;
    }

}




.iso-22000 {
    padding: 60px 0;
}

.iso-22000 .content {
    font-size: 1.1rem;
    line-height: 1.6;
}

.iso-22000 h2 {
    font-size: 37px;
    color: #226b93;
    font-weight: bold;
    margin-bottom: 6px;
}

.iso-22000 p {
    color: #555;
}

.iso-22000 .image {
    text-align: center;
}

.iso-22000 .image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



.ISO-22000-benefit {
    padding: 0px 0 30px 0;
}

.ISO-22000-benefit h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #226b93;
    font-weight: bold;
}

.ISO-22000-benefit .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ISO-22000-benefit .card:hover {
    transform: translateY(-10px);
}

.ISO-22000-benefit .card-icon {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 0px;
}

.ISO-22000-benefit .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.ISO-22000-benefit .card-text {
    color: #555;
    font-size: 1rem;
    margin-top: 10px;
}




@media (max-width: 767px) {

    .iso-22000 h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .iso-22000 .content {
        font-size: 15px;
    }

    .iso-22000 {
        padding: 30px 0;
    }

    .ISO-22000-benefit h2 {
        font-size: 22px;
        margin-bottom: 14px;
        margin-top: 10px;
    }

}






.iso-8001 {
    padding: 60px 0;
}

.iso-8001 h2 {
    font-size: 2.5rem;
    color: #226b93;
    font-weight: bold;
}

.iso-8001 p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.iso-8001 img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}



.SA-8001-2014-benfit {
    padding: 0 0 30px 0;
}

.SA-8001-2014-benfit h2 {
    font-size: 2.5rem;
    color: #226b93;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.SA-8001-2014-benfit .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    padding: 20px !important;
    height: 100%;
}

.SA-8001-2014-benfit .card:hover {
    transform: scale(1.05);
}

.SA-8001-2014-benfit .card i {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 10px;
}

.SA-8001-2014-benfit .card-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.SA-8001-2014-benfit .card-text {
    font-size: 1rem;
    color: #555;
}


@media (max-width: 767px) {

    .iso-8001 h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .iso-8001 {
        padding: 31px 0;
    }

    .iso-8001 p {
        font-size: 15px;
    }

    .SA-8001-2014-benfit h2 {
        font-size: 23px;
        margin-bottom: 15px;
    }


    .SA-8001-2014-benfit {
        padding: 0 0 20px 0;
    }

}







.IATF-16949-2016 {
    padding: 40px 0;
}

.IATF-16949-2016 h2 {
    font-size: 2.5rem;
    color: #226b93;
    font-weight: bold;
    margin-bottom: 14px;
}

.IATF-16949-2016 .content-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}



.IATF-16949-2016 .text-content {
    flex: 1;
    max-width: 100%;
}

.IATF-16949-2016 .image-content {
    flex: 1;
    max-width: 100%;
    overflow: hidden;
}

.IATF-16949-2016 .image-content img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.IATF-16949-2016 .text-content p {
    font-size: 1.1rem;
    color: #555;
}

.IATF-16949-2016 .text-content ul {
    font-size: 1rem;
    color: #555;
}




.IATF-16949-2016-benfit {
    padding: 0 0 30px 0;
}

.IATF-16949-2016-benfit h2 {
    font-size: 2.5rem;
    color: #226b93;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

.IATF-16949-2016-benfit .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.IATF-16949-2016-benfit .card:hover {
    transform: translateY(-10px);
}

.IATF-16949-2016-benfit .card-body {
    text-align: center;
    padding: 30px;
}

.IATF-16949-2016-benfit .card-icon {
    font-size: 40px;
    color: #2f675e;
    margin-bottom: 5px;
}

.IATF-16949-2016-benfit .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.IATF-16949-2016-benfit .card-text {
    color: #555;
    font-size: 1rem;
}





@media (max-width: 767px) {

    .IATF-16949-2016 .content-section {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }


    .IATF-16949-2016 h2 {
        font-size: 25px;
        margin-bottom: 14px;
    }


    .IATF-16949-2016 .text-content p {
        font-size: 15px;
        color: #555;
    }


    .IATF-16949-2016 .image-content img {
        height: 100%;
    }


    .IATF-16949-2016-benfit h2 {
        font-size: 22px;
    }


    .IATF-16949-2016-benfit {
        padding: 0 0 0px 0;
    }

    .IATF-16949-2016-benfit .card-body {
        padding: 20px;
    }




}





.ISO-22716-2007-section {
    padding: 35px 0;
}

.ISO-22716-2007-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 15px;
}

.ISO-22716-2007-section .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ISO-22716-2007-section .content .text-section,
.ISO-22716-2007-section .content .image-section {
    flex: 1;
    padding: 20px;
}

.ISO-22716-2007-section.text-section h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.ISO-22716-2007-section .text-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.ISO-22716-2007-section .image-section img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .ISO-22716-2007-section .content {
        flex-direction: column;
    }

    .ISO-22716-2007-section .text-section,
    .ISO-22716-2007-section .image-section {
        padding: 15px;
    }
}



.ISO-22716-2007-benefits {
    padding: 0 0 20px 0;
}

.ISO-22716-2007-benefits h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #226b93;
    text-align: center;
    margin-bottom: 40px;
}

.ISO-22716-2007-benefits .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}


.ISO-22716-2007-benefits .card:hover {
    transform: translateY(-10px);
}

.ISO-22716-2007-benefits .card-body {
    text-align: center;
}

.ISO-22716-2007-benefits .card-icon {
    font-size: 40px;
    color: #2f675e;
    margin-bottom: 10px;
}

.ISO-22716-2007-benefits .card-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.ISO-22716-2007-benefits .card-text {
    font-size: 16px;
    color: #555;
}

@media (max-width: 767px) {
    .ISO-22716-2007-benefits .card {
        margin-bottom: 30px;
    }

    .ISO-22716-2007-section h2 {
        font-size: 25px;
    }

    .ISO-22716-2007-section .text-section p {
        font-size: 15px;
    }

    .ISO-22716-2007-section .content .text-section,
    .ISO-22716-2007-section .content .image-section {
        flex: 1;
        padding: 15px;
    }


    .ISO-22716-2007-benefits h2 {
        font-size: 23px;
        margin-bottom: 30px;
    }

    .ISO-22716-2007-benefits {
        padding: 0 0 0px 0;
    }
}






.iso-15189 {
    padding: 60px 0;
}


.iso-15189 h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
}

.iso-15189 h3 {
    font-size: 2rem;
    color: #007bff;
    font-weight: bold;
}

.iso-15189 p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.iso-15189 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .iso-15189 .row {
        flex-direction: column;
    }
}




.iso-15189-benefit {
    padding: 0 0 30px 0;
}


.iso-15189-benefit h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #226b93;
}

.iso-15189-benefit h3 {
    font-size: 2rem;
    color: #007bff;
    font-weight: bold;
}

.iso-15189-benefit .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.iso-15189-benefit .card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.iso-15189-benefit .card-icon {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 10px;
}

.iso-15189-benefit .card-body {
    text-align: center;
}

.iso-15189-benefit .card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.iso-15189-benefit .card-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}



@media (max-width: 767px) {


    .iso-15189 h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .iso-15189 {
        padding: 30px 0;
    }

    .iso-15189 p {
        font-size: 15px;
        line-height: 1.6;
    }

    .iso-15189-benefit h2 {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .iso-15189-benefit {
        padding: 0 0 20px 0;
    }



}



.iso-29990 {
    padding: 40px 0;
}

.iso-29990 h2 {
    font-size: 40px;
    color: #226b93;
    font-weight: bold;
}


.iso-29990 img {
    max-width: 100%;
    height: 370px;
    border-radius: 8px;
    object-fit: cover;
}

.iso-29990 .row {
    display: flex;
    align-items: center;
}

.iso-29990 .content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.iso-29990 .content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}






.iso-29990-benefits {
    padding: 0 0 30px 0;
}

.iso-29990-benefits h2 {
    font-size: 40px;
    text-align: center;
    color: #226b93;
    font-weight: bold;
    margin-bottom: 12px;
}

.iso-29990-benefits .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.iso-29990-benefits .card:hover {
    transform: translateY(-10px);
}

.iso-29990-benefits .card-body {
    text-align: center;
    padding: 20px;
}

.iso-29990-benefits .card-icon {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 0px;
}

.iso-29990-benefits .card-title {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 3px;
}

.iso-29990-benefits .card-text {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 768px) {
    .iso-29990-benefits h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }


    .iso-29990 h2 {
        font-size: 26px;
    }


    .iso-29990 .content p {
        font-size: 15px;
    }

    .iso-29990 img {
        max-width: 100%;
        height: 100%;
    }


}




.iso-15378-2017 {
    padding: 40px 0;
}

.iso-15378-2017 h2 {
    font-size: 40px;
    color: #226b93;
    font-weight: bold;
    margin-bottom: 16px;

}

.iso-15378-2017 .content-left {
    padding-right: 30px;
    display: flex;
    align-items: center;
}

.iso-15378-2017 .content-right img {
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.iso-15378-2017 .content-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.iso-15378-2017 .content-left h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .iso-15378-2017 h2 {
        font-size: 1.5rem;
    }
}



.iso-15378-2017-benefit {
    padding: 0 0 30px 0;
}

.iso-15378-2017-benefit h2 {
    font-size: 40px;
    color: #226b93;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.iso-15378-2017-benefit .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.iso-15378-2017-benefit .card:hover {
    transform: translateY(-10px);
}

.iso-15378-2017-benefit .card-icon {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 0px;
}

.iso-15378-2017-benefit .card-body {
    text-align: center;
}

.iso-15378-2017-benefit .card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.iso-15378-2017-benefit .card-text {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .iso-15378-2017-benefit h2 {
        font-size: 1.5rem;
    }

    .iso-15378-2017 {
        padding: 30px 10px;
    }

    .iso-15378-2017 .content-left p {
        font-size: 15px;
    }

    .iso-15378-2017 .content-right img {
        height: 100%;
    }

    .iso-15378-2017-benefit {
        padding: 0 10px 30px 10px;
    }
}




.iso-50001-2011 {
    padding: 40px 0;
}

.iso-50001-2011 h2 {
    font-size: 40px;
    color: #226b93;
    font-weight: bold;
    margin-bottom: 20px;
}

.iso-50001-2011 .content {
    text-align: left;
}

.iso-50001-2011 .content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.iso-50001-2011 .content p {
    font-size: 1rem;
    color: #555;
}

.iso-50001-2011 .image img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .iso-50001-2011 h2 {
        font-size: 1.5rem;
    }
}



.iso-50001-2011-benefit {
    padding: 0 0 30px 0;
    text-align: center;
}

.iso-50001-2011-benefit h2 {
    font-size: 40px;
    color: #226b93;
    font-weight: bold;
    margin-bottom: 15px;
}

.iso-50001-2011-benefit .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px;
    border-radius: 10px;
}

.iso-50001-2011-benefit .card-icon {
    font-size: 2.5rem;
    color: #2f675e;
    margin-bottom: 6px;
}

.iso-50001-2011-benefit .card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.iso-50001-2011-benefit .card-text {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .iso-50001-2011-benefit h2 {
        font-size: 1.5rem;
    }


    .iso-50001-2011 {
        padding: 40px 10px;
    }

    .iso-50001-2011 .content p {
        font-size: 15px;
        color: #555;
    }

    .iso-50001-2011-benefit {
        padding: 0 10px 30px 10px;
        text-align: center;
    }
}





.ce-marking {
    padding: 40px 0;
}

.ce-marking h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 15px;
}

.ce-marking .content {
    font-size: 1.1rem;
    color: #555;
}

.ce-marking .image {
    text-align: center;
}

.ce-marking .image img {
    max-width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .ce-marking h2 {
        font-size: 1.5rem;
    }
}



.ce-marking-benefit {
    padding: 0px 0 30px 0;
}

.ce-marking-benefit h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 20px;
    text-align: center;
}

.ce-marking-benefit .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.ce-marking-benefit .card:hover {
    transform: translateY(-10px);
}

.ce-marking-benefit .card-body {
    text-align: center;
}

.ce-marking-benefit .card-body i {
    font-size: 40px;
    color: #2f675e;
    margin-bottom: 10px;
}

.ce-marking-benefit .card-body h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.ce-marking-benefit .card-body p {
    color: #555;
}

@media (max-width: 768px) {
    .ce-marking-benefit h2 {
        font-size: 1.5rem;
    }

    .ce-marking {
        padding: 40px 10px;
    }


    .ce-marking .content {
        font-size: 15px;
    }

    .ce-marking-benefit {
        padding: 0px 10px 30px 10px;
    }
}





.haccp {
    padding: 40px 0;
}

.haccp h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 12px;
}


.haccp-image {
    text-align: center;
}

.haccp-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .haccp h2 {
        font-size: 1.5rem;
    }
}



.haccp-benefits {
    padding: 0 10px 30px 10px;
}

.haccp-benefits h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 36px;
    text-align: center;
}

.haccp-card {
    border: none;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}


.haccp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.haccp-card i {
    font-size: 40px;
    color: #2f675e;
    margin-bottom: 20px;
}

.haccp-card h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.haccp-card p {
    font-size: 1rem;
    color: #555;
}

@media (max-width: 767px) {
    .haccp-benefits h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }


    .haccp {
        padding: 40px 10px;
    }


    .haccp-benefits {
        padding: 0 10px 15px 10px;
    }
}





.gmp-section {
    padding: 60px 0;
}

.gmp-content h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 9px;
}

.gmp-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.gmp-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}




.gmp-benefits {
    padding: 0px 0;
}

.gmp-benefits h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 40px;
    text-align: center;
}

.gmp-card {
    background: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
    height: 100%;
}

.gmp-card:hover {
    transform: translateY(-10px);
}

.gmp-card i {
    font-size: 40px;
    color: #2f675e;
    margin-bottom: 10px;
}

.gmp-card h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.gmp-card p {
    font-size: 0.9rem;
    color: #555;
}




@media (max-width: 767px) {

    .gmp-content h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .gmp-section {
        padding: 30px 10px;
    }

    .gmp-benefits h2 {
        font-size: 22px;
        margin-bottom: 34px;
    }

    .gmp-benefits {
        padding: 0px 10px;
    }


    .gmp-content p {
        font-size: 15px;
    }

}




.bifma-section {
    padding: 35px 0;
}

.bifma-section .content {
    display: flex;
    align-items: center;
}

.bifma-section h2 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 20px;
}

.bifma-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.bifma-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}






.bifma-benefits {
    padding: 0px 0;
}

.bifma-benefits h2 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #226b93;
}

.bifma-benefits .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.bifma-benefits .card:hover {
    transform: translateY(-10px);
}

.bifma-benefits .card-body {
    text-align: center;
}

.bifma-benefits .card i {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 9px;
}

.bifma-benefits .card h5 {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 2px;
    color: #333;
}

.bifma-benefits .card p {
    font-size: 14px;
    color: #555;
}




@media (max-width: 767px) {

    .bifma-section h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }


    .bifma-section p {
        font-size: 15px;
        line-height: 1.6;
    }


    .bifma-benefits h2 {
        font-size: 22px;
    }

}







.about-halal {
    padding: 30px 0;
}

.about-halal h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #226b93;
}

.about-halal p {
    font-size: 16px;
    color: #555;
}

.about-halal img {
    max-width: 100%;
    border-radius: 10px;
}



.halal-benefit {
    padding: 0px 0;
}

.halal-benefit h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #226b93;
    text-align: center;
}

.halal-card {
    background: #ffffff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 16px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.halal-card:hover {
    transform: translateY(-10px);
}

.halal-card i {
    font-size: 40px;
    color: #2f675e;
    margin-bottom: 7px;
}

.halal-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.halal-card p {
    font-size: 1rem;
    color: #555;
}




@media (max-width: 767px) {

    .about-halal h2 {
        font-size: 25px;
    }


    .about-halal p {
        font-size: 15px;
        color: #555;
    }


    .halal-benefit h2 {
        font-size: 23px;
        margin-bottom: 20px;
    }

}




.about-Organic {
    padding: 40px 0;
}

.about-Organic h2 {
    font-size: 40px;
    color: #226b93;
    font-weight: bold;
}

.about-Organic p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
}

.about-Organic img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}



.organic-benefits {
    padding: 0px 0;
}

.organic-benefits h2 {
    font-size: 40px;
    color: #226b93;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.organic-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    padding: 18px;
    text-align: center;
    transition: transform 0.3s;
    height: 262px;
}

.organic-card:hover {
    transform: translateY(-10px);
}

.organic-card i {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 10px;
}

.organic-card h4 {
    font-size: 1.5rem;
    color: #333;
}

.organic-card p {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}



@media (max-width: 767px) {

    .about-Organic h2 {
        font-size: 25px;
    }

    .about-Organic p {
        font-size: 15px;
        margin-top: 10px;
    }


    .organic-benefits h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

}





.about-kosher {
    padding: 40px 0;
}

.about-kosher h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.about-kosher .content h3 {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
    margin-bottom: 20px;
}

.about-kosher .content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.about-kosher .image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}



.kosher-benefits {
    padding: 0px 0;
}

.kosher-benefits .card {
    border: none;
    background-color: #ffffff;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.kosher-benefits .card:hover {
    transform: translateY(-10px);
}

.kosher-benefits .card-body {
    text-align: center;
    padding: 20px;
}

.kosher-benefits .card-title {
    font-size: 17px;
    font-weight: bold;
    margin-top: 14px;
    color: #333;
}

.kosher-benefits .card-text {
    font-size: 16px;
    color: #666;
}

.kosher-benefits .icon {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: -18px;
}

.kosher-benefits h2 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #226b93;
}



@media (max-width: 767px) {

    .about-kosher .content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .about-kosher .content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .kosher-benefits h2 {
        font-size: 23px;
        margin-bottom: 22px;
    }
}





.RoHS {
    padding: 40px 0;
}

.RoHS .content,
.RoHS .image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.RoHS .content {
    flex-direction: column;
}

.RoHS .content h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #226b93;
}

.RoHS .content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.RoHS .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.RoHS .row {
    display: flex;
    align-items: center;
}










.RoHS-benfit {
    padding: 0px 0;
    text-align: center;
}

.RoHS-benfit .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.RoHS-benfit .card-body {
    padding: 24px;
}

.RoHS-benfit .card-body h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

.RoHS-benfit .card-body p {
    font-size: 1rem;
    color: #666;
}


.RoHS-benfit .card-icon {
    font-size: 3rem;
    color: #2f675e;
    margin-bottom: 0px;
}


.RoHS-benfit .row {
    display: flex;
    justify-content: center;
}

.RoHS-benfit .col-md-3 {
    margin: 10px;
}

.RoHS-benfit h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #226b93;
}



@media (max-width: 767px) {


    .RoHS .content h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .RoHS .content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .RoHS-benfit h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }


    .RoHS-benfit .card-body {
        padding: 10px;
    }

}




.about-US-FDA {
    padding: 30px 0;
    text-align: center;
}

.about-US-FDA .content {
    padding: 20px;
    text-align: start;
}

.about-US-FDA .content h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 14px;
    color: #226b93;
}

.about-US-FDA .content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.about-US-FDA .image img {
    max-width: 100%;
    height: 400px;
    border-radius: 10px;
}

.about-US-FDA .row {
    display: flex;
    justify-content: center;
}






.US-FDA-Compliance-benefit {
    padding: 0 0 16px 0;
    text-align: center;
}

.US-FDA-Compliance-benefit .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    transition: transform 0.3s ease-in-out;
    height: 239px;
}

.US-FDA-Compliance-benefit .card:hover {
    transform: scale(1.05);
}

.US-FDA-Compliance-benefit .card-body {
    padding: 18px;
}

.US-FDA-Compliance-benefit .card-body i {
    font-size: 40px;
    color: #2f675e;
}

.US-FDA-Compliance-benefit h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 13px;
}

.US-FDA-Compliance-benefit p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}





h2.mb-5.aos-init.aos-animate {
    font-size: 40px;
    font-weight: bold;
    color: #226b93;
}



.happy-clients h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #226b93;
}



@media (max-width: 767px) {

    .about-US-FDA .content {
        padding: 0px;
        text-align: start;
    }


    .about-US-FDA .content h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }


    .about-US-FDA .content p {
        font-size: 15px;
        color: #333;
    }

    .about-US-FDA .image img {
        max-width: 100%;
        height: 100%;
    }


    h2.mb-5.aos-init.aos-animate {
        font-size: 22px;
        margin-bottom: 30px !important;
    }


    section.happy-clients {
        padding-top: 0px !important;
    }

    .happy-clients h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }


    ul.qlt {
        margin: 19px 0px;
        padding: 0px 0px;
        font-size: 20px;
        line-height: 23px;
    }
}



.content-thank {
    margin-top: 200px;
}



.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}


.social-icons h6.text-white {
    margin-bottom: 0px;
}



.footer-bottom.d-flex {
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 20px;
}



@media (max-width: 767px) {


    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #eac532;
        margin-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }


    .social-icons {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-top: 15px;
    }
}

.links.d-flex.align-items-baseline {
    gap: 20px;
}

.links>a:hover {
    background: #002665 !important;
    color: #ffffff !important;
    border-radius: 50%;
}

.links>a {
    background: #fff !important;
    color: #143d59 !important;
    border-radius: 50%;
}

.links>a {
    background: #ffffff;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;
    color: #10346f !important;
    transition: all .4s ease-in-out;
}
.cnect li a {
    transition: .3s;
    text-decoration: none;
}
.cnect li a:hover {
    transition: all 0.3s ease 0s;
    opacity: .6 !important;
    margin-left: 5px;
    color: #e3a736 !important;
}

.textt li a {color: #fff!important}

[alt="ftr-logo"] {
    max-width: 200px;
}
 li a {
    transition: .3s;
    text-decoration: none;
    color: #0a0a0aba ;
}


.ftr-bg .info i {
    font-size: 16px;
    color: #fff;
    float: left;
    font-family: 'Font Awesome 5 Pro';
    width: 40px;
    height: 40px;
    background: #10346f;
    display: flex;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.ftr-bg .info h4 {
    font-size: 18px;
    padding: 0 0 0 60px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #10346f;
}


.ftr-bg .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #10346f;
}

.ftr-bg .info p a{
    text-decoration: none;
    color: #000000;
}

.ftr-bg .info i:hover {
    background: #002665 !important;
    color: #ffffff !important;
    border-radius: 50%;
}

 ul li.links-list {
    line-height: 35px;
}

 .info i:hover {
    background: #e3a736 !important;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 8.5rem;
    right: 1.5rem;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

. .cnect li a {
    transition: .3s;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
    color: #10346f !important;
}

.text-drak {font-weight: 600!important}