/* -----------------------------------------
   ROOT VARIABLES
----------------------------------------- */
:root {
    /* Fonts */
    --font-teko: 'Teko', sans-serif;
    --font-poppins: 'Poppins', sans-serif;

    /* Brand Colors */
    --color-primary-blue: #2246A1;
    --color-light-blue: #2472D0;
    --color-dark-blue: #152336;
}

/* -----------------------------------------
   RESET
----------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth fonts */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    background: #fff;
    overflow-x: hidden;
}

/* -----------------------------------------
   TYPOGRAPHY
----------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-teko);
    font-weight: 600;
    line-height: 1.2;
}

/* -----------------------------------------
   LINKS
----------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/* -----------------------------------------
   IMAGES
----------------------------------------- */
img {
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
}

/* -----------------------------------------
   BUTTONS
----------------------------------------- */
button,
input[type="submit"] {
    cursor: pointer;
    border: none;
    background: none;
}

/* -----------------------------------------
   FORMS
----------------------------------------- */
input,
textarea,
select {
    box-sizing: border-box;
    font: inherit;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--color-primary-blue);
}

/* -----------------------------------------
   LISTS
----------------------------------------- */
ul,
ol {
    list-style: none;
}


/* ========================================
    Top Header
======================================= */

/* Top Header */

.top-header {
    width: 100%;
    padding: 0 50px 0 50px;
    background: var(--color-dark-blue);
}

