@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

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

a {
    text-decoration: none;
    color: inherit;
}

html {
    scroll-padding-top: 80px;
}

:root {
    --primary-color: #053e84;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    overflow-x: hidden;
}



/* Top header */
.top-header {
    background: #fff;
    font-size: 14px;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.top-header a {
    color: #000;
    text-decoration: none;
}

.top-header img.flag {
    height: 16px;
    margin-left: 10px;
}

/* Navbar */
.navbar {
    background: #0d0b0e;
    ;
    padding: 0;
}

.navbar .nav-link {
    color: white;
    font-weight: 500;
    margin: 0 12px;
}

.navbar .nav-link:hover {
    color: #053e84 !important;
}

/* Phone box */
.phone-box {
    color: white;
    padding: 15px 20px;
    font-size: clamp(18px, 1.4vw, 28px);
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--primary-color);
}

/* Hero section */
.hero-section {
    background-color: #0d0b0e;
    ;
    color: white;
    position: relative;
    padding-bottom: 5rem;
    padding-top: 2rem;
}


.hero-img-box {
    position: relative;
}

/* .hero-img-box::after {
    content: "";
    background-color: var(--primary-color);
    position: absolute;
    width: 400px;
    height: 100%;
    right: 0;
    top: -78px;
} */

.hero-section h1 {
    font-weight: 800;
    font-size: 3.5rem;
}

.hero-section h1 span {
    color: #053e84;
}

.hero-section p {
    font-size: 1.1rem;
    color: #ccc;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 87, 240, 0.4);
}

