
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: #28176d;
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}



@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translateY(100vh);
        /* Start from the bottom of the viewport */
    }

    to {
        opacity: 1;
        transform: translateY(0);
        /* Animate to its original position */
    }
}

.fadeInUpCustom {
    animation-name: fadeInUpCustom;
    animation-duration: 1s;
    /* Adjust as needed */
    animation-fill-mode: both;
    /* Keeps the element in its final state */
}

/* Service item start */
.service-item li{
    list-style: none;
}
/* Service item end */



/*** Navbar Start ***/
.header-top {
    height: 70px;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: height 0.3s ease;
    padding: 0 15px;
}

/* Logo & Brand Styling */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    max-height: 50px;
    margin-right: 10px;
}

.navbar-brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}

.text-primary {
    color: #ff1c1c !important;
}

/* Navbar Links */
.navbar-light .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: #343a40;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: #ff1c1c;
}

/* Mobile Navbar */
@media (max-width: 991px) {
    .header-top {
        height: auto;
        padding-bottom: 10px;
    }

    .navbar {
        width: 100%;
    }

    .navbar-toggler {
        border: 1px solid #ff1c1c !important;
        color: #ff1c1c !important;
        margin-left: auto;
    }

    .navbar-collapse {
        background: #f8f9fa;
        padding: 10px;
        border-radius: 5px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: start;
        width: 100%;
    }

    .navbar-nav .nav-item {
        width: 100%;
        text-align: left;
        padding: 8px 0;
    }
}
/*** Navbar End ***/


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #31226d94;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 197px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .carousel-caption h2{
        font-size: 20px;
        padding-left: 22px;
        padding-right: 22px;
        margin-bottom: 5px !important;
    }
    .carousel-caption a{
        font-size: 10px;
        padding: 5px;
    }
}

.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

/*** Carousel End ***/

/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    /* background: rgb(40 23 104 / 72%); */
    background: linear-gradient(rgb(40 23 104 / 80%), rgba(253, 5, 5, 0.4)), url(../img/about-bg.png) center center;
}


/* Common Styling */
.display-6 { /* Reduced font size for a more modern feel */
    font-size: 2.2rem;
    font-weight: 700;
}

.btn-primary { /*Consistent primary red*/
    background-color: #e3262c;
    border-color: #e3262c;
}

.btn-primary:hover {
    background-color: #c51e23;
    border-color: #c51e23;
}

/* Our History Section Styling */
.history-image-wrapper { /* Added rounded corners and shadow */
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.08);
}

.history-timeline {
    margin-top: 2rem;
}

.history-timeline .timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.history-timeline .timeline-item:before {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 0;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #e3262c;
    border-radius: 50%;
    border: 3px solid #fff;
}

.history-timeline .timeline-year {
    font-weight: bold;
    margin-right: 0.5rem;
    color: #e3262c;
}
/* Initially hide the content except the first part */
.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Show only the first 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* When the content is expanded, show the entire text */
.expanded {
    display: block;
    -webkit-line-clamp: unset;
}
/* Quality Policy Section Styling */
.quality-policy-content {
    padding: 2rem;
}
.quality-policy-content:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.quality-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.quality-values .quality-value {
    display: flex;
    align-items: center;
    margin: 1rem 1.5rem;
}

.quality-values .quality-value i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    color: #e3262c;
}

.quality-values .quality-value span {
    font-weight: 500;
}


/* sections count */

/* Counts and Figures Section */
.bg-light {
    background-color: #f8f9fa !important; /* Light gray background */
}

.count-figure-item {
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: #fff; /* White background for items */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Subtle shadow */
}

.text-primary {
    color: #e3262c !important; /* Consistent primary red */
}

.text-muted {
    color: #6c757d !important; /* Medium gray for descriptions */
}

/* Our Esteemed Customers Section */
.customer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.customer-logo {
    width: 150px; /* Adjust logo size as needed */
    margin: 1rem;
    opacity: 0.6; /* Reduce transparency */
    transition: opacity 0.3s ease;
}

.customer-logo:hover {
    opacity: 1;
}

/* end count section  */

/* channel partner start */
.custom-section {
    background-color: #12223D;
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.text-content {
    max-width: 50%;
}
.image-content {
    max-width: 50%;
    position: relative;
}
.image-content img {
    width: 100%;
    border-radius: 5px;
}
/* .overlay-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #00AEEF;
    width: 120px;
    height: 60px;
} */
/* channel partner end */

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/*** Banner Start ***/
.banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/banner-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.banner .container {
    position: relative;
    z-index: 99;
}

.banner::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    top: -200px;
    left: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    bottom: -200px;
    right: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner .banner-design-1 {
    position: absolute;
    width: 30px;
    height: 500px;
    top: -165px;
    left: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

.banner .banner-design-2 {
    position: absolute;
    width: 30px;
    height: 500px;
    bottom: -165px;
    right: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

/*** Banner End ***/

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}

.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }

    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}

/*** Service End ***/

/*** Projects Start ***/
.project-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.project-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

/*** Projects End ***/