.top-header-container {
    width: 100%;
    max-width: 1300px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.iso-note p {
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: #ebeaea;
}

.top-header-contact-details {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.top-header-contact-details ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.top-header-contact-details ul li {
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    color: #ebeaea;
}

.top-header-contact-details ul li i {
    color: var(--color-light-blue);
    font-size: 15px;
    margin-right: 5px;
}

.top-header-contact-details p {
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    color: #ebeaea;
}

.top-header-contact-details p i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-right: 5px;
}

/* Main Header */

.main-header {
    width: 100%;
    padding: 0 35px 0 50px;
    background: #ffffff;
}

.main-header-container {
    width: 100%;
    max-width: 1300px;
    height: 100px;
    margin: 0 auto;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.updated-logo-with-tm {
    width: 220px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3px;
}

.updated-logo-with-tm {
    font-family: var(--font-poppins);
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: 0.1px;
    font-weight: 400;
    color: #444;
}

.header-logo {
    width: 190px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.mak-tech-logo {
    width: 188px;
    border: 2px solid var(--color-primary-blue);
    padding: 4px;
    background: #fff;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.maktech-left,
.maktech-right {
    height: 44px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.maktech-left {
    width: 90px;
    background-color: var(--color-primary-blue);
}

.maktech-right {
    width: 90px;
    padding-left: 5px;
    background-color: #ffffff;
}

.maktech-left h3,
.maktech-right h3 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    color: var(--color-primary-blue);
    padding-top: 5px;
}

.maktech-left h3 {
    color: #ffffff;
}

.maktech-right h3 {
    color: var(--color-primary-blue);
}

.header-navigation {
    width: 630px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
    height: 100px;
    /* Full header height */
    align-items: center;
    /* Vertically center menu items */
}

.nav-menu li {
    position: relative;
}

.nav-menu>li>a {
    text-decoration: none;
    color: #222;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    padding: 0 15px;
    /* Horizontal padding only */
    height: 100px;
    display: flex;
    align-items: center;
    /* center text vertically */
    transition: 0.25s ease;
}

/* + indicator next to Company, Products */
.plus {
    font-weight: 500;
    margin-left: 5px;
}

/* HOVER EFFECT FOR MAIN MENU */
.nav-menu>li:hover>a {
    background: var(--color-light-blue);
    /* your blue */
    color: #fff;
}

/* SUBMENU STYLE */
.submenu {
    list-style: none;
    background: #fff;
    position: absolute;
    top: 97px;
    /* dropdown starts just below main menu height */
    left: 0;
    min-width: 250px;
    border: 1px solid #ddd;
    padding: 0;
    display: none;
    z-index: 10;
}

/* Show submenu on hover */
.dropdown:hover .submenu {
    display: block;
}

/* Submenu items */
.submenu li a {
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #222;
    display: block;
    transition: 0.25s ease;
    border-bottom: 1px solid #ddd;
    /* Add border */
}

/* Remove border from last item */
.submenu li:last-child a {
    border-bottom: none;
}

/* Submenu hover effect */
.submenu li a:hover {
    background: var(--color-light-blue);
    color: #fff;
}

/* --------------------------
    Homepage - About Us
-------------------------- */

.home-hero-section {
    position: relative;
    display: block;
    width: 100%;

    background-image: url('../images/hero-bg-1.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 3px solid var(--color-light-blue);
    overflow: hidden;
}


/* Overlay */
.home-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(15, 60, 110, 0.65),
            /* tinted blue (left) */
            rgba(255, 255, 255, 0.85)
            /* tinted white (right) */
        );
    z-index: 1;
}

/* Ensure content stays above overlay */
.home-hero-section>* {
    position: relative;
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: 1250px;
    height: 525px;
    margin: 0 auto;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 100px
}

.hero-left,
.hero-right {
    width: calc((100% - 100px) / 2);
}

.hero-left h3 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 55px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-left p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image-section {
    position: relative;
    width: 450px;
    height: 420px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

/* DOTTED MASK */
.dotted-mask-bg::before {
    content: "";
    position: absolute;

    /* centered 300×300 dotted area */
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-image: radial-gradient(
        circle,
        rgba(150, 150, 150, 0.45) 3px,
        transparent 1.2px
    );
    background-size: 20px 20px;
    background-repeat: repeat;

    pointer-events: none;
    z-index: 1;
}

/* Grid items */
.image-cube-1,
.image-cube-4 {
    background: transparent;
    z-index: 2; /* above dots */
}

.image-cube-2,
.image-cube-3 {
    border: 3px solid #fff;
    background: transparent;
    z-index: 2; /* above dots */
    padding: 10px;
    
}

/* FIXED SIZE IMAGE BOX */
.image-cubeimg-box {
    width: 100%;
    height: 100%;
    background: #fff;

    position: relative;
    overflow: hidden;
}

/* CENTERED, STACKED IMAGES */
.image-cubeimg-box img {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    opacity: 0;
    animation: imageFade 12s infinite;
}

/* IMAGE DELAYS */
.image-cubeimg-box img:nth-child(1) { animation-delay: 0s; }
.image-cubeimg-box img:nth-child(2) { animation-delay: 3s; }
.image-cubeimg-box img:nth-child(3) { animation-delay: 6s; }
.image-cubeimg-box img:nth-child(4) { animation-delay: 9s; }

/* FADE ANIMATION */
@keyframes imageFade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    30%  { opacity: 1; }
    40%  { opacity: 0; }
    100% { opacity: 0; }
}


.image-cube-2 img,
.image-cube-3 img {
    width: 100%;
    height: auto;
}


.image-cube-1 {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.image-cube-4 {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.blue-cube {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--color-primary-blue);
}





.home-aboutus {
    width: 100%;
    padding: 100px 50px;
}

.home-aboutus-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 70px;
}

.home-aboutus-left,
.home-aboutus-right {
    width: calc((100% - 70px) / 2);
}

.home-aboutus-left h2 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-dark-blue);
    margin-bottom: 30px;
}

.home-aboutus-left p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #444;
    margin-bottom: 25px;
}

.home-aboutus-left p span {
    font-weight: 600;
    color: var(--color-dark-blue);
}

.space-20px {
    display: block;
    width: 100%;
    height: 20px;
}

.home-aboutus-buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    gap: 20px;
}

.home-aboutus-button-1 {
    border: 2px solid var(--color-dark-blue);
    background: var(--color-dark-blue);
    color: #ffffff;
    cursor: pointer;

    padding: 16px 21px;
    border-radius: 3px;

    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
}

.home-aboutus-button-1:hover {
    background: #ffffff;
    color: var(--color-dark-blue);
}

.home-aboutus-button-2 {
    border: 2px solid var(--color-dark-blue);
    background: #ffffff;
    color: var(--color-dark-blue);
    cursor: pointer;

    padding: 16px 21px;
    border-radius: 3px;

    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
}

.home-aboutus-button-2:hover {
    background: var(--color-dark-blue);
    color: #ffffff;
}

.home-aboutus-right {
    display: block;
    background-image: url('../images/new-factory-1.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

/* --------------------------
    Homepage - Products
-------------------------- */

.home-products {
    width: 100%;
    padding: 100px 50px 0 50px;

    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.03) 100%), url('../images/map.webp');
}

