/*
Theme Name: Nilesh Enterprise WP
Theme URI: https://wordpress.org/
Author: Nilesh Enterprise WP
Author URI: https://wordpress.org/
Description: Nilesh Enterprise WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: Nilesh Enterprise-wp
*/


body {
    overflow-x: hidden;
    /*font-family: 'LT Superior';*/
    font-family: "Montserrat", sans-serif;
    background: #f8f1e7;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

h1 {
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 0px;
    line-height: normal;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 20px;
    line-height: normal;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: normal;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    line-height: normal;
}

p {
    line-height: 35px;
    font-size: 18px;
    margin: 0px;
    padding-bottom: 15px;
}
/* ========================================
   Header
   ======================================== */
header {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #7e684b;
    /*backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);*/
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

/* ========================================
   Desktop Navigation
   ======================================== */
nav {
    display: flex;
    align-items: center;
}

nav>ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav>ul>li {
    position: relative;
}

nav li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    white-space: nowrap;
}

nav li>a:hover {
    color: var(--color-text);
    background: var(--color-bg-secondary);
}

/* Dropdown Indicator - CSS Arrow for items with submenus */
nav li:has(> ul)>a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    transition: var(--transition-fast);
}

/* ========================================
   Desktop Submenu (Level 2+)
   ======================================== */
nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #7e684b;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

/* Nested submenu positioning (Level 3+) */
nav li ul li ul {
    top: 0;
    left: 100%;
    margin-left: 0px;
}

nav li ul li {
    position: relative;
    width: 100%;
}

nav li ul li>a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    justify-content: space-between;
}

nav li ul li>a:hover {
    background: var(--color-bg-tertiary);
    color: var(--color-text);
}

/* Rotate nested arrow indicator to point right */
nav li ul li:has(> ul)>a::after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid currentColor;
    border-right: none;
    margin-left: auto;
}

/* Show submenu on hover (desktop) */
@media (min-width: 769px) {
    nav li:hover>ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Rotate dropdown arrow on hover */
    nav>ul>li:hover>a::after {
        transform: rotate(180deg);
    }

    /* Hide mobile elements on desktop */
    .menu-toggle,
    .nav-close,
    .nav-overlay {
        display: none !important;
    }
}

/* ========================================
   Mobile Menu Toggle (Hamburger)
   ======================================== */
.menu-toggle {
    display: none;
    position: fixed;
    right: 20px;
    top: 5%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    z-index: 1001;
    border: none;
}

.menu-toggle:hover {
    background: var(--color-bg-tertiary);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #7e684b;
    border-radius: 2px;
    transition: var(--transition-normal);
}

/* Hamburger to X animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Close Button (Mobile)
   ======================================== */
.nav-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    z-index: 10;
}

.nav-close:hover {
    background: var(--color-primary);
    transform: rotate(90deg);
}

.nav-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
}

.nav-close span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-close span:nth-child(2) {
    transform: rotate(-45deg);
}

/* ========================================
   Mobile Navigation
   ======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: relative;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - var(--header-height));
        height: auto;
        background: #000;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition-slow), opacity var(--transition-normal), visibility var(--transition-normal);
        z-index: 1000;
        display: block;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        border: none;
    }

    /* Mobile Nav List */
    nav>ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    nav>ul>li {
        position: relative;
    }

    nav li>a {
        padding: 5px 16px;
        border-radius: var(--radius-sm);
        justify-content: space-between;
    }

    /* Mobile Submenu */
    nav li ul {
        position: static;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: var(--radius-sm);
        box-shadow: none;
        padding: 0;
        margin-top: 4px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        overflow: hidden;
        transition: max-height var(--transition-slow),
            opacity var(--transition-normal),
            visibility var(--transition-normal),
            padding var(--transition-normal);
    }

    nav li ul.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 8px 0 8px 16px;
    }

    nav li ul li ul {
        margin-left: 0;
        background: rgba(0, 0, 0, 0.15);
    }

    nav li ul li>a {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    /* Reset arrow for mobile - all point down */
    nav li:has(> ul)>a::after,
    nav li ul li:has(> ul)>a::after {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid currentColor;
        border-bottom: none;
        margin-left: auto;
        transition: var(--transition-fast);
    }

    /* Rotate arrow when submenu is open */
    nav li:has(> ul.active)>a::after {
        transform: rotate(180deg);
    }

    /* Left border for visual hierarchy */
    nav li ul li {
        border-left: 2px solid var(--color-border);
        padding-left: 12px;
        margin-left: 4px;
    }

    nav li ul li:hover {
        border-left-color: var(--color-primary);
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-overlay);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-normal), visibility var(--transition-normal);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

