*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    border-radius: 10px;
}

body {
    font-family: "Roboto", sans-serif;
}

.container-main {
    max-width: 1320px;
    margin: 0 auto;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-main {
    background: #3b5bbe;
    padding: 6px 0px;
}

.top-bar-left ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-left ul li {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    font-weight: 400;
}

.top-bar-left ul li a {
    color: #fff;
}

.top-bar-left ul li i {
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-right: 5px;
}

.social-media-icon i {
    text-align: center;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #3b5bbe;
    font-size: 14px;
    margin-right: 5px;
}

.main-header {
    padding: 12px 0px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fdfaf5;
}

.mob-header {
    display: none;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left img {
    width: auto;
    max-width: 100%;
    max-height: 80px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-links {
    /* background-color: #00aeef; */
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.header-links ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-links ul li {
    text-transform: uppercase;
    color: #4a4d48;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

.header-links ul li.active a,
.header-links ul li:hover a {
    color: #3b5bbe;
}

.header-links ul li a {
    color: #4a4d48;
}

.dropdown-link {
    position: relative;
    padding-right: 15px;
}

.dropdown-content {
    display: none;
    flex-flow: column;
    position: absolute;
    background-color: #fff;
    width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.dropdown-content ul {
    flex-flow: column;
    align-items: unset;
    gap: 10px;
    padding: 15px 0px;
}

.dropdown-content li,
.dropdown-content-inner li {
    padding: 0px 15px;
}

.dropdown-content li a {
    color: #4a4d48 !important;
}

.dropdown-link:hover .dropdown-content {
    display: block;
}

.dropdown-link::before {
    position: absolute;
    content: "";
    background-image: url(../images/down_arrow.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 12px;
    height: 8px;
    right: 0px;
    top: 4px;
    filter: invert(1);
    pointer-events: none;
}

.connect-btn-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.connect-btn-left img {
    width: 35px;
    height: 35px;
    border-radius: unset;
}

.connect-btn-right span,
.connect-btn-right p {
    font-size: 15px;
    color: #76797f;
    line-height: 1.4;
}

.connect-btn-right p a,
.connect-btn-right p {
    color: #000;
}

.connect-btn-right {
    padding-left: 10px;
}

.connect-btn-right span {
    display: block;
}

.ringing-phone {
    animation: ring 1s infinite;
    transform-origin: center;
    z-index: 2;
    position: relative;
}

.phone-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-wrapper::before,
.phone-wrapper::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border: 1.5px solid #3b5bbe;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite ease-out;
    z-index: 1;
}

.phone-wrapper::after {
    animation-delay: 1s;
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    20% {
        transform: rotate(-7deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-7deg);
    }

    50% {
        transform: rotate(5deg);
    }

    60%,
    100% {
        transform: rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.home-banner-main {
    position: relative;
}

.home-banner-slider {
    position: relative;
}

.home-btn-flex {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
    padding: 0px 40px;
}

.home-btn-flex button {
    background-color: #000 !important;
    width: 50px;
    height: 70px;
    border: unset;
    border-radius: 3px;
    opacity: .6;
}

.home-btn-flex img {
    width: 20px !important;
    height: 20px !important;
    filter: invert(1);
}

.home-banner-bg {
    height: 84vh;
    position: relative;
    overflow: hidden;
}

.home-banner-bg img {
    border-radius: unset;
}

.home-banner-bg::before,
.breadcrumbs-bg::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.4;
    z-index: 1;
}

.home-banner-info,
.breadcrumbs-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-banner-info .container-main,
.breadcrumbs-info .container-main {
    height: 100%;
}

.home-banner-content,
.breadcrumbs-content {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.home-banner-content h1 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.home-banner-content p {
    font-size: 20px;
    color: #fff;
    line-height: 1.4;
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 30px;
    text-align: center;
}

.home-banner-content a,
.home-company-left a,
.form-btn input {
    color: #fff;
    background-color: #3b5bbe;
    font-size: 18px;
    font-weight: 500;
    border-radius: 3px;
    width: max-content;
    height: 60px;
    padding: 0px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    text-transform: uppercase;
}

.home-stats {
    background-color: #f4f5f8;
    padding: 30px 0;
}

.home-stats-flex,
.home-products-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.home-stats-block,
.home-products-block {
    width: 25%;
    padding: 15px;
}

.home-stats-block img {
    width: 60px;
    height: 60px;
    float: left;
    padding-right: 12px;
    object-fit: scale-down;
}

.stats-info {
    float: left;
}

.stats-info h4 {
    font-size: 36px;
    color: #3b5bbe;
    font-weight: bold;
    line-height: 1;
    position: relative;
}

.stats-info h4::before {
    position: absolute;
    content: "+";
    font-size: 36px;
    color: #3b5bbe;
    font-weight: bold;
    line-height: 1;
    right: -27px;
}

.home-stats-block:last-child .stats-info h4::before {
    content: unset;
}

.home-stats-block:nth-child(2) .stats-info h4::before {
    right: -45px;
    top: 3px;
}

.home-stats-block:nth-child(2) .stats-info h4::after {
    position: absolute;
    content: "k";
    font-size: 30px;
    color: #3b5bbe;
    font-weight: bold;
    line-height: 1;
    right: -20px;
    top: 6px;
}

.stats-info p {
    font-size: 16px;
    color: #677078;
    line-height: 1.688;
}

.home-company,
.home-products,
.home-clients,
.home-publications,
.home-partners,
.contact-box-main,
.quality-assurance-main,
.our-mission-main,
.contact-page-main,
.faq-main,
.products-main,
.product-details-main,
.product-tab-main {
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-company-flex,
.home-clients-flex,
.home-publications-flex,
.our-mission-flex,
.product-details-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.home-company-left,
.home-company-right,
.home-publications-left,
.home-publications-right,
.our-mission-block {
    width: 50%;
}

.home-company-left,
.home-publications-left {
    padding-right: 50px;
}

.home-company-left h2,
.home-clients-box h3,
.home-publications-left .accordion-button,
.quality-assurance-block h3,
.our-mission-block h3,
.product-modal .modal-header h5 {
    font-size: 20px;
    color: #3b5bbe;
    font-weight: bold;
    line-height: 1.4;
    margin: 20px 0;
}

.home-company-left h2,
.product-modal .modal-header h5 {
    font-size: 24px;
}

.home-company-left p,
.home-clients-left p,
.home-clients-box p,
.home-publications-left .accordion-body p,
.quality-assurance-heading p,
.quality-assurance-block p,
.our-mission-block p,
.parallel-content p,
.product-details-right p,
.product-info ul li {
    font-size: 16px;
    color: #677078;
    line-height: 1.688;
    margin-bottom: 20px;
}

.home-company-left a {
    font-size: 16px;
    height: 48px;
}

.company-image {
    position: relative;
    /* min-height: 370px; */
}

.company-image img {
    transition: .5s;
}

.company-image>div {
    position: absolute;
    border-radius: 10px;
}

.company-image .img-left {
    width: 55%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.company-image .img-right {
    width: 85%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* height: 370px; */
}

.hover-effect {
    background: #000;
    overflow: hidden;
    position: relative;
    display: inline-block;
    /* margin: 0 -1.5px; */
}

.hover-effect:hover img {
    opacity: 0.6;
    transform: scale(1.1);
}

.home-products,
.home-partners {
    background-color: #f4f5f8;
}

.home-products-heading,
.home-clients-heading,
.home-publications-heading,
.home-partners-heading,
.quality-assurance-heading {
    margin-bottom: 50px;
}

.home-products-heading h2,
.home-clients-left h2,
.home-publications-heading h2,
.home-partners-heading h2,
.home-publications-right h2,
.quality-assurance-heading h2,
.parallel-content h2,
.contact-page h2,
.faq h3,
.product-details-right h2 {
    font-size: 40px;
    color: #3b5bbe;
    font-weight: bold;
    text-align: center;
}

.home-products {
    background-color: #3b5bbe;
}

.home-products-heading h2 {
    color: #fff;
}

.blog-content {
    background: #fff;
    box-shadow: 0.5px 0.866px 1px 1px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.blog-content h3 {
    font-size: 20px;
    color: #41454f;
    font-weight: bold;
    line-height: 1.4;
}

.home-products-block:hover .blog-content h3 a {
    color: #3b5bbe;
}

.blog-content h3 a {
    color: #41454f;
}

.blog-img-box {
    height: 300px;
    overflow: hidden;
}

.blog-img-box {
    border-radius: 10px;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}

.blog-img-box img {
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
}

.home-products-block:hover .blog-img-box img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.home-clients-left,
.product-details-left {
    width: 30%;
    padding-right: 50px;
}

.home-clients-left h2 {
    text-align: unset;
}

.home-clients-left p {
    margin-bottom: 0;
    margin-top: 10px;
}

.home-clients-right,
.product-details-right {
    width: 70%;
}

.home-clients-box-flex,
.contact-box-flex,
.quality-assurance-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.home-clients-box,
.contact-box,
.quality-assurance-block {
    width: 33.33%;
    padding: 12px;
}

.home-clients-box-inner {
    background-color: #f4f5f8;
    padding: 15px;
    box-shadow: 0.5px 0.866px 1px 0px rgba(0, 0, 0, 0.15);
    height: 100%;
    border: 2px solid #3b5bbe;
    border-radius: 10px;
}


.home-clients-box h3 {
    color: #3b5bbe;
    margin-bottom: 10px;
}

.home-clients-box p {
    color: #020e28;
}

.home-publications {
    background-color: #f4f5f8;
    padding-bottom: 0;
    position: relative;
}

.home-publications-left .accordion-button,
.home-publications-left .accordion-body p {
    margin: 0;
}

.accordion-button:not(.collapsed) {
    background-color: unset;
}

.accordion-button:focus {
    box-shadow: unset;
    border-color: unset;
}

.accordion-button:not(.collapsed) {
    box-shadow: unset;
}

.home-publications-left .accordion-button:not(.collapsed)::after {
    content: "-";
    font-size: 44px;
    font-family: "Roboto";
    color: #dadcdd;
    line-height: 20px;
    font-weight: 400;
    transform: unset;
}

.home-publications-left .accordion-button::after {
    position: absolute;
    content: "+";
    background-image: unset;
    right: 10px;
    top: 18px;
}

.home-publications-left .accordion-body {
    border-top: 1px solid rgba(0, 0, 0, .125);
}

.home-publications-right h2 {
    text-align: unset;
    color: #000;
    margin-bottom: 25px;
    font-size: 36px;
}

.form-field,
.contact-form-field {
    margin-bottom: 20px;
}

.form-field input,
.form-field textarea,
.contact-form-field input,
.contact-form-field textarea,
.contact-form-field select {
    border: 1px solid #dee0e5;
    background: #fff;
    border-radius: 0;
    height: 50px;
    width: 100%;
    padding: 0 20px;
    outline: none;
}

.form-field textarea,
.contact-form-field textarea {
    padding: 20px;
    height: 150px;
}

.form-btn input {
    font-size: 19px;
    width: 100%;
    padding: 0;
    border: unset;
}

.partner-images {
    height: 150px;
}

.partner-images img {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    object-fit: scale-down;
}

.contact-box-main {
    position: relative;
}

.contact-box-main::before,
.home-publications::after,
.home-company.about-page.why-us::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: #03153e;
    z-index: -1;
}

.home-publications::after,
.home-company.about-page.why-us::after {
    background: #f4f5f8;
    bottom: -143px;
}

.contact-box-flex {
    margin: 0;
    border-radius: 10px;
}

.contact-box {
    padding: 0;
}

.contact-box:first-child .contact-box-inner {
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.contact-box:last-child .contact-box-inner {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.contact-box-inner {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #3b5bbe;
    padding: 30px 40px;
    height: 100%;
}

.contact-box:nth-child(2n) .contact-box-inner {
    background-color: #3b59b2;
}

.contact-box:nth-child(3n) .contact-box-inner {
    background-color: #3253b9;
}

.contact-box-inner h4,
.box-icon i {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin: 0 0 15px;
}

.contact-box-inner p {
    font-size: 16px;
    font-family: "Roboto";
    color: #fff;
    line-height: 1.5;
}

.contact-box-inner p a {
    color: #fff;
    word-break: break-all;
}

.footer-main {
    background: #03153e;
    position: relative;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 30px;
    background: #fff;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-block p {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    max-width: 350px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.social-icons i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    line-height: 35px;
    border-radius: 50%;
    background-color: #fff;
    font-size: 16px;
    color: #272c49;
}

.footer-block h6 {
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}

.footer-block ul li {
    font-size: 16px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.35s;
    padding-top: 17px;
}

.footer-block.add ul li {
    padding-left: 0;
    display: flex;
    align-items: center;
}

.footer-block.add ul li:first-child {
    align-items: flex-start;
}

.footer-block ul li span {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-right: 7px;
}

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.footer-copyright-main {
    background: #020e28;
    padding: 35px 0;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-copyright p a {
    color: #fff;
}

.breadcrumbs-bg-main {
    position: relative;
}

.breadcrumbs-bg {
    height: 250px;
    position: relative;
}

.breadcrumbs-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.breadcrumbs-content {
    max-width: unset;
    margin: 0 auto;
}

.breadcrumbs-content h1 {
    font-weight: 700;
    font-size: 64px;
    color: #ffffff;
    text-align: center;
}

.products-main {
    padding-bottom: 0;
}

/* .quality-assurance-main {
    padding: 0;
} */

.quality-assurance-flex {
    justify-content: center;
}

.quality-assurance-block {
    width: 20%;
}

.quality-assurance-block-inner {
    background-color: #f4f5f8;
    padding: 20px;
    box-shadow: 0.5px 0.866px 1px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    height: 100%;
    transition: .3s;
}

.quality-assurance-block:hover .quality-assurance-block-inner {
    background-color: #3b5bbe;
}

.quality-assurance-block:hover h3,
.quality-assurance-block:hover p {
    color: #fff;
}

.quality-assurance-heading h2 {
    margin-bottom: 20px;
}

.quality-assurance-heading p {
    text-align: center;
}

.quality-assurance-block img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    transition: .3s;
}

.quality-assurance-block h3,
.quality-assurance-block p {
    text-align: center;
}

.quality-assurance-block h3 {
    margin-bottom: 10px;
}

.quality-assurance-block p {
    margin-bottom: 0;
}

.home-company-right.about-page.why-us .img-right {
    height: 400px;
}

.icon-hide {
    display: none !important;
}

.quality-assurance-block:hover .icon-hide {
    display: block !important;
}

.quality-assurance-block:hover .icon-show {
    display: none;
}

.our-mission-main {
    padding-bottom: 0;
}

.our-mission-flex {
    margin: -15px;
    align-items: stretch;
}

.our-mission-block {
    padding: 15px;
}

.our-mission-block-inner {
    background-color: #3b5bbe;
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
}

.our-mission-block h3,
.our-mission-block p {
    color: #fff;
}

.our-mission-block p {
    margin-bottom: 0;
}

.our-mission-block img {
    width: 50px;
    height: 50px;
    filter: invert(1);
}

.parallel-bg-main {
    position: relative;
}

.parallel-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.parallel-info .container-main {
    height: 100%;
}

.parallel-content {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.parallel-bg {
    height: 400px;
    position: relative;
}

.parallel-bg::before {
    position: absolute;
    content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.parallel-content p,
.parallel-content h2 {
    color: #fff;
}

.parallel-content h2 {
    max-width: 900px;
    margin: 0 auto;
}

.parallel-content p {
    text-align: center;
    margin-top: 20px;
}

.home-company.about-page.why-us {
    position: relative;
    padding-bottom: 0;
    background-color: #f4f5f8;
}

/* .contact-page-main .container-main {
    max-width: 850px;
} */

.contact-page-main {
    padding-bottom: 0;
}

.contact-page-flex {
    display: flex;
    align-items: center;
}

.contact-page-flex .form-inner {
    width: 50%;
}

.contact-page h2 {
    margin-bottom: 30px;
}

.map {
    height: 447px;
    width: 50%;
    padding-left: 50px;
}

.map iframe {
    width: 100%;
    height: 447px;
}

.contact-page .form-field input,
.contact-page .form-field textarea {
    background: #f4f5f8;
}

/* body.contact .contact-box-main .container-main {
    max-width: 850px;
} */


.form-field {
    position: relative;
}

.form-field span img {
    width: 20px;
    height: 20px;
    border-radius: unset;
    opacity: 0.8;
}

.form-field span {
    position: absolute;
    top: 12px;
    right: 20px;
    pointer-events: none;
    border-radius: unset;
    pointer-events: none;
}

.faq-main {
    padding-bottom: 0;
}

.faq .home-publications-left {
    width: 100%;
    padding-right: 0;
}

.faq-main .container-main {
    max-width: 1120px;
}

.faq button.accordion-button {
    background-color: #3b5bbe;
    color: #fff;
}

.faq .accordion-item {
    margin-bottom: 20px;
}

.faq .accordion-body {
    background-color: #f4f5f8;
}

.faq h3 {
    margin-bottom: 30px;
    color: #000;
}

.product-tab-main {
    background-color: #f4f5f8;
    position: relative;
}

.product-details-flex {
    align-items: flex-start;
}

.product-details-left {
    padding-right: 0;
    overflow: hidden;
    border-radius: 10px;
}

.product-details-left img {
    transition: unset;
}

.product-details-right {
    padding-left: 50px;

}

.product-details-right h2 {
    text-align: unset;
    margin-bottom: 15px;
}

.product-tab ul {
    margin-bottom: 40px;
}

.products-table {
    overflow-y: auto;
}

.products-table::-webkit-scrollbar {
    width: 10px;  
    height: 12px; 
}

.products-table::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}

.products-table::-webkit-scrollbar-thumb {
    background: #3b59b2;
    border-radius: 10px;
    border: 2px solid #f1f1f1; /* padding effect */
}

.product-tab .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #3b59b2;
    font-weight: 600;
    padding: 10px 20px;
}

.product-tab .nav-link {
    color: #000;

}

.product-details-right button,
.submit-btn input {
    background-color: #3b59b2;
    width: max-content;
    height: 45px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    font-size: 16px;
    font-weight: 800;
    transition: .3s;
    text-transform: uppercase;
    margin-top: 20px;
}

.product-details-right button:hover {
    color: #fff;
}

.btn-check:focus+.btn,
.btn:focus,
.btn-close:focus {
    box-shadow: unset;
}

.product-modal .modal-header {
    border-bottom: 0;
    padding-bottom: 0;
}

.product-modal .submit-btn input {
    border: unset;
}

.product-modal .modal-header h5 {
    margin-bottom: 0;
}

.product-modal .btn-close {
    opacity: 1;
}

.products-table table {
    border-collapse: collapse;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.products-table caption {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding: 15px;
    background: #eef1f6;
}

.products-table th,
.products-table td {
    border: 1px solid #dee2e6;
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

.products-table th {
    background-color: #3b59b2;
    color: white;
    font-weight: 600;
}

.products-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.products-table thead th[colspan] {
    background: #005288;
    font-size: 16px;
    color: #fff;
}

.products-table .section-header {
    background-color: inherit;
    font-weight: bold;
    text-align: left;
    color: #333;
}

.product-info {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
}

.product-info ul {
    margin-bottom: 0;
}

.product-info ul li {
    list-style-type: disc;
    margin-bottom: 10px;
}

.product-info ul li:last-child {
    margin-bottom: 0;
}

.home-partners.detail-page {
    background-color: unset;
    padding-bottom: 0;
}

.home-partners.detail-page .product-name {
    margin-top: 15px;
}

.home-partners.detail-page .product-name h4 {
    font-size: 18px;
    color: #3b5bbe;
    font-weight: bold;
    line-height: 1.4;
}

.home-partners.detail-page .partner-images img {
    padding: 0;
    object-fit: cover;
}