/*** Blog Start ***/
.blog .blog-item {
    height: 100%;
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    background: rgba(246, 138, 10, .3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    width: 100%;
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-heading {
    position: relative;
    background: var(--bs-white);
}

.blog .blog-item .blog-heading a.h4 {
    position: relative;
    width: 100%;
    display: inline-flex;
    transition: 0.5s;
    z-index: 2;
}

.blog .blog-item .blog-heading::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    right: 0;
    bottom: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-heading::after {
    width: 100%;
    background: var(--bs-primary);
}

.blog .blog-item:hover .blog-heading a.h4 {
    color: var(--bs-white);
}

.blog .blog-item:hover .blog-heading a.h4:hover {
    color: var(--bs-dark);
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}
/*** Team End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(246, 138, 10, .9);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
}

/*** FAQs End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--bs-primary);
    border-top: none;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border: 2px solid var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/





/*** Product Start ***/
.product .product-item {
    height: 100%;
}

.product .product-carousel .owl-nav {
    display: none;
}

.product .product-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.product .product-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px 10px 0 10px;
    background: #241a67;
    border: 3px solid var(--bs-primary);
    border-radius: 50%;
    transition: 0.5s;
}

.product .product-carousel .owl-dots .owl-dot.active {
    background: var(--bs-primary);
    border: 3px solid #241a67;
    transition: 0.5s;
}

.product .product-item .product-img {
    position: relative;
    overflow: hidden;
}

.product .product-item .product-img img {
    transition: 0.5s;
}

.product .product-item:hover .product-img img {
    transform: scale(1.1);
}

.product .product-item .product-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.05);
    transition: 0.5s;
}

.product .product-item:hover .product-img::after {
    height: 100%;
}

.product .product-item .product-content {
    transition: 0.5s;
}

.product .product-item:hover .product-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

/*** Product End ***/


/*** Core Values Section Start ***/
.core-values .value-item {
    background: var(--bs-light);
    padding: 30px;
    text-align: center;
    transition: 0.5s;
    border-radius: 10px;
}

.core-values .value-item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.core-values .value-item .value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/*** Core Values Section End ***/


/*** Partnership and Products Section Start ***/
.partnership-products .partner-logo img {
    max-width: 100%;
    height: auto;
}

.partnership-products .product-list li {
    font-size: 1.1rem;
    line-height: 2;

}

/*** Partnership and Products Section End ***/


/*** Vision and Mission Section Start ***/
.vision-mission .light-bg {
    background: #f8f9fa;
    /* Light gray background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.vision-mission {
    background: linear-gradient(135deg, #f3f4f6, #ffffff);
}
.mission-item:hover, .vision-item:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
/*** Vision and Mission Section End ***/



/*** Factory Information Section Start ***/
.factory-info .light-bg {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.factory-info .factory-item {
    transition: 0.5s;
}

.factory-info .factory-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.factory-info .factory-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 15px;
}

/*** Factory Information Section End ***/


/* Our Promotor Section Start */
.promotor {
    background: #f8f9fa;
    /* Light gray background, match with light-bg */
}

.promotor .promotor-image img {
    max-width: 100%;
    /* Make image responsive */
    border: 5px solid var(--bs-primary);
}

.promotor .promotor-text {
    font-size: 1.1rem;
    line-height: 1.8;

}

/* Our Promotor Section End */


/* Our Clients Section Start */
.clients {
    background: #f8f9fa;
    /* Light gray background, match with light-bg */
}

.clients .client-logo img {
    max-width: 100%;
    /* Make logo responsive */
}

/* Our Clients Section End */


/* Contact Us Page Specific CSS */

/* Hero Section Start */

.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/banner-img.jpg); */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}

/* Hero Section End */

/* Contact Us Section Start */
.contact {
    background: #f8f9fa;
}

.contact .contact-info h3 {
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
}

.contact .contact-info .contact-block p {
    line-height: 1.7;
    margin-bottom: 0.3rem;
    /* Space between lines */

}

.contact .contact-info .contact-block h5 {
    color: var(--bs-dark);
    margin-bottom: 0.2rem;
}

.contact .contact-form h3 {
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
}

.contact .contact-form .form-control {
    border-radius: 0;
    box-shadow: none;
    border-color: #ced4da;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ced4da !important;
    /* Border style */
    outline: none !important;
    /* Remove outline on focus */
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    /* Animation for input focus */
}

.contact .contact-form .form-control:focus {
    border-color: var(--bs-primary) !important;
    /* Changes border color on focus */
    box-shadow: none !important;
}

/* Contact Us Section End */

/* Products Page Specific CSS */
.products-page .product-section {
    background: #f8f9fa;
    padding: 20px 0;
}

.products-page .product-section:nth-child(odd) {
    background: #fff;
}

.products-page .product-section .product-info {
    padding: 20px;
}

.products-page .product-section .product-info h3 {
    color: var(--bs-primary);
    margin-bottom: 1.5rem;
}

.products-page .product-section .product-info p {
    line-height: 1.7;
}

.products-page .product-section .col-md-6:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-page .product-section img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    /* Or 'cover' as needed */
    display: block;
    margin: auto;
}

@media (min-width: 768px) {
    .products-page .product-section .flex-row-reverse {
        flex-direction: row-reverse;
    }
}

/* Products Page Specific CSS End */


/* Careers Page Specific CSS */
.careers {
    background: #f8f9fa;
    /* Use light background */
}

.careers .job-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: 0.5s;
}

.careers .job-item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.careers .job-item h4 {
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.careers .job-item p {
    line-height: 1.8;
}

.careers .application-form {
    background: var(--bs-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.careers .application-form h3 {
    margin-bottom: 1.5rem;
}

.careers .application-form .form-control {
    border-radius: 0;
    box-shadow: none;
    border-color: #ced4da;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ced4da !important;
    outline: none !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.careers .application-form .form-control:focus {
    border-color: var(--bs-primary) !important;
    box-shadow: none !important;
}

/* Careers Page Specific CSS End */
/* apps-fileview.texmex_20250227.00_p1
css.txt
Displaying css.txt. */

.quality-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.channel-li ul,li{
    list-style: none;
}