.home-products-container {
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.home-products-header,
.home-products-single-container {
    width: 100%;
}

.home-products-header p {
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-light-blue);
    margin-bottom: 10px;
    text-align: center;
}

.home-products-header h3 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 70px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-dark-blue);
    margin-bottom: 20px;
    text-align: center;
}

.home-products-single-container {
    width: 100%;
    background: #f5f5f5;
    box-shadow: rgba(40, 40, 40, 0.15) 0px 5px 81px 0px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
}

.home-products-single {
    width: 25%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.product-img-home {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-prod-single-img,
.home-prod-single-title {
    width: 100%;
}

.home-prod-single-img {
    display: block;
    height: 300px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.prod-powerpack {
    background-image: url(../images/products//hydraulic-power-pack.jpg);

}

.prod-cylinder {
    background-image: url(../images/products/hydraulic-cylinder.webp);
}

.border-right-dark {
    border-right: 5px solid #ddd;
}

.home-prod-single-title {
    padding: 30px 10px;
    /* border-top: 3px solid var(--color-light-blue); */
    background: var(--color-primary-blue);

    display: flex;
    justify-content: center;
    align-items: center;
}

.home-prod-single-title h3 {
    text-align: center;
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 33px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}

.bg-for-product {
    background-color: #ffffff;
}

.bg-for-list {
    background: #f3f3f3;
}

.home-prod-single-list {
    width: 100%;
    height: 100%;
    padding: 30px 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.home-prod-single-list h4 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-dark-blue);
}

.home-prod-single-list ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home-prod-single-list ul li {
    width: 100%;
    font-family: var(--font-poppins);
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-dark-blue);
    padding-bottom: 15px;
    border-bottom: 1px dashed #999;
}

.home-prod-single-list ul li span {
    text-transform: capitalize;
    font-weight: 500;
    color: var(--color-primary-blue);
}



/* --------------------------
    Homepage - Why Choose Us
-------------------------- */

.home-whyus {
    width: 100%;
    padding: 100px 50px;
}

.home-whyus-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 70px;
}

.home-whyus-left,
.home-whyus-right {
    width: calc((100% - 70px) / 2);
}


.home-whyus-right h2 {
    font-family: var(--font-teko);
    font-size: 54px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-dark-blue);
    margin-bottom: 30px;
}

.home-whyus-right p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #444;
    margin-bottom: 40px;
}

.home-whyus-points {
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}

.home-whyus-single {
    width: calc((100% - 40px) / 2);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: flex-start;
}

.home-whyus-single img {
    width: 60px;
    height: auto;
}

.home-whyus-single h4 {
    font-family: var(--font-teko);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-dark-blue);
    margin: 15px 0;
}

.home-whyus-single p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #444;
}

.home-whyus-left {
    display: block;
    background-image: url('../images/new-factory-2.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

/* --------------------------
    Homepage - Review
-------------------------- */

.home-review {
    width: 100%;
    padding: 100px 50px;
    background: #F9F9F9;
}

.home-review-container {
    width: 100;
    max-width: 1250px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
}

.home-review-header,
.home-review-main {
    width: 100%;
}

.home-review-header h3 {
    text-align: center;
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 70px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-primary-blue);
}

.home-review-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.home-review-comma {
    width: 50px;
}

.home-review-comma img {
    width: 50px;
    height: auto;
    filter: invert(76%) sepia(9%) saturate(0%) hue-rotate(139deg) brightness(116%) contrast(96%);
}

.home-review-text {
    width: 690px;
    padding-top: 15px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.home-review-text p {
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #444;
}

.home-review-text h5 {
    text-align: center;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-primary-blue);
}

/* --------------------------
    Footer
-------------------------- */

.footer-clients {
    width: 100%;
    padding: 30px;
    border-top: 1px solid #e4e4e4;
}

.footer-clients-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-clients-container img {
    width: 150px;
}

.footer-main {
    width: 100%;
    padding: 60px 50px;
    background: var(--color-dark-blue);
}

.footer-main-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-container-col-1 {
    width: calc((100% - 75px) * 0.3);
}

.footer-container-col-2 {
    width: calc((100% - 75px) * 0.2);
}

.footer-container-col-1 h3 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 25px;
}