nav.active>ul>li {
    animation: fadeIn 0.3s ease forwards;
}

nav.active>ul>li:nth-child(1) {
    animation-delay: 0.05s;
}

nav.active>ul>li:nth-child(2) {
    animation-delay: 0.1s;
}

nav.active>ul>li:nth-child(3) {
    animation-delay: 0.15s;
}

nav.active>ul>li:nth-child(4) {
    animation-delay: 0.2s;
}

nav li.current-menu-item a::before {
    content: "";
    display: block;
    height: 3px;
    width: 30%;
    background-color: #fff;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 15%;
    bottom: 0%;
}

nav li ul li.current-menu-item a::before{
    display: none;
}

.logocontainer{
    border-top: 3px solid #7e684b;
    padding: 10px 0;
}
.headerphonemeial,
.headersocial{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.headerlogo img{
    width: auto;
    min-width: auto;
}

.headerphonemeial ul{
    text-align: center;
}

.headerphonemeial ul li{
    display: inline-block;
    padding: 0 10px;
}

.headerphonemeial ul li i{
    color: #7e684b;
    width: 35px;
    height: 35px;
    border: 1px solid #7e684b;
    padding: 7px;
    border-radius: 50%;
}

.headerphonemeial ul li a{
    font-size: 17px;
    color: #7e684b;
}
.headersocial ul{
    text-align: right;
}
.headersocial ul li{
    display: inline-block;
}
.headersocial ul li i{
    color: #7e684b;
}
.logocontainer{
    position: relative;
    left: 0;
    right: 0;
    background: #f3ece3e6;
    z-index: 9;
}

.headerbanner img{
    position: relative;
    z-index: -1;
}
.carousel-caption {
    position: absolute;
    margin: 0;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.herobannertext h2{
    font-size: 50px;
    line-height: 60px;
    font-weight: bold;
    text-align: left;
    color: #fdfdfd;
    margin-bottom: 30px;
    text-transform: uppercase;
    padding-bottom: 0px;
    margin-bottom: 0px;
    background: #271c0d;
    padding-left: 10px;
}

.herobannertext h2 span{
    color: #fff;
    font-size: 60px;
}

.herobannertext p{
    font-size: 17px;
    line-height: 30px;
    color: #fff;
    text-align: left;
}

.homeabouttext h1{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
    margin-bottom: 30px;
}

.homeabouttext p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
    margin: 0 50px;
}

.homeabouttext{
    margin: 50px 0 0 0;
}

.welcomebtn{
    text-align: center;
    margin-top: 30px;
}

.welcomebtn a{
  font-size: 17px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  transition: all 0.75s ease;
  color: #fff;
  background: #7e684b;
  box-shadow: 0 0 #271c0d;
  border-radius: 5px;
}
.welcomebtn a:hover {
  box-shadow: 0.3rem 0.3rem #271c0d;
}
.welcomebtn a:focus {
  box-shadow: 0.3rem 0.3rem #271c0d;
}

.ourproductcontainer{
    margin: 50px 0 0 0;
}

.ourproductcontainer h2{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
    margin-bottom: 0px;
}

.ourproductimg img{
    width: auto;
    min-width: auto;
    border-radius: 10px;
}

.ourproduct{
    position: relative;
    top: 50%;
   -webkit-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
}

.ourproductA{
    position: relative;
    top: 50%;
   -webkit-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
}

.ourproduct h3{
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    text-align: left;
    color: #271c0d;
    padding-right: 250px;
    padding-bottom: 0px;
}

.ourproduct p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
    padding-right: 100px;
    padding-bottom: 0px;
    font-weight: 500;
}

.ourproductA h3{
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    text-align: right;
    color: #271c0d;
    padding-left: 250px;
    padding-bottom: 0px;
}