.btn-light {
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 600;
    background-color: white;
    color: black;
    border-radius: 40px;
    border: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #f1f1f1;
    /* subtle grey */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.hero-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.hero-section .col-lg-6:last-child {
    padding-right: 0;
}


/* Section Wrapper */
.reliance-control-system {
    padding-bottom: 2rem;
    position: relative;
}

.product-wrappper {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    margin-top: -60px;
    gap: 10px;
    margin-bottom: 2rem;
}

.product-card {
    box-shadow: 0px 4px 18px 4px rgba(0, 0, 0, 0.25);
    padding: 2rem 1rem;
    text-align: center;
    background-color: #fff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Image inside card */
.product-card img {
    height: 250px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Headings */
.product-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 1rem 0;
}

.product-card h2 span {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

/* Paragraph text */
.product-card p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Hide button by default */
.product-card .btn-light {
    display: none;
}


.product-card:hover {
    background: var(--primary-color);
    color: #fff;
    margin: -2rem 0;
}



.product-card:hover h2 span {
    color: #fff;
}

.product-card:hover .btn-light {
    display: inline-block;
}

/* Button styling */
.product-card .btn-light {
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.product-card .btn-light:hover {
    background-color: #f5f5f5;
}

.unlock-processing-potential {
    background-color: #0d0b0e;
    ;
    color: white;
}


.unlock-processing-potential h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.unlock-processing-potential h2 span {
    color: var(--primary-color);
}

.unlock-processing-potential p {
    font-size: 16px;
    margin-bottom: 0.8rem;
}

.unlock-processing-potential .form-control {
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.unlock-processing-potential .form-control:focus {
    border-color: #053e84;
    box-shadow: 0 0 0 0.2rem rgba(23, 73, 255, 0.25);
}

.unlock-processing-potential textarea.form-control {
    resize: none;
}

.unlock-processing-potential .btn-primary,
.mixing-solutions .btn-primary {
    background-color: #053e84;
    border-color: #053e84;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.unlock-processing-potential .wpcf7-submit {
    background-color: #053e84 !important;
    border-color: #053e84 !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.unlock-processing-potential .btn-primary:hover {
    background-color: #0f36cc;
    transform: translateY(-2px);
}

.unlock-processing-potential img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.mixing-solutions {
    padding: 2rem 0;
}

section.mixing-solutions h2 {
    font-size: 48px;
    font-weight: 800;
}

.solution-card {
    position: relative;
}

.solution-card h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 800;
    text-align: center;
    padding: 0 20px;
}

.why-industries-trust-reliance a.btn.btn-light {
    background: rgba(129, 175, 247, 1);
    color: white;
}

.why-industries-trust-reliance {
    padding: 2rem;
}

.why-industries-trust-reliance h2 {
    font-size: 55px;
    font-weight: 800;
}

.why-industries-trust-reliance h4 {
    color: var(--primary-color);
    font-size: 21px;
    font-weight: 700;
}

.mixing-innovation {
    padding: 3rem 0;
}

.mixing-innovation img {
    width: 100%;
}

.mixing-innovation h4 {
    font-size: 18px;
    font-weight: 800;
}

.mixing-innovation h2 {
    font-size: 50px;
    font-weight: 800;
}

.mixing-innovation h2 span {
    color: var(--primary-color);
    display: block;
}

.our-customers {
    background: #F1F1F1;
    padding: 3rem 0;
}

section.our-customers .item img {
    height: 40px !important;
    width: auto;
    margin: 0 auto;
}

section.our-customers h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 48px;
    font-weight: 800;
}




.footer {
    background-color: #0d0b0e;
    ;
    color: #fff;
    padding-top: 1.5rem;
}

.footer h6 {
    font-weight: 800;
}

.footer-top {
    padding: 40px 0;
    padding-bottom: 0;
}

.footer-col {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 50px;
}

.footer-col.last {
    border-right: none;
}

.footer-logo {
    width: 250px;
    margin-bottom: 15px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

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

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-marquee {
    background: #0d0b0e;
    ;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    flex-shrink: 0;
    font-size: 70px;
    font-weight: 900;
    color: #fff;
    padding-right: 2rem;
    /* spacing between repeats */
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Bottom Bar */
.footer-bottom {
    background: #fff;
    color: #000;
    font-size: 13px;
    padding: 10px 0;
}

.footer-bottom a {
    color: #000;
    text-decoration: none;
}

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

/* Make sure image and form are aligned vertically */
/* ====about-page-css===== */

.breadcrumb-section {
    background-color: #0d0b0e;
    ;
    color: white;
    padding: 2rem 0;
}


.office-address {
    position: relative;
    background: #111;
    color: #fff;
    overflow: hidden;
}

.office-address .title {
    font-size: 2rem;
    color: #fff;
    font-weight: 900;
}

.office-address .title .highlight {
    color: #053e84;
    /* blue highlight */
}

.office-address h5 {
    color: #fff;
    margin-bottom: 10px;
}

.office-address p {
    font-size: 15px;
    color: #ccc;
}

.border-md-end {
    border-right: 1px solid #444;
}


.office-address::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url("../img/grayscale-photo-concrete-building.png") no-repeat center right;
    background-size: cover;
}


.breadcrumb-section h1 {
    font-weight: 800;
    font-size: 4rem;
}

.breadcrumb-section h1 span {
    color: var(--primary-color);
}




.contact-section h2 span {
    color: var(--primary-color);
    display: block;
}

.contact-section .text-primary {
    color: var(--primary-color) !important;
    font-size: 18px;
    font-weight: 600;
}

.contact-section p.fw-bold {
    font-size: 20px;
}

.contact-section small {
    font-size: 1rem;
    margin: 0.5rem 0;
    display: inline-block;
}

.contact-form {
    background: var(--primary-color);
    position: relative;
    color: #fff;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 93% 100%, 0 100%);
    padding: 20px 0;
}



.contact-form .wpcf7-form-control {
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 12px 15px;
    margin-bottom: 15px;
    font-size: 15px;
}

/* Make inputs white */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    background: #fff;
    color: #000;
}

/* Textarea height */
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Checkbox + privacy text */
.contact-form .wpcf7-list-item {
    display: flex;
    align-items: flex-start;
    font-size: 13px;
    color: #fff;
}

.contact-form .wpcf7-list-item input {
    margin-top: 3px;
    margin-right: 8px;
}

/* Submit Button */
.contact-form input[type="submit"] {
    width: max-content;
}









/* NEW Css */
.title-wrapper h2 {
    font-size: 52px;
    font-weight: 800;
}

.title-wrapper h2 span {
    color: var(--primary-color);
}

.high-intensity-mixers {
    padding: 2rem 0;
}

.high-intensity-mixers .title-wrapper span {
    display: block;
}

.features-section {
    padding: 2rem 0;
    background: #F1F1F1;
}

.icon-box.text-center {
    padding: 20px 40px;
}

.product-information {
    padding: 2rem 0;
}

.product-information .title-wrapper p {
    max-width: 700px;
    margin: 0 auto;
}


.product-information img {
    display: block;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 600px;
    height: 600px;
}



.pdf-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    gap: 4rem;
}

.inside-mixer-sec {
    padding: 2rem 0;
}

.mixer-card img {
    background: #F1F1F1;
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.mixer-content h4 {
    font-weight: 500;
    margin-top: 1rem;
}


.blog-main-section {
    padding: 2rem 0;
}

.join-our-newsletter {
    background: #0d0b0e;
    color: white;
    padding: 4rem 1rem;
}

.join-our-newsletter p {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 20px;
}

.inner-wrapper-form {
    display: flex;
    width: 80%;
    border-radius: 50px;
    background-color: white;
}

.join-our-newsletter .form-control {
    border-radius: 50px 0 0 50px;
    padding: 14px 20px;
    border: none;
    font-size: 15px;
    flex: 1;
    outline: none;
}

.join-our-newsletter .btn {
    padding: 14px 28px;
    background: #053e84;
    border: none;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.join-our-newsletter .btn:hover {
    background: #0f28c9;
    transform: none;
}

.latest-news-section {
    padding: 2rem 0;
}

.trade-show-main {
    padding: 2rem 0;
}

.upcomeing-text {
    background: #0d0b0e;
    color: white;
    padding: 4rem;
}

.upcomeing-text p {
    font-size: 20px;
}

.milestones-innovation {
    background: #F1F1F1;
    padding: 2rem 0;
}

.milestones-innovation .title-wrapper {
    max-width: 1000px;
    margin: 0 auto 2rem auto;
}





.mixing-solutions-sec {
    padding: 2rem 0;
}

.product-tab-buttons {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    margin-bottom: 30px;
    background: #001b48;
    border-radius: 39px;
}

.product-tab-buttons button {
    background: #001b48;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 20px 25px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    flex: 1;
}

.product-tab-buttons button.active {
    background: var(--primary-color);
}

.product-tab-buttons button:hover {
    background: var(--primary-color);
}

/* Content Section */
.product-content h2 {
    font-size: 2rem;
    font-weight: bold;
}

.product-content h2 span {
    color: var(--primary-color);
}

.product-content p {
    line-height: 1.6;
}

.product-content ul {
    list-style: disc;
    margin-top: 1rem;
    padding: 0;
}

.product-content ul li {
    margin-bottom: 1rem;
}

.btn-custom {
    border-radius: 30px;
    background-color: var(--primary-color);
    padding: 10px 20px;
    margin-right: 10px;
}

/* Hide inactive tab content */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.gray-background {
    background: #F1F1F1;
    padding: 2rem 0;
}

.white-bg {
    background: #fff;
    padding: 2rem 0;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 20px;
    background: #fff;
    border: none;
    outline: none;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

.faq-icon {
    font-size: 18px;
    font-weight: bold;
    color: #444;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #f9f9f9;
    font-size: 15px;
    color: #333;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    content: "↑";
    color: #053e84;
}


.latest-news-section h2 {
    font-size: 2rem;
    border-bottom: 2px solid #000;
    display: inline-block;
    padding-bottom: 5px;
}

.news-card {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.news-card img {
    height: 220px;
    object-fit: cover;
}

.latest-posts img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}



.current-menu-item>a {
    color: var(--primary-color) !important;
}



/* blog details page css */
.single-post-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px;
    line-height: 1.7;
    color: #333;
}

.single-post-wrapper .post-featured-image img {
    height: auto;
    margin-bottom: 25px;
    object-fit: cover;
}

.single-post-wrapper .entry-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 010px;
    color: #111;
}



.single-post-wrapper .post-meta {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 35px;
}

.single-post-wrapper .entry-content p {
    font-size: 1.125rem;
    margin-bottom: 25px;
}

.single-post-wrapper .entry-content img {
    width: 100%;
    height: auto;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.single-post-wrapper .entry-content h2,
.single-post-wrapper .entry-content h3 {
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #222;
}

.single-post-wrapper .entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    color: #555;
    font-style: italic;
    margin: 25px 0;
}

.single-post-wrapper .entry-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* blog details page end */


/* Root menu */
#menu-menu-1.navbar-nav li {
    position: relative;
}

/* Submenu */
#menu-menu-1.navbar-nav li ul.sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    background: #001444;
    /* adjust */
    padding: 10px 0;
    margin: 0;
    display: none;
    z-index: 1000;
    max-width: 350px;
}

#menu-menu-1.navbar-nav li ul.sub-menu li a {
    padding: 8px 15px;
    display: block;
    color: #fff;
    /*     white-space: nowrap; */
}

#menu-menu-1.navbar-nav li:hover>ul.sub-menu {
    display: block;
}

/* Chevron with ::after */
#menu-menu-1.navbar-nav li.menu-item-has-children>a::after {
    content: "\f078";
    /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* solid style */
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Rotate on hover */
#menu-menu-1.navbar-nav li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg);
}

/* section.mixing-solutions .container,
.hero-section .container,
.unlock-processing-potential .container {
    width: 100%;
    max-width: 100%;
    padding-left: calc((100vw - var(--bs-container-max, 1320px)) / 2);
    padding-right: 0;
} */



@media (min-width: 1800px) {
    .container {
        max-width: 1500px;
        padding: 0 20px;
    }
}

@media (min-width: 992px) {
    .unlock-processing-potential .row.align-items-center {
        display: flex;
        align-items: center;
    }
}




@media (max-width: 991px) {
    .phone-box {
        width: 100%;
        text-align: center;
    }
}