.footer-container-col-1 h4,
.footer-container-col-2 h4 {
    font-family: var(--font-teko);
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    color: var(--color-light-blue);
    margin-bottom: 25px;
}

.footer-container-col-2 ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    margin: 0 0 25px 0;
}


.footer-container-col-2 ul li {
    font-family: var(--font-poppins);
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
}

.footer-container-col-1 p {
    font-family: var(--font-poppins);
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
}

.footer-container-col-1 h5 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    margin: 25px 0 18px 0;
}

.footer-container-col-1 h6 {
    font-family: var(--font-teko);
    text-transform: lowercase;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
    margin: 0 0 10px 0;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: flex-end;
}

.footer-container-col-1 h6 i {
    display: none;
}

.space25px {
    display: block;
    width: 100%;
    height: 27px;
}

.footer-credits {
    width: 100%;
    height: 55px;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-credits p {
    color: #aaa;
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}



/* ---------------------------

CSS for custom floating buttons

---------------------------- */

.fixed-icon-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-button:hover {
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.icon-button:active {
    color: white;
}

.call-button {
    background-color: var(--color-light-blue);
    /* Green */
}

.whatsapp-button {
    background-color: #25d366;
    /* WhatsApp Green */
}

.whatsapp-button i {
    font-size: 26px;
    /* Adjust the size of the WhatsApp icon */
}

.facebook-button {
    background-color: #4267B2;
    /* Facebook Blue */
}

.youtube-button {
    background-color: #FF0000;
    /* YouTube Red */
}

.instagram-button {
    background-color: #E1306C;
    /* Instagram Pinkish Red */
}

.icon-button i {
    font-family: FontAwesome;
}


@media screen and (max-width: 768px) {
    .fixed-icon-buttons {
        right: 12px;
        bottom: 15px;
    }
}

/* ------------------------------
    Pages Header
-------------------------------- */

.page-header {
    width: 100%;
    padding: 0 50px;
    height: 300px;
    border-bottom: 3px colid var(--color-light-blue);
    background-image: url('../images/new-page-header.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 3px solid var(--color-light-blue);

    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header-container {
    background: rgba(34, 70, 161, 0.5);
    border-radius: 10px;
    width: 75%;
    padding: 45px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-header-container h3 {
    font-family: var(--font-teko);
    text-align: center;
    font-size: 54px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
}

.page-header-line {
    display: block;
    background: rgba(235, 235, 235, 0.6);
    width: 150px;
    height: 2px;
}

.page-header-container p {
    font-family: var(--font-poppins);
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 15px;
    color: rgb(235, 235, 235);
    text-shadow: rgba(0, 0, 0, 0.2) 0px 0px 10px;
}

.page-header-container p span {
    font-size: 12px;
    color: rgb(235, 235, 235);
    margin: 0 5px;
}

/* ------------------------------
    Contact Page
-------------------------------- */

.contact-page {
    width: 100%;
    padding: 100px 50px;
}

.contact-page-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
}

.about-sidebar {
    width: 280px;
}

.contact-page-content,
.content-block-in-page {
    width: calc(100% - (280px + 70px));

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 25px;
}

.sidebar-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    background: #ffffff;
}

.sidebar-widget-box {
    width: 100%;
    background: #f2f2f2;
    border-radius: 3px;
    padding: 0 10px 20px 10px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}

.widget-box-top-line {
    display: block;
    width: 200px;
    height: 2px;
    background: var(--color-light-blue);
    margin-bottom: 18px;
}

.widget-box-content {
    width: 100%;
    background: transparent;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.widget-box-header {
    width: 100%;
    background: var(--color-dark-blue);
    padding: 15px 15px 13px 15px;
    border-radius: 3px;
}

.widget-box-header h5 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
}

.widget-box-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sidebar-links {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 15px;

    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar-links:hover {
    background-color: var(--color-light-blue);
    color: #ffffff;
}

.sidebar-iso,
.sidebar-iso-new {
    width: 100%;
    border-radius: 3px;
    padding: 20px;
    background: var(--color-dark-blue);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/*

.sidebar-iso img {
    width: 60px;
    height: auto;
    filter: invert(100%) sepia(3%) saturate(7500%) hue-rotate(213deg) brightness(109%) contrast(100%); 
}

*/

.sidebar-iso-new img {
    width: 70px;
    height: auto;
}

.sidebar-iso p,
.sidebar-iso-new p {
    font-family: var(--font-teko);
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
}

.sidebar-download-link {
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    padding: 10px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.sidebar-download-link h4 {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #333;
}

.download-icon {
    width: 40px;
    height: 37px;
    background: var(--color-primary-blue);
    border-radius: 3px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.download-icon i {
    font-size: 15px;
    color: #ffffff;
}

.contact-page-contact-details {
    width: 45%;
    padding-top: 15px;
}

.contact-page-contact-details h4 {
    font-family: var(--font-teko);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--color-dark-blue);
}

.contact-page-contact-details p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #444444;
}

.contact-page-map {
    width: 100%;
}

.contact-page-map-container {
    width: 100%;
    height: 400px;
    border: 1px solid #e5e5e5;
}

.contact-page-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.about-page-writeup {
    width: 100%;
    padding-bottom: 5px;
}

.about-page-writeup h3 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark-blue);
    margin-bottom: 30px;
}

.about-page-writeup p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #444444;
    margin-bottom: 20px;
}

.about-page-writeup h6 {
    font-family: var(--font-teko);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark-blue);
    margin-bottom: 20px;
}



.aboutus-whyus {
    width: 100%;
    background: #f8f8f8;
    padding: 60px 45px;

    display: flex;
    flex-direction: column;
    gap: 50px;
}

.aboutus-whyus-header,
.aboutus-whyus-points {
    width: 100%;
}

.aboutus-whyus-header p {
    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-light-blue);
    margin-bottom: 20px;
    text-align: center;
}