.ourproductA p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: right;
    padding-left: 100px;
    padding-bottom: 0px;
    font-weight: 500;
}

.ourproduct,
.ourproductimg{
    margin-bottom: 30px;
    text-align: center;
}

.ourproduct h4{
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 5px;
}

.ourproductA h4{
    font-size: 20px;
    font-weight: 600;
    text-align: right;
    margin-bottom: 0;
    padding-bottom: 5px;
}

.manufacturingunit{
    margin: 50px 0 0 0;
}

.ourmanufacturing h2{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: left;
    color: #271c0d;
}

.ourmanufacturing p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
    padding-bottom: 50px;
}

.manufacturingbtn{
    text-align: right;
}

.manufacturingbtn a{
  font-size: 17px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  transition: all 0.75s ease;
  color: #fff;
  background: #7e684b;
  box-shadow: 0 0 #271c0d;
  border-radius: 5px;
}
.manufacturingbtn a:hover {
  box-shadow: 0.3rem 0.3rem #271c0d;
}
.manufacturingbtn a:focus {
  box-shadow: 0.3rem 0.3rem #271c0d;
}

.ourmanufacturing{
    position: relative;
    top: 50%;
   -webkit-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   transform: translateY(-50%);
}

.manufacturingunitimg img{
    width: 100%;
    border-radius: 10px;
}

.recentevents{
    margin: 50px 0 0 0;
}

.recentevents h2{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
}

.recenteventsbox img{
    max-width: 100%;
    height: 250px;
    object-fit: cover;
}

.recenteventsbox h3{
    font-size: 15px;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
    margin: 20px 0 0 0;
    padding-bottom: 5px;
}

.recenteventsbox p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
}

.recenteventsbtn{
    text-align: center;
    margin: 20px 0 0 0;
}

.recenteventsbtn a{
  font-size: 17px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  transition: all 0.75s ease;
  color: #fff;
  background: #7e684b;
  box-shadow: 0 0 #271c0d;
  border-radius: 5px;
}
.recenteventsbtn a:hover {
  box-shadow: 0.3rem 0.3rem #271c0d;
}
.recenteventsbtn a:focus {
  box-shadow: 0.3rem 0.3rem #271c0d;
}

.ourteamcontainer{
    margin: 30px 0 0 0;
    padding: 50px 0;
    background: #33281a;
}