.aboutus-whyus-header h4 {
    font-family: var(--font-teko);
    font-size: 50px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-dark-blue);
    text-align: center;
}

.aboutus-whyus-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}

.aboutus-whyus-single {
    width: calc((100% - 60px) / 3);
    padding: 60px 10px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.aboutus-whyus-single img {
    width: 60px;
    height: auto;
    opacity: 0.5;
}

.aboutus-whyus-single h5 {
    font-family: var(--font-teko);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-dark-blue);
    text-align: center;
}

.about-quality-policy {
    width: 100%;
}

.about-quality-policy img {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.about-quality-policy h3 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark-blue);
    margin-bottom: 20px;
}

.about-quality-policy p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #444444;
    margin-bottom: 20px;
}

.about-quality-policy ul {
    list-style: disc;
    padding-left: 25px;
}

.about-quality-policy ul li {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #444444;
    margin-bottom: 5px;
}

.about-page-writeup h4 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-dark-blue);
    margin-bottom: 5px;
}

.about-industries-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.about-industries-single {
    width: calc((100% - 60px) / 3);
    background-color: #F2F2F2;
    padding: 10px;
}

.about-industries-single img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.about-industries-single p {
    padding: 2px 0 0 10px;
    border-left: 3px solid var(--color-light-blue);

    font-family: var(--font-teko);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-dark-blue);
}

.extra-margin {
    margin: 15px 0;
}

.infra-content-image-block {
    display: block;
    background: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 8px;
}

.infra-img-block-1,
.infra-img-block-2 {
    display: block;
    width: calc((100% - 8px) / 2);
    height: 420px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.infra-img-block-2 {
    background-image: url('../images/new-factory-1.webp');
}

.infra-img-block-1 {
    background-image: url('../images/new-factory-2.webp');
}




.product-page-content {
    width: calc(100% - (280px + 70px));

    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-page-title,
.category-page-title {
    width: 100%;
}

.product-page-title h3 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-dark-blue);
    padding-bottom: 10px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--color-dark-blue)
}

.product-page-buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.prod-inq-button,
.prod-download-button {
    font-family: var(--font-poppins);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    line-height: 1;
    padding: 10px 15px;
    cursor: pointer;
    color: #ffffff;
    transition: 0.3s;
}

.prod-inq-button {
    background: var(--color-primary-blue);
}

.prod-download-button {
    background: var(--color-dark-blue);
}

.prod-inq-button:hover {
    background: var(--color-dark-blue);
}

.prod-download-button:hover {
    background: var(--color-primary-blue);
}

.product-page-img-into {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.product-pag-img {
    width: calc((100% - 50px) * 0.4);
    border: 2px solid #f2f2f2;
}

.product-page-intro {
    width: calc((100% - 50px) * 0.6);
}

.product-pag-img img {
    width: 100%;
    height: auto;
}

.product-page-intro p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #444;
    margin-bottom: 30px;
}

.prod-page-spec {
    width: 100%;
    background-color: #f2f2f2;
    padding: 5px;

    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 3px;
}

.prod-page-spec-cell {
    width: calc((100% - 3px) * 0.3);
    padding: 10px;
    background: #ffffff;
}

.prod-page-spec-cell-data {
    width: calc((100% - 3px) * 0.7);
    padding: 10px;
    background: #ffffff;
}

.prod-page-spec-cell h5 {
    font-family: var(--font-teko);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-dark-blue);
    padding-top: 2px;
}

.prod-page-spec-cell-data p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #444;
}

.category-page-title h3 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-dark-blue);
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-dark-blue)
}

.category-page-intro {
    width: 100%;
}

.category-page-intro p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #444;
    margin-bottom: 30px;
}




.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 50px;
}

.category-single {
    width: calc((100% - 60px) / 3);
    background-color: #F2F2F2;
    padding: 10px;
}

.category-single img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.category-single p {
    padding: 2px 0 0 10px;
    border-left: 3px solid var(--color-light-blue);

    font-family: var(--font-teko);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-dark-blue);
}



.logo-carousel {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-logos 60s linear infinite;
}

.logo-track img {
    width: 150px;
    height: auto;
    margin-right: 20px;
    padding: 10px;
    /* border: 1px solid #e5e5e5; */
    background: #fff;
    object-fit: contain;
}

/* Animation */
@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover (optional) */
.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}






.hero-button-1 {
    border: 2px solid #f5f5f5;
    background: transparent;
    color: #ffffff;
    cursor: pointer;

    padding: 16px 21px;
    border-radius: 3px;

    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
}

.hero-button-1:hover {
    background: var(--color-dark-blue);
    color: #fff;
    border: 2px solid #f5f5f5;
}

.home-aboutus-button-2 {
    border: 2px solid var(--color-dark-blue);
    background: #ffffff;
    color: var(--color-dark-blue);
    cursor: pointer;

    padding: 16px 21px;
    border-radius: 3px;

    font-family: var(--font-poppins);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
}

.home-aboutus-button-2:hover {
    background: var(--color-dark-blue);
    color: #ffffff;
}







.homepage-new-hero {
    position: relative;
    width: 100%;
    height: 520px; /* adjust */
    overflow: hidden;
}

/* Slider wrapper */
.homepage-new-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Individual slides */
.newheroslide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

/* Active slide */
.newheroslide.newheroactive {
    opacity: 1;
}

/* Hero content above slider */
.hero-content {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 650px;
    margin-left: 50px;
    padding: 50px;

    background: rgba(21, 35, 54, 0.6); /* tinted blue */
    color: #ffffff;

    z-index: 2;
}

.hero-content h3 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-content p {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}




.home-exhibition {
    width: 100%;
    padding: 90px 50px;
    background: #fff;
}

.home-exhibition-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    gap: 60px;
}

.exhibition-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.exhibition-header h3 {
    font-family: var(--font-teko);
    text-transform: uppercase;
    font-size: 70px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-dark-blue);
    text-align: center;
}

.exhibition-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.exhibition-banner p {
    font-family: var(--font-poppins);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-primary-blue);
    text-align: center;
    margin-bottom: 15px;
}

.exhibition-banner img {
    width: 450px;
}









/* Pop Up Form */


.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.popup-overlay.active {
    display: flex;
}

.popup-box {
    background: #ffffff;
    width: 420px;
    max-width: 90%;
    padding: 30px;
    position: relative;
    border-radius: 4px;
}

.popup-box h3 {

    font-size: 24px;
    color: var(--color-dark-blue);
    margin-bottom: 15px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 26px;
    cursor: pointer;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.popup-form button {
    width: 100%;
    padding: 12px;
    background: var(--color-primary-blue);
    color: #fff;
    border: none;
    cursor: pointer;
}


.form-success-message {
    text-align: center;
    padding: 20px;
}

.form-success-message h3 {
    color: var(--color-primary-blue);
    font-size: 24px;
    margin-bottom: 10px;
}