.ourteamcontainer h2{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.ourteambox{
    background: #493b28;
    border-radius: 15px;
    padding: 20px 15px;
    margin-bottom: 30px;
    transition: all 0.6s ease-in;
}
.ourteambox:hover{
    transform: translateY(-5px);
    transition: all 0.6s ease-in;
}

.ourteambox img{
    width: auto;
    min-width: auto;
    margin: 0 auto;
    display: block;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.ourteambox img:hover{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.ourteambox h3{
    color: #fff;
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    text-align: left;
    margin: 20px 0 0 0;
    padding-bottom: 5px;
}

.ourteambox p{
    font-size: 17px;
    line-height: 30px;
    color: #afafaf;
    text-align: left;
    padding-bottom: 0px;
}

.ourassociationcontainer{
    margin: 50px 0 0 0;
}

.ourassociationcontainer h2{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
}

.associationlogo img{
    width: auto;
    min-width: auto;
    margin: 0 auto;
    display: block;
    border: 2px solid #b7a894;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    transition: .6s ease-in-out;
}

.associationlogo img:hover{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .5s ease-in-out;
    transform: translateY(-5px);
}


.associationlogo{
    margin-bottom: 20px;
}

.footercontainer{
    margin: 30px 0 0 0;
    padding: 30px 0;
    background: #7e684b;
}

.footermenu ul li a{
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    padding-bottom: 0px;
    font-weight: 500;
}

.footermenu ul li a:hover{
    color: #271c0d;
    transition: all 0.75s ease;
    text-decoration: underline;
}

.footerlocation p{
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
    padding-bottom: 0px;
}

.footerlocation ul li{
    display: inline-block;
}

.footerlocation ul li a{
    color: #fff;
}

.footerlogo img{
    width: auto;
    min-width: auto;
}

p.copyrights,
p.copyrights a{
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    padding-bottom: 0px;
    font-weight: 500;
    margin: 20px 0 0 0;
}

.footerlocation ul{
    margin: 20px 0 0 0;
}

.footerlocation ul li i{
    padding-right: 20px;
    font-size: 18px;
    color:#fff;
}

.footerlocation ul li i:hover{
    color: #FFE469;
    transition: all 0.75s ease;
}


/*-----Contact Us Page------*/
.contactuscontainer{
    margin: 30px 0 0 0;
}

.contactuscontainer h1{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
}

.contacticon{
    text-align: center;
}

.contacticon i{
    color: #7e684b;
    width: 45px;
    height: 45px;
    border: 1px solid #7e684b;
    padding: 12px;
    border-radius: 50%;
    margin-bottom: 10px;
    font-size: 20px;
}

.contactlocation p,
.contactlocation p a{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
    padding-bottom: 0px;
}

.contactaddress{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 150px;
    padding: 20px;
    border-radius: 10px;
}

.contactaddress:hover{
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: all 0.75s ease-in;
}

.contactmapcontainer{
    margin: 50px 0 0 0;
}

.contactfomsmfield{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    margin-bottom: 10px;
    background: #f8f1e7;
    border: 1px solid #7e684b;
}

.contactfombgfield{
    width: 100%;
    height: 100px;
    padding:10px;
    margin-bottom: 10px;
    background: #f8f1e7;
    border: 1px solid #7e684b;
}

.submitbtn{
  font-size: 17px;
  cursor: pointer;
  display: inline-block;
  padding: 10px 20px;
  transition: all 0.75s ease;
  color: #fff;
  background: #7e684b;
  box-shadow: 0 0 #271c0d;
  border-radius: 5px;
  border: none;
  float: right;
}
.submitbtn:hover {
  box-shadow: 0.3rem 0.3rem #271c0d;
}
.submitbtn:focus {
  box-shadow: 0.3rem 0.3rem #271c0d;
}

.contactform h3{
    font-size: 20px;
    line-height: 25px;
    color: #6b6966;
    text-align: left;
    font-weight: 500;
}

.innerpagecontainer{
    margin: 30px 0 0 0;
}

.innerpagetitle h1 {
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
}

.cheranmachinescontainer{
    margin: 30px 0 0 0;
}

.cheranmachinescontainer h1{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
}

.cheranmachionesproduct h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    text-align: left;
    color: #271c0d;
    padding-bottom: 0px;
}

.cheranmachionesproduct{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 0.65s ease-in;
}
.cheranmachionesproduct:hover{
    transition: all 0.6s ease-in;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 10px;
    transition: all 0.55s ease-in;
    transform: translateY(10px);
}
.cheranmachionesproduct img{
    width: 100%;
}

.cheranmachionesproduct h2{
    font-size: 20px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
    padding-bottom: 0px;
    font-weight: 500;
    margin: 20px 0 0 0;
    height: 90px;
}

.innerpagetitle ul li{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
    padding-bottom: 0px;
    font-weight: 500;
    margin-bottom: 10px;
}

.innerpagetitle ul li::before{
    position: relative;
  top: calc(50% - 4px); /* half font-size */
  left: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f35a";
  font-size: 17px;
  font-weight: 900;
  padding: 0 5px;
  color: #7e684b;
}

.singlecherancontainer{
    margin: 30px 0 0 0;
}

.singlecherancontainer h1{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
    margin-bottom: 20px;
}

.singlecheranprodetails h5{
    font-size: 22px;
    line-height: 25px;
    font-weight: bold;
    text-align: left;
    color: #271c0d;
    padding-bottom: 0px;
}

.singlecheranprodetails h3{
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    text-align: left;
    color: #271c0d;
    padding-bottom: 0px;
}

.singlecheranprodetails ul li{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
    padding-bottom: 0px;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
}

.singlecheranprodetails ul li::before{
    position: relative;
  top: calc(50% - 4px); /* half font-size */
  left: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f35a";
  font-size: 17px;
  font-weight: 900;
  padding: 0 5px;
  color: #7e684b;
}

.singlecheranproimg img{
    width: auto;
    min-width: auto;
    display: block;
    margin: 0 auto;
}

.singlecheranprodetails table tbody tr td{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
    padding-bottom: 0px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cheranmachionesproduct:hover{
    background: #7e684b;
    transition: all 0.6s ease-out;
}

.cheranmachionesproduct:hover h2{
    color: #fff;
}

.mrglobalmachineimg img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.contactaddress:hover{
    background: #7e684b;
    transition: all 0.65s ease-in;
}

.contactaddress:hover p,
.contactaddress:hover p a,
.contactaddress:hover i{
    color: #fff;
}
.contactaddress:hover i{
    border: 1px solid #fff;
}

.associationcontainer{
    margin: 30px 0 0 0;
}

.associationcontainer h1{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
    margin-bottom: 20px;
}

.associationmemberimg h3{
    font-size: 20px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
    padding-bottom: 0px;
    font-weight: 500;
    margin-bottom: 10px;
}


.associationcontainer h2{
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
    margin-bottom: 20px;
    margin-top: 20px;
}

.associationmemberimg{
    margin-bottom: 20px;
}

.associationmemberimg img{
    width: auto;
    min-width: auto;
    margin: 0 auto;
    display: block;
    border: 2px solid #b7a894;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.associationmemberimg img:hover{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.singlemrglobalimg img{
    width: 100%;
    min-width: auto;
    display: block;
    margin: 0 auto;
}

.responsivesocial{
    display: none;
}

.innerpagetitle p{
    font-size: 17px;
  line-height: 30px;
  color: #6b6966;
  text-align: left;
}

#navbar{
    transition:all .5s ease-in-out;
}
.scroll {
    background-color:#fff !important;
}

.screenpicontainer h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: bold;
    text-align: left;
    color: #271c0d;
    margin: 20px 0;
    padding-bottom: 0;
}

.spibox h3{
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-align: left;
    color: #271c0d;
    margin-bottom: 0;
    padding-bottom: 5px;
}

.spibox h4{
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    text-align: left;
    color: #271c0d;
    padding-bottom: 0;
}

.spibox p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
}

.applicationbox h6{
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    text-align: left;
    color: #271c0d;
    padding-bottom: 0;
}

.applicationbox ul li::before{
    position: absolute;
  top: calc(50% - 4px); /* half font-size */
  left: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  font-size: 8px;
  font-weight: 900;
  top: 5px;
}
.applicationbox ul li{
    position: relative;
    font-size: 17px;
    color: #6b6966;
    padding: 0 15px;
    display: inline-block;
}

.spiboximg img{
    width: 100%;
    transition: all 0.64s ease-out;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 10px;
}

.spiboximg img:hover{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: all 0.64s ease-out;
    transform: translateY(10px);
}
.spibox{
    margin-bottom: 50px;
}

.spiboximg{
    margin-bottom: 50px;
}

.screenpicontainer h2{
  position: relative;
  display: inline-block;
}

.screenpicontainer h2::after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 50%;
    height: 2px;
    background: black;
    left: 0;
}

.newsPagecontainer{
    margin: 30px 0 0 0;
}

.newsPagecontainer h1 {
    font-size: 40px;
    line-height: 45px;
    font-weight: bold;
    text-align: center;
    color: #271c0d;
}

.newsblock {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px;
    margin-bottom: 20px;
}

.newsblock img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
}

.newsblock h2 {
  font-size: 20px;
  line-height: 30px;
  color: #6b6966;
  text-align: center;
  padding-bottom: 0px;
  font-weight: 500;
  margin: 20px 0 0 0;
  height: 90px;
}

.aboutcontainer {
    margin: 30px 0 0 0;
}

.aboutcontainer h1{
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    text-align: center;
    color: #271c0d;
    margin-bottom: 20px;
}

.aboutcontainer p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
}
.legacycontainer{
    margin: 50px 0 0 0;
}

.leagacycontainerbox h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    text-align: left;
    color: #271c0d;
    padding-bottom: 0;
}

.leagacycontainerbox p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
}

.whatoffercontainer{
    margin: 50px 0 0 0;
}

.whatoffercontainer h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
    color: #271c0d;
    padding-bottom: 0;
}

.whatofferbox h3{
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-align: left;
    color: #271c0d;
    padding-bottom: 0px;
    height: 45px;
}

.whatofferbox p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
}

.industrycontainer h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    text-align: left;
    color: #271c0d;
    padding-bottom: 0;
}

.industrycontainer p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
}
.whatsetscontainer{
    margin: 50px 0 0 0;
}
.whatsetscontainer h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
    color: #271c0d;
}
.whatsetsbox{
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    height: 330px;
    border-radius: 15px;
    transition: all 0.65s ease-in-out;
}

.whatsetsbox:hover{
    transition: all 0.55s ease-in-out;
    transform: translateY(10px);
}

.whatsetsbox h3{
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-align: center;
    color: #271c0d;
    padding-bottom: 0;
}

.whatsetsbox p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
}

.industrycontainer{
    margin: 50px 0 0 0;
}

.leagacycontainerimg img{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
    transition: all 0.7s ease-in;
}

.leagacycontainerimg img:hover{
    transition: all 0.65s ease-in;
    transform: translateY(10px);
}

.whatweofferimgbox img{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
    transition: all 0.7s ease-in;
}

.industrycontainboximg img{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
    transition: all 0.7s ease-in;
    height: 250px;
    object-fit: cover;
}

.reachcontainer .reachbox{
  background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/images/colorful-paint-cans.jpg') center top no-repeat;
  background-size: cover;
  -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    height: 350px;
    padding: 30px;
    display: table-cell;
  vertical-align: middle;
}

.reachbox h3{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    padding-bottom: 0;
}

.reachbox p{
    font-size: 17px;
    line-height: 30px;
    color: #fff;
    text-align: center;
}

.reachcontainer{
    margin: 50px 0;
}
.whatweofferimgbox{
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.blogpagecontainer{
    margin: 30px 0 0 0;
}

.blogpagecontainer h1{
     font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    text-align: center;
    color: #271c0d;
    margin-bottom: 20px;
}

.postEntry p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
    padding-bottom: 10px;
}

.postEntry p small{
    font-weight: 600;
}

.postEntry h2,
.postEntry h2 a{
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    text-align: left;
    color: #271c0d;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.more a{
    font-size: 17px;
    cursor: pointer;
    display: inline-block;
    padding: 10px 20px;
    transition: all 0.75s ease;
    color: #fff;
    background: #7e684b;
    box-shadow: 0 0 #271c0d;
    border-radius: 5px;
}

.more a:hover {
    box-shadow: 0.3rem 0.3rem #271c0d;
}

.blogSidebar h3{
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    text-align: left;
    color: #271c0d;
    margin-bottom: 0px;
    padding-bottom: 0;
}

.blogSidebar ul li{
     font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
    display: flex;
}

.blogSidebar ul li::before{
    position: relative;
    top: calc(50% - 4px);
    left: 0px;
    font-family: "Font Awesome 5 Free";
    content: "\f35a";
    font-size: 15px;
    font-weight: 900;
    padding: 0 5px;
    color: #7e684b;
}
.blogSidebar ul li a{
    color: #6b6966;
    font-weight: 500;
}
.postmetadata a{
    color: #6b6966;
    font-weight: 600;
}

.blogSidebar .widget{
    margin-bottom: 10px;
}

.blogSidebar{
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 10px;
}

.innerBlogContainer{
    margin: 50px 0;
}

.innerBlogContainer h1{
     font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    text-align: left;
    color: #271c0d;
    margin-bottom: 20px;
}

.blogdetailscontent p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
}

.blogdetailscontent ul li{
     font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
    margin-bottom: 10px;
}

.blogdetailscontent ul li::before{
    position: relative;
    top: calc(50% - 4px);
    left: 0px;
    font-family: "Font Awesome 5 Free";
    content: "\f35a";
    font-size: 15px;
    font-weight: 900;
    padding: 0 5px;
    color: #7e684b;
}

.blogdetailscontent p strong{
    font-weight: 600;
}

.manufacturingcontainer{
    margin: 30px 0 0 0;
}

.manufacturingcontainer h1{
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    text-align: center;
    color: #271c0d;
    margin-bottom: 20px;
}

.manufactruingbox h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    text-align: left;
    color: #271c0d;
    padding-bottom: 0;
}

.manufactruingbox p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
}

.manufactringboximg img{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
    transition: all 0.7s ease-in;
    height: 520px;
    object-fit: cover;
}

.manufactringboximg img:hover{
    transition: all 0.65s ease-in;
    transform: translateY(10px);
}

.surfacecontaibner h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
    color: #271c0d;
    padding-bottom: 0;
}

.surfacecontaibner p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
}

.surfacesliderbox h3{
     font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-align: center;
    color: #271c0d;
    padding-bottom: 0;
    height: 45px;
}

.surfacesliderbox p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
}

.surfacecontaibner{
    margin: 50px 0 0 0;
}

.qualitycontainer{
    margin: 50px 0 0 0;
}

.qualitycontainer h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
    color: #271c0d;
    padding-bottom: 0;
}

.qualitycontainer p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
}

.rangebox{
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    background: #fff;
    height: 445px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.575s ease-in-out;
}

.rangebox:hover{
    transition: all 0.55s ease-in-out;
    transform: translateY(10px);
}

.rangebox h3{
     font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-align: center;
    color: #271c0d;
    padding-bottom: 0;
}

.rangebox p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
}

.industriescontainer{
    margin: 50px 0 0 0;
}

.industriescontainer h2{
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    text-align: center;
    color: #271c0d;
    padding-bottom: 0;
}

.industriexboxapart h3{
     font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-align: center;
    color: #271c0d;
    padding-bottom: 0;
}

.industriexboxapart p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: center;
}

.industriexboxapart{
    background: #271c0d;
    padding: 15px;
    height: 535px;
    border-radius: 15px;
    transition: all 0.65s ease-in-out;
}

.industriexboxapart:hover{
    transition: all 0.55s ease-in-out;
    transform: translateY(10px);
}

.industriexboxapart h3{
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    padding-bottom: 0;
}

.industriexboxapart p{
    font-size: 17px;
    line-height: 30px;
    color: #fff;
    text-align: center;
}

.manufactubottomtext{
    margin: 50px 0 0 0;
}

.manufacturingtextbox p{
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
    font-style: italic;
}

.manufacturingtextbox h6{
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    text-align: left;
    color: #271c0d;
    padding-bottom: 0;
}

.surface-slider .owl-next{
    position: absolute;
    right: -2%;
    display: block;
    padding: 0 .3em !important;
    font-size: 20px !important;
    margin: 0;
    cursor: pointer;
    color: #fff;
    top: 40%;
}

.surface-slider .owl-prev{
    position: absolute;
    left: -2%;
    display: block;
    font-size: 20px !important;
    margin: 0;
    cursor: pointer;
    color: #fff;
    top: 40%;
}

.surface-slider .owl-prev i, .surface-slider .owl-next i {
    font-size: 20px;
    color: #271c0d;
}

.surface-slider .active:nth-child(even) {
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 15px;
}

.innerpagetitle img{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 10px;
    transition: all 0.7s ease-in;
}

.innerpagetitle img:hover{
    transition: all 0.65s ease-in;
    transform: translateY(10px);
}


.sindusaprt-slider .owl-prev i, .indusaprt-slider .owl-next i {
    font-size: 20px;
    color: #271c0d;
}

.indusaprt-slider .owl-prev {
    position: absolute;
    left: -2%;
    display: block;
    font-size: 20px !important;
    margin: 0;
    cursor: pointer;
    color: #fff;
    top: 40%;
}

.indusaprt-slider .owl-next {
    position: absolute;
    right: -2%;
    display: block;
    padding: 0 .3em !important;
    font-size: 20px !important;
    margin: 0;
    cursor: pointer;
    color: #fff;
    top: 40%;
}

.ourproduct ul li{
    list-style: disc;
    font-size: 17px;
    line-height: 30px;
    color: #6b6966;
    text-align: left;
}

.ourproduct ul{
    margin: 0 15px;
}

.headerlogo h2{
    font-size: 20px;
    padding-bottom: 0;
    font-weight: 600;
    color: #271c0d;
    font-family: "Poppins", sans-serif;
}

.headerlogo{
        position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footerlogo h2{
    font-size: 18px;
    padding-bottom: 0;
    font-weight: 600;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.postEntry{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.65s ease-in;
}

.postEntry:hover{
    transition: all 0.5s ease-in;
    transform: translateY(5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}