/*======================================
	*      General Start   *
======================================*/
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
html {
    scroll-behavior: smooth;
  font-family: "Outfit", sans-serif;
}

p , ul>li {
  color: #272727;

}

body #loading-icon-bx {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    opacity: 1;
    z-index: 999999999;
}

body #loading-icon-bx:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: center;
    -webkit-animation: breathing 5s ease-out infinite normal;
    animation: breathing 5s ease-out infinite normal;
}

@-webkit-keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@media screen and (max-width: 992px) {
    body #loading-icon-bx {
        background-size: 200px;
    }
}

.justify {
    text-align: justify;
}

.text-white {
    color: #fff !important;
}

.section-area .heading-bx h1,
.section-area .heading-bx h2,
.section-area .heading-bx h3 {
    position: relative;
    display: inline-block;
    color: var(--headingText);
    font-size: var(--headingFontSize);
    line-height: 36px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 0;
}

.section-area.alt .heading-bx h1,
.section-area.alt .heading-bx h2,
.section-area.alt .heading-bx h3 {
    color: var(--headingTextAlt);
}

.section-area .heading-bx .title-bottom {
    position: relative;
    width: 100px;
    height: 2px;
}

.section-area .heading-bx .title-bottom svg {
    position: absolute;
    top: auto;
    left: 50%;
    width: 100%;
    transform: translate(-50%);
    overflow: visible;
    bottom: -10px;
}

.section-area .heading-bx .title-bottom path {
    stroke: var(--sc-primary);
    stroke-width: 10;
    stroke-dasharray: 1500;
    fill: none;
}

.section-area .heading-bx .title-para {
    color: #222222;
    font-size: 20px;
    line-height: 30px;
    margin-top: 36px;
}

h2.title-head span {
    font-weight: 600;
    color: var(--primary);
}

.section-area .heading-bx.center h1,
.section-area .heading-bx.center h2,
.section-area .heading-bx.center h3,
.section-area .heading-bx.center {
    text-align: center;
}

.section-area .heading-bx.center .top-title {
    justify-content: center;
}

.section-area .heading-bx.center .title-bottom {
    width: 100%;
}

.section-area .heading-bx.center .title-bottom svg {
    width: 100px;
}

.section-sp2 {
    padding-top: 75px;
    padding-bottom: 0;
}

.section-sp5 {
    padding-top: 20px;
    padding-bottom: 50px;
}

.rotate {
    -webkit-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.logoHighlight {
    color: currentColor;
    font-weight: 700;
    /*white-space: nowrap;*/
}

.sub-title-icon {
    padding-right: 5px;
}

.pageBGSugarcane {
    position: relative;
}

.page-content {
    position: relative;
    z-index: 1;
}

.pageBGSugarcane:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/Page-Bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.02;
}

.pageBGSugarcane2 {
    position: relative;
}

.pageBGSugarcane2:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/sugarcane-filed-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.truncate {
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.truncateLines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.truncate2Lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.btn-gradient {
    background: linear-gradient(-45deg, var(--buttonHover) 0%, var(--button) 100%);
}

#contact_form_3 #success,
#success,
#contact_form_3 #error,
#error,
.LoaderImage,
#LoaderImage {
    display: none;
}

.RMM-Btn-23 {
    display: inline-block;
    font-weight: 700;
    text-transform: capitalize;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: 6px;
    color: var(--buttonColor);
    border: none;
    background: var(--buttonBg);
    box-shadow: none !important;
    font-size: 16px;
    letter-spacing: 0;
    padding: 13px 30px;
    position: relative;
    z-index: 1;
}

.RMM-Btn-23::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: "";
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--buttonHoverBg);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.RMM-Btn-23:hover {
    background-color: var(--buttonHoverBg);
    color: var(--buttonHoverColor);
}

.RMM-Btn-23:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.ft-social-bx a {
    margin-right: 0;
    color: var(--buttonHover);
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0;
    text-align: center;
    font-size: 14px;
    margin-bottom: 5px;
}

.Order_1 {
    order: 1;
}

.Order_2 {
    order: 1;
}

@media screen and (max-width: 992px) {
    .Order_2 {
        order: 2;
    }

    .Order_1 {
        order: 1;
    }
}

@media screen and (max-width: 500px) {

    .section-area .heading-bx h1,
    .section-area .heading-bx h2,
    .section-area .heading-bx h3 {
        font-size: 25px;
        line-height: 30px;
    }
}

.rotate {
    -webkit-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.job-content {
    background: var(--primary);
    padding: 20px;
}

/*======================================
	*      General End   *
======================================*/




/*======================================
	*      Pagination Start   *
======================================*/
.simple-pagination ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.simple-pagination li {
    display: inline-block;
    margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
    color: #666;
    padding: 2px 10px 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #EEE;
    background-color: #FFF;
    box-shadow: 0px 0px 10px 0px #eee;
}

.simple-pagination .current {
    color: #FFF;
    background-color: var(--primary);
    border-color: var(--primary);
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
    background: var(--primary);
}

/*======================================
	*      Pagination End   *
======================================*/




/*======================================
	*      Back to Top Start   *
======================================*/
button.back-to-top {
    background-color: var(--backToTop);
    color: var(--backToTopIcon);
    border-radius: 50%;
    transition: 0.5s all;
    right: 1%;
    bottom: 10%;
}

button.back-to-top:hover {
    background-color: var(--backToTopHover);
    color: var(--backToTopIconHover);
}

/*======================================
	*      Back to Top End   *
======================================*/



/*======================================
	*      Enquiry Popup Start   *
======================================*/
.enquiry {
    transform: rotate(-90deg) translate(-20%, 0%);
    transform-origin: right;
    z-index: 999999;
    position: fixed;
    top: 135px;
    right: 35px;
    font-size: 12px;
}

.enquiry .apoint-btn-box {
    transform: none !important;
    padding: 10px;
    cursor: pointer;
    background: var(--buttonBg) !important;
    display: block;
    visibility: visible !important;
    color: var(--buttonColor);
    font-size: 15px;
}

.enquiry .apoint-btn-box:before,
.enquiry .apoint-btn-box:after {
    content: "";
    background: var(--buttonBg);
    position: absolute;
    height: 100%;
    width: 40%;
    transform: skewX(40deg);
    -moz-transform: skewX(40deg);
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    -o-transform: skewX(40deg);
    top: 0;
    right: -30px;
    z-index: -1;
}

.enquiry .apoint-btn-box:before {
    right: auto;
    left: -30px;
    transform: skewX(-40deg);
    -moz-transform: skewX(-40deg);
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    -o-transform: skewX(-40deg);
}

.enquiry .apoint-btn-box.onFooter {
    background: #fff !important;
    color: #000 !important;
    font-weight: 800;
    border-top: solid 3px #000;
}

.enquiry .apoint-btn-box.onFooter:before,
.enquiry .apoint-btn-box.onFooter:after {
    background: #fff !important;
    top: -3px;
    border: solid 3px #000;
}

#rotate {
    vertical-align: top;
    margin-top: 23px;
    width: 80px;
    height: 30px;
}

.enquiry a {
    cursor: pointer;
    min-height: 30px;
    position: relative;
    border: 1px solid #cb4154;
    border-radius: 8px;
    padding: 4px 8px;
    margin-left: 20px;
    font-variant: small-caps;
    color: #fff !important;
    text-shadow: 0 0 0;
    outline: 0;
    letter-spacing: 2px;
    text-shadow: 0 1px 4px #111;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2), inset 0 -1px 1px rgba(255, 255, 255, .1);
    background: #021f36;
}

.enquiry a:hover {
    box-shadow: 0px 0px 4px #fff;
    color: #fff !important;
}

.ShowcaseModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    height: 100%;
    overflow: auto;
    display: none;
}

.ShowcaseModal .logo {
    text-align: center;
}

.EnquiryBtn {
    background: #ffa800;
    color: #021f36;
    padding: 5px 10px 5px 10px;
    border: solid 1px #fff;
    font-weight: 700;
}

#EnquiryForm input[type="text"],
#EnquiryForm input[type="email"],
#EnquiryForm input[type="tel"],
#EnquiryForm select,
#EnquiryForm textarea {
    background-color: #fff;
    border: 1px solid #333;
    width: 100%;
    border-radius: 5px;
    display: block !important;
    padding: 5px;
}

#EnquiryForm .bootstrap-select {
    display: none;
}

#EnquiryForm #LoaderImage {
    float: right;
    padding-left: 10px;
    padding-top: 0 !important;
}

#EnquiryForm h2 {
    font-size: 35px;
}

.Formoutliner {
    background: #fff;
    /*border: solid 5px #fff;*/
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    border-radius: 5px;
    /*border: 4px solid var(--primary);*/
    position: relative;
}

.Formoutliner:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/Enquiry-form-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 0.2;
}

.main-img img {
    width: 50%;
}

@media only screen and (max-width: 1200px) {
    .menu-logo h2 {
        font-size: 15px !important;
    }
}

@media only screen and (max-width: 992px) {
    #EnquiryContactSection {
        display: none;
    }

    .menu-logo h2 {
        font-size: 16px !important;
    }
}

@media only screen and (max-width: 500px) {
    .menu-logo h2 {
        font-size: 13px !important;
    }

    .menu-logo .tagLine {
        font-size: 13px;
        top: 0;
    }
}

@media only screen and (max-width: 420px) {
    .menu-logo h2 {
        font-size: 12px !important;
    }

    .menu-logo .tagLine {
        font-size: 13px;
        top: 0;
    }
}

@media only screen and (max-width: 400px) {
    .menu-logo h2 {
        font-size: 10px !important;
    }

    .menu-logo .tagLine {
        font-size: 10px;
        top: 0;
    }
}

@media only screen and (max-width: 350px) {
    .menu-logo h2 {
        font-size: 8px !important;
    }

    .menu-logo .tagLine {
        font-size: 9px;
        top: 0;
    }
}

#EnquiryForm {
    padding: 14px 20px;
}

.Formoutliner .main-heading {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin: 0 0 0px;
    padding: 0 0 40px;
    position: relative;
    z-index: 1;
    color: #fff !important;
}

.Formoutliner .main-heading::before {
    position: absolute;
    content: "";
    z-index: 0;
    bottom: 25px;
    right: auto;
    left: 4px;
    transform: none;
    width: 70px;
    height: 4px;
    background: #1bbde8 !important;
}

.Formoutliner input {
    margin-bottom: 15px;
    height: 35px;
    font-size: 14px;
}

.Formoutliner textarea {
    margin-bottom: 15px;
    min-height: 80px;
    font-size: 14px;
    padding: 5px 15px;
}

.Formoutliner select {
    margin-bottom: 15px;
    height: 35px;
    font-size: 14px;
    text-align: left;
    width: 100%;
    background: transparent;
    padding: 5px 15px;
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: none;
}

.Formoutliner .text-center {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.Formoutliner .contact-form #success {
    margin-top: 23%;
}

.cont-info {
    padding: 6px 30px 80px;
    background: var(--primary);
    border-radius: 50px 0 0 0;
    min-height: auto;
}

.cont-info h4 {
    font-size: 22px;
    margin-top: 14px;
    margin-bottom: 14px;
    color: #fff;
}

.enquiry-info li a:hover,
.enquiry-info li a,
.enquiry-info li i {
    color: #f5f5f5;
    font-size: 17px;
}

.enquiry-info li {
    margin-bottom: 10px;
}

.sub-head {
    color: #49a760;
}

.color-1 {
    color: var(--primary);
    font-weight: 600 !important;
}

.color-2 {
    color: var(--button);
    font-weight: 600 !important;
}

.Formoutliner .ft-social-bx .btn:hover {
    background: var(--button2Hover);
}

@media only screen and (max-width:500px) {
    .enquiry {
        transform: rotate(-90deg) translate(-20%, 0%);
        transform-origin: right;
        z-index: 999999;
        position: fixed;
        top: 120px !important;
        right: 35px;
        font-size: 12px;
    }
}

/*======================================
	*      Enquiry Popup End   *
======================================*/



/*======================================
	*      Whatsapp Start   *
======================================*/
.WPButton {
    position: fixed;
    right: 0;
    top: 450px;
    background: #17980E;
    color: #fff;
    font-size: 30px;
    border-radius: 5px 0 0 5px;
    width: 40px;
    height: 40px;
    text-align: center;
    display: block;
    margin-top: 2px;
    line-height: 50px;
    z-index: 9;
}

.WPButton i {
    top: -6px;
    left: 2px;
    position: relative;
    color: #fff;
}

@media only screen and (max-width:500px) {
    .WPButton {
        position: fixed;
        right: 0;
        top: 450px !important;
        background: #17980E;
        color: #fff;
        font-size: 30px;
        border-radius: 5px 0 0 5px;
        width: 40px;
        height: 40px;
        text-align: center;
        display: block;
        margin-top: 2px;
        line-height: 50px;
        z-index: 9;
    }
}

/*======================================
	*      Whatsapp End   *
======================================*/



/*======================================
	*      Enroll Start   *
======================================*/
.icon-bar {
    position: fixed;
    top: 400px;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.icon-bar a {
    position: relative;
    display: block;
    width: 25px;
    height: 60px;
    line-height: 60px;
    color: #222;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 25px;
    cursor: pointer;
    background: #fff;
    transition: 0.5s all;
}

.icon-bar a:before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--tollFreeBg);
    border-radius: 50% 0 0 50%;
    left: -28px;
    top: 0px;
    z-index: -1;
}

.icon-bar a i {
    font-size: 25px;
    color: #000;
}

.icon-bar a:hover i {
    color: #ff7000;
}

.enroll img {
    width: 25px;
    margin-top: 15px;
    float: left;
    margin-left: -5px;
}

.enroll #enroll {
    /*display: none;*/
    font-weight: 700;
    color: #fff;
    position: relative;
    top: 0px;
    position: absolute;
    width: 225px;
    font-size: 0;
}

.enroll,
.enroll a {
    text-decoration: none !important;
    font-size: 13px !important;
    background: var(--tollFreeBg) !important;
}

.enroll:hover {
    width: 200px !important;
    font-size: 15px !important;
    color: #fff;
}

.enroll:hover #enroll {
    display: block;
    font-size: 18px !important;
}

.celebration {
    position: fixed;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    top: 240px;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99999;
    background: var(--primary);
    border-radius: 50%;
    animation: zoom-in-zoom-out 2s ease-out infinite;
}

.celebration img {
    width: 90px;
    height: 90px;
    line-height: 90px;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.05, 1.05);
    }

    100% {
        transform: scale(1, 1);
    }
}

/*======================================
	*      Enroll End   *
======================================*/



/*======================================
	*      Header Start   *
======================================*/
.header .top-bar {
    background-color: var(--topBarBg);
    border-bottom: unset;
    color: var(--topBarText);
}

.topbar-right {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .topbar-center,
.header .topbar-left,
.header .topbar-right {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0;
}

.topbar-left ul,
.topbar-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    font-size: 1rem;
    display: flex;
}

.header .top-bar .topbar-left ul li,
.header .top-bar .topbar-right ul li {
    color: var(--topBarText);
    font-size: 15px;
    padding-right: 10px;
    padding-left: 0;
    margin-left: 0;
}

.header .top-bar .topbar-left ul li:nth-last-child(1),
.header .top-bar .topbar-right ul li:nth-last-child(1) {
    padding-right: 0;
}

.header .topbar-left ul li:after,
.header .topbar-right ul li:after {
    position: absolute;
    width: 1px;
    height: 30px;
    background-color: unset;
    right: 0;
    content: unset;
    top: 0px;
    opacity: 1;
}

.header .topbar-left ul li:nth-last-child(1):after,
.header .topbar-right ul li:nth-last-child(1):after {
    position: absolute;
    width: 1px;
    height: 30px;
    background-color: unset;
    right: 0;
    content: unset;
    top: 0px;
    opacity: 1;
}

.header .top-bar .topbar-left ul li a,
.header .top-bar .topbar-right ul li a {
    color: var(--topBarText) !important;
}

.header .top-bar .topbar-left ul li i,
.header .top-bar .topbar-right ul li i,
.header .mid-bar ul li i {
    color: var(--topBarIcon);
    margin-right: 5px;
    font-size: 18px;
    background: var(--topBarIconBg);
    border-radius: 50%;
    padding: 5px;
    line-height: 17px;
    margin-top: 0;
    transition: 0.5s all;
}

.header .top-bar .topbar-left ul li:hover i,
.header .top-bar .topbar-right ul li:hover i,
.header .mid-bar ul li:hover i {
    color: var(--topBarIconHover);
    background: var(--topBarIconBgHover);
}

.header .mid-bar {
    background-color: var(--midBarBg);
    border-bottom: unset;
    color: var(--midBarText);
    position: relative;
    height: 90px;
}

.header .mid-bar .logo img {
    width: 80%;
    transition: 0.5s;
    padding: 5px;
}

.header .mid-bar img {
    width: 100%;
    transition: 0.5s;
    padding: 5px;
}

.mid-bar-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.mid-bar-content .logo {
    z-index: 1;
}

.midbar-center {
    background: #ffffff;
    border-radius: 20px;
    color: #000;
    padding: 0 0 0 0;
    text-align: end;
    width: 200px;
}

.midbar-links ul {
    list-style: none;
}

.midbar-links a {
    color: #000;
}

.header .menu-bar {
    background: var(--menuBarBg);
    width: 100%;
    position: relative;
    min-height: 85px;
    top: 0;
}

.header .menu-bar::after {
    content: "";
    width: 100%;
    height: 16px;
    position: absolute;
    bottom: -15px;
    left: 0;
    /* background-image: url(../images/Background/header-bg.png); */
    background-position: center center;
    background-size: auto;
}

.header .is-fixed .menu-bar {
    background: var(--menuBarFixedBg);
}

.header .navbar-expand-lg .navbar-nav {
    display: flex;
    flex-direction: row;
    flex-grow: inherit;
    justify-content: flex-end;
    padding-right: 0;
    text-transform: uppercase;
}

.header .extra-logo1 img {
    width: 70%;
    transition: 0.5s;
    padding: 5px;
}

.header .menu-bar .container {
    position: relative;
    height: 70px;
    border-bottom: 1px solid var(--menuBarBorder);
    background-color: var(--menuBarInnerBg);
    border-radius: 0px;
    transition: 0.5s all;
}

.header .menu-bar .container:hover {
    box-shadow: unset;
}

.header .is-fixed .menu-bar .container {
    box-shadow: unset;
}

.header .extra-info-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
}

.header .menu-links .nav>li {
    margin: 0px;
    font-weight: 500;
    position: relative;
    padding-left: 17px;
    padding-top: 3px;
    transition: 0.5s all;
}

.header .menu-links .nav>li>a {
    border-radius: 0px;
    color: var(--menuText);
    font-size: 1rem;
    padding: 10px;
    cursor: pointer;
    letter-spacing: 0.3px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    transition: 0.5s all;
}

.header .menu-links .nav>li.active>a {
    background-color: transparent;
    color: var(--menuActive);
    transition: 0.5s all;
    position: relative;
    font-weight: 700;
}

.header .menu-links .nav>li:hover>a {
    background-color: transparent;
    color: var(--menuActive);
    transition: 0.5s all;
    position: relative;
    font-weight: 400;
}

.header .menu-links .nav>li.active>a:before,
.header .menu-links .nav>li:hover>a:before {
    content: "";
    position: absolute;
    height: 30px;
    width: 5px;
    /* background: var(--subMenuActive); */
    left: 0px;
    top: 17px;
    right: 0;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transform-origin: right;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
}

.header .menu-links .nav>li .sub-menu li a {
    color: var(--subMenuText);
    display: block;
    font-size: 15px;
    padding: 8px 25px;
    text-transform: capitalize;
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    position: relative;
    font-weight: 500;
}

.header .menu-links .nav li .sub-menu li a:hover span {
    color: var(--subMenuActive);
    font-weight: 600;
}

.menu-links .nav .add-menu-left ul li.active a {
    color: var(--subMenuActive);
    font-weight: 600;
}

.header .menu-links .nav .add-menu-left ul li a {
    padding: 8px 0px;
    text-transform: uppercase;
}


.header .menu-links .nav>li .mega-menu li a span,
.header .menu-links .nav>li .sub-menu li a span {
    position: relative;
}

.header .menu-links .nav>li .mega-menu li a span:after,
.header .menu-links .nav>li .sub-menu li a span:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    background: var(--subMenuActive);
    left: -25px;
    top: 8px;
    right: 0;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transform-origin: right;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
}

.header .menu-links .nav>li .mega-menu li:hover>a span:after,
.header .menu-links .nav>li .sub-menu li:hover>a span:after {
    width: 20px;
    -moz-transform-origin: left;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left;
    left: -25px;
    top: 8px;
    right: auto;
}

.header .navbar-toggler span {
    background: var(--mobileMenuToggler);
}

.header .menuHide {
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 0.5s linear;
}

.header .menuShow {
    visibility: visible;
    opacity: 1;
    transition: visibility 1s, opacity 0.5s linear;
}

.header .hide-menu {
    display: none;
}

.header .extra-menu {
    position: relative;
}

.header .sub-menu {
    display: block !important;
}

.header .nav>li .sub-menu {
    opacity: 1 !important;
}

.header .is-fixed .menu-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    box-shadow: 0 0 50px 0 rgb(0 0 0 / 10%);
    background-color: #fff;
    /* background-color: var(--primary); */
}

@media screen and (max-width:520px) {
    .header .top-bar .topbar-right .topbar-right-inner:before {
        display: none;
    }

    .header .top-bar .topbar-right .topbar-right-inner {
        left: 0;
        top: 6px;
    }

    .header .topbar-center,
    .topbar-left,
    .topbar-right {
        padding: 0px 15px;
    }

    .header .rs-nav .menu-links.show {
        width: 234px !important;
    }
}

@media screen and (max-width:767px) {
    .header .extra-logo1 {
        top: 0px;
        border-radius: 0 0 50% 50%;
    }

    .header .extra-logo1 img {
        width: 80%;
    }

    .header .navbar-toggler,
    .header .is-fixed .navbar-toggler {
        margin: 30px 0 14px 15px !important;
    }

    .header .top-bar {
        padding: 0px 0;
        display: block;
        border-bottom: none;
        display: none;
    }

    .topbar-right {
        display: none;
    }
}

@media screen and (max-width:992px) {
    .header .extra-logo1 {
        top: 0px;
        border-radius: 0 0 50% 50%;
    }

    .header .navbar-expand-lg .navbar-nav {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .header .menu-links .nav>li.active>a,
    .header .menu-links .nav>li:hover>a {
        background-color: transparent;
        color: #583688;
    }

    .header .menu-links .nav>li ul,
    .menu-links .nav>li .sub-menu,
    .menu-links .nav>li .mega-menu {
        display: none;
        position: static;
        visibility: visible;
        width: auto;
        background: #fff;
        padding: 0 5px;
    }

    .header .menu-links .nav>li>a {
        color: #333;
    }

    .header .extra-logo1 {
        display: block;
    }

    .header .extra-info-inner {
        justify-content: space-between;
    }

    .header .menu-bar {
        background: #fff;
        top: 0;
    }

    .header .menu-bar .container {
        border-bottom: 1px solid #fff;
        background-color: #fff;
        box-shadow: unset;
    }
}

@media screen and (max-width:1200px) {
    .header .extra-info-inner {
        justify-content: space-between;
    }
}

/*======================================
	*      Header End   *
======================================*/



/*======================================
	*      Banner Start   *
======================================*/
.RMM-Banner-5 {
    position: relative;
    top: 115px;
    overflow: hidden;
    margin-bottom: 100px;
}

.RMM-Banner-5-carousel {
    position: relative;
}

.RMM-Banner-5-carousel::before {
    content: "";
    width: 100%;
    height: 16px;
    position: absolute;
    bottom: -1px;
    left: 0;
    /* background-image: url(../images/Background/header-bg-2.png); */
    background-position: center center;
    background-size: auto;
    z-index: 9;
}

.RMM-Banner-5 .container {
    min-height: 500px;
}

.RMM-Banner-5 .slide-item {
    position: relative;
    padding: 55px 0px;
}

.RMM-Banner-5 .slide-item:after {
    background: rgba(0, 0, 0, 0.288);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.RMM-Banner-5 .slide-item:before {
    position: absolute;
    left: 5%;
    top: 25%;
    content: "";
    height: 250px;
    width: 250px;
    /* background: url(../images/Background/banner-shape.png); */
    z-index: 2;
    border-radius: 50%;
    margin-left: 0;
    opacity: 1;
    visibility: visible;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.55s ease-in-out;
    transition-delay: 0.55s;
}

.RMM-Banner-5 .slide-item .banner-image {
    left: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
}

.RMM-Banner-5 .banner-image img {
    width: 100% !important;
    height: 700px;
    object-fit: cover;
}

.RMM-Banner-5 .slide-item .banner-image {
    position: absolute;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 6000ms linear;
    -moz-transition: all 6000ms linear;
    -ms-transition: all 6000ms linear;
    -o-transition: all 6000ms linear;
    transition: all 6000ms linear;
}

.RMM-Banner-5 .inner-content {
    position: absolute;
    top: 200px;
    width: 100%;
    z-index: 5;
}

.content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    gap: 20px;
    /* text-align: center; */
}

.RMM-Banner-5 .inner-content .content-left h5 {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 2.5rem;
    color: #ff7700 !important;
    font-weight: bold;
}

.RMM-Banner-5 .active .inner-content .content-left h5 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.RMM-Banner-5 .inner-content .content-left h4 {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.RMM-Banner-5 .active .inner-content .content-left h4 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
    font-size: 1.4rem;
    color: #b4b4b4 !important;
    font-weight: 400;
}

.RMM-Banner-5 .inner-content .content-left .RMM-Btn-23 {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    width: max-content;
}

.RMM-Banner-5 .active .inner-content .content-left .RMM-Btn-23 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.RMM-Banner-5 h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    z-index: 1;
}

.RMM-Banner-5 h1 {
    display: block;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 15px;
    z-index: 1;
}

.RMM-Banner-5 .title-bottom {
    position: relative;
    width: 100px;
    height: 2px;
}

.RMM-Banner-5 .title-bottom svg {
    position: absolute;
    top: auto;
    left: 50%;
    width: 100%;
    transform: translate(-50%);
    overflow: visible;
    bottom: 0;
    z-index: -1;
}

.RMM-Banner-5 .title-bottom path {
    stroke: var(--sc-primary);
    stroke-width: 10;
    stroke-dasharray: 1500;
    fill: none;
}

.RMM-Banner-5 .inner-img {
    text-align: center;
}

.RMM-Banner-5 .inner-img img {
    width: 100%;
    height: 350px;
    object-fit: scale-down;
}

.RMM-Banner-5.owl-dots-none .owl-dots,
.RMM-Banner-5.owl-nav-none .owl-nav {
    display: none !important;
}

.RMM-Banner-5 .owl-nav {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.RMM-Banner-5 .owl-nav .owl-prev {
    position: absolute !important;
    left: 11%;
    top: 0;
}

.RMM-Banner-5 .owl-nav .owl-next {
    position: absolute !important;
    left: 18%;
    top: 0;
}

.RMM-Banner-5 .nav-style-one .owl-nav .owl-prev,
.RMM-Banner-5 .nav-style-one .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 50px;
    color: #fff;
    font-size: 30px;
    text-align: center;
    background: transparent;
    border: 2px solid #fff;
    opacity: 0.3;
    border-radius: 50%;
    font-weight: 700;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    cursor: pointer;
}

.RMM-Banner-5 .owl-nav .owl-prev:hover,
.RMM-Banner-5 .owl-nav .owl-next:hover {
    background: transparent;
    opacity: 1;
}

/* Banner Responsive */
@media screen and (max-width: 1300px) {
    .RMM-Banner-5 .slide-item:before {
        left: 0;
    }
}

@media screen and (max-width:576px) {
    .RMM-Banner-5 h1 {
        font-size: 25px;
        line-height: 30px;
    }

    .RMM-Banner-5 .active .inner-content .content-right .inner-img {
        opacity: 1;
        -webkit-transform: translateX(50px);
        -moz-transform: translateX(50px);
        -ms-transform: translateX(50px);
        -o-transform: translateX(50px);
        transform: translateX(50px);
        -webkit-transition-delay: 1000ms;
        -moz-transition-delay: 1000ms;
        -ms-transition-delay: 1000ms;
        -o-transition-delay: 1000ms;
        transition-delay: 1000ms;
    }
}

@media screen and (max-width:767px) {
    .RMM-Banner-5 {
        top: 85px;
    }

    .RMM-Banner-5 .inner-content {
        top: 100px !important;
    }

    .RMM-Banner-5 .slide-item:before {
        top: 5%;
    }
}

@media screen and (max-width:991px) {
    .RMM-Banner-5 .inner-img img {
        width: 60%;
        height: 200px;
        object-fit: scale-down;
    }

    .RMM-Banner-5 .inner-content {
        top: 200px;
    }

    .RMM-Banner-5 .banner-image img {
        height: 800px;
    }

    .RMM-Banner-5 .container {
        min-height: 650px;
    }

    .RMM-Banner-5 .owl-nav .owl-prev {
        left: 11%;
    }

    .RMM-Banner-5 .owl-nav .owl-next {
        left: unset;
        right: 10%;
    }
}

/*======================================
	*      Banner End   *
======================================*/



/*======================================
	*      Page Banner Start   *
======================================*/
.home-hero1 .page-banner {
    height: 425px;
    background-size: 100%;
    background-position: right bottom;
    display: table;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
    text-align: left;
    background-color: #f7f7f7;
    background-size: cover;
}

.home-hero1 .page-banner::before {
    content: "";
    width: 100%;
    height: 16px;
    position: absolute;
    bottom: -1px;
    left: 0;
    /* background-image: url(../images/Background/header-bg-2.png); */
    background-position: center center;
    background-size: auto;
    z-index: 9;
}

.page-banner .page-banner-entry {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding-top: 170px;
}

.breadcrumb-row {
    max-width: 100%;
}

.page-banner .page-banner-entry h1 {
    color: #fff;
    font-size: 40px;
    text-transform: capitalize;
    text-align: left;
    padding: 10px 15px 10px 0;
    display: inline-block;
    position: relative;
    font-weight: 400;
    line-height: 40px;
}

.page-banner .breadcrumb-row ul li {
    padding: 0;
    margin-right: 3px;
    color: #fff;
    display: inline-block;
}

.page-banner .breadcrumb-row ul li a {
    color: #fff;
    padding: 2px;
}

.ovbl-dark:after {
    opacity: 0.3 !important;
}

.cert-main-image img {
    border-radius: 20px;
}

.page-banner.About {
    background-image: url(../images/Banners/5.jpeg);
    background-position: center;
}

.page-banner.Products {
    background-image: url(../images/Banners/1.jpg);
    background-position: center;
}

.page-banner.Gallery {
    background-image: url(../images/Background/product-section-bg.jpg);
    background-position: center;
}

.page-banner.Infrastructure {
    background-image: url(../images/Infra/1/ManufactureLoading8.jpg);
    background-position: center;
}

.page-banner.Quality {
    background-image: url(../images/Background/Quality-Page-Banner.jpg);
}

.page-banner.Contact {
    background-image: url(../images/Background/contact-bg.jpg);
    background-position: center;
}

@media screen and (max-width: 1200px) {
    .breadcrumb-row {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .page-banner .page-banner-entry h1 {
        padding: 10px 15px 10px 15px;
    }
}

/*======================================
	*      Page Banner End   *
======================================*/




/*======================================
	*      Contact Start   *
======================================*/
.single-contact-box {
    position: relative;
    display: block;
    width: 100%;
    padding: 25px 40px 25px;
    border-radius: 5px;
    box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}

.single-contact-box .inner {
    position: relative;
    display: block;
}

.single-contact-box h5 {
    border-bottom: 4px solid rgb(13 45 118);
    display: inline-block;
    padding-bottom: 8px;
}

.single-contact-box ul {
    padding: 0;
}

.single-contact-box ul li {
    list-style: none;
    position: relative;
    margin-bottom: 15px;
    position: relative;
    padding-left: 24px;
}

.single-contact-box ul li i {
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 5px;
}

.single-contact-box a {
    color: #333;
    transition: 0.5s all;
}

.single-contact-box a:hover {
    font-weight: 600;
}

.contact-form {
    box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
    padding: 20px 80px;
    border-radius: 10px;
    position: relative;
    background: transparent;
}

.contact-style-one-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 50px;
}

.contact-right {
    padding-left: 60px;
}

.contact-right ul {
    margin: 0;
}

.contact li {
    display: flex;
    margin-top: 30px;
}

.contact li i {
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 25px;
    margin-right: 20px;
}

.contact li:nth-child(2) i {
    background: #583688;
}

.contact li:nth-child(3) i {
    background: var(--dark);
}

.contact li p {
    margin: 0;
}

.contact li h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact li a {
    font-weight: 400;
    color: var(--primary)
}

.contact li a:hover {
    font-weight: 400;
    color: var(--sc-primary)
}

.map.route.lightgallery {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-content: center;
    align-items: center;
}

iframe {
    width: 100%;
    z-index: 2222;
    height: 350px;
}

.map.route.lightgallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 1px solid #505050;
    padding: 5px;
}

.contact {
    position: relative;
}

@media screen and (max-width:767px) {
    .single-contact-box.r-border {
        border-right: unset;
    }

    .map.route.lightgallery {
        display: block;
    }

    .contact-form {
        padding: 40px;
        margin-bottom: 30px;
        order: 2;
        margin-top: 30px;
    }

    .contact-right {
        padding-left: 10px;
    }

    .contact-right ul {
        padding: 0;
    }
}

@media screen and (max-width: 992px) {
    .contact .map {
        top: 0;
    }

    .contact-form {
        margin-bottom: 30px;
        order: 2;
        margin-top: 30px;
    }
}

/*======================================
	*      Contact End   *
======================================*/




/*======================================
	*      Home About Start   *
======================================*/
.about-section {
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
}

.pageBg {
    position: relative;
}

/* .about-section:before,
.pageBg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/About-Us-Bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.05;
} */

.home-about-images {
    position: relative;
    text-align: center;
}

.home-about-images img {
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: 5px;
}

.home-about-images .about-img-1 {
    width: 650px;
    height: 560px;
    object-fit: cover;
}

.home-about-images .about-img-2 {
    height: 300px;
    object-fit: cover;
}

.about-count {
    width: 219px;
    height: 219px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url(../images/Background/about-circle.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: -30px;
    right: -20px;
}

.about-count span {
    display: block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.about-count h4 span {
    font-size: 40px;
    letter-spacing: 0;
}

.about-count h4 {
    display: block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.about-summery {
    margin-top: 20px;
    margin-bottom: 30px;
}

.about-summery p {
    max-width: 95%;
    text-align: justify;
}

@media screen and (max-width: 1200px) and (min-width:992px) {
    .about-section {
        padding-bottom: 120px;
    }
}

@media (max-width: 992px) {
    .about-count {
        top: 150px;
        right: 0;
    }

    .home-about-images .about-img-1 {
        display: none;
    }
}

@media (min-width: 992px) {
    .home-about-images img {
        max-width: none;
        margin-bottom: 0;
    }

    .about-count {
        top: 90px;
        left: -20px;
        right: auto;
    }

    .home-about-images img:nth-child(2) {
        position: absolute;
        bottom: -50px;
        left: -120px;
    }

    .about-content {
        background-color: #fff;
        padding: 50px;
        border-radius: 5px;
        margin-top: 40px;
    }
}

@media (min-width: 1200px) {
    .home-about-images img:nth-child(2) {
        bottom: 0;
    }

    .about-count {
        left: -109.5px;
    }

    .about-content {
        margin-top: 60px;
        margin-left: 30px;
        padding-left: 60px;
        padding-top: 60px;
        padding-bottom: 60px;
        padding-right: 0;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .about-summery {
        margin-top: 35px;
        margin-bottom: 40px;
    }

    .about-summery p {
        max-width: 95%;
    }
}

@media (max-width: 767px) {
    .about-content {
        margin-top: 40px;
    }
}

.working-steps-2 {
    display: flex;
    margin-bottom: 45px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.working-steps-2 .work-step:nth-child(2n) {
    margin-top: 40px
}

@media (max-width:450px),
(max-width:575px),
only screen and (min-width:576px) and (max-width:767px),
only screen and (min-width:768px)and (max-width:991px) {
    .working-steps-2 .work-step:nth-child(2n) {
        margin-top: 0
    }
}

.working-steps-2>div {
    width: calc((100% - 90px)/4);
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 2;
    counter-increment: work-counter;
}

@media (max-width:575px),
only screen and (min-width:576px)and (max-width:767px),
only screen and (min-width:768px)and (max-width:991px) {
    .working-steps-2>div {
        width: calc((100% - 30px)/2)
    }
}

@media(max-width:450px) {
    .working-steps-2>div {
        width: calc((100% - 0px)/1)
    }
}

.group-companies-section {
    overflow: hidden;
}

.work-step:before {
    position: absolute;
    content: counter(work-counter, decimal-leading-zero);
    font-size: 120px;
    font-weight: 700;
    font-family: Poppins, sans-serif;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #eeeae3;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 1;
    z-index: -1;
}

.work-step-2:before {
    -webkit-text-stroke-color: #ebe6de
}

.process-flow-border:before {
    position: absolute;
    top: 0;
    left: 75%;
    content: url(../images/Background/process-flow-border.png);
}

@media screen and (max-width: 991px) {
    .process-flow-border:before {
        display: none;
    }
    
}

.work-step-2:after {
    display: none
}

.work-step-icon {
    width: 140px;
    height: 140px;
    text-align: center;
    line-height: 140px;
    background: #fff;
    box-shadow: 0 16px 32px 0 rgb(0 0 0 / 8%);
    border-radius: 100%;
    margin: 0 auto 36px;
    position: relative;
}

.work-step-icon img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.work-step:nth-child(2n) .process-flow-border:before {
    transform: rotate(-16deg);
    transform-origin: top left;
}

.work-step-icon:after {
    position: absolute;
    content: "\f061";
    font-family: FontAwesome;
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 1;
    text-align: center;
    line-height: 40px;
    font-weight: 300;
    transform: rotate(-45deg);
    transition: .3s;
}

.work-step:nth-child(2n) .work-step-icon:after {
    transform: rotate(-45deg);
}

.work-step .h4,
.work-step h4 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 30px;
    min-height: 45px;
}

.work-step p {
    margin-bottom: 0;
}

/*======================================
	*      Home About End   *
======================================*/




/*======================================
	*      Products Start   *
======================================*/
.product-section {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #000;
}

.product-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Banners/10.jpg) !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    opacity: 0.5;
}

.projects-container {
    background: #fff;
    border-radius: 10px 10px 0 0;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.products-container {
    margin-left: 100px;
}

.service_post.style_four {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: #f7f7f7;
    z-index: 0;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    overflow: hidden;
}

.service_post.style_four::before {
    position: absolute;
    content: unset;
    width: 5px;
    height: 50px;
    left: 0;
    bottom: 0;
    background: #e42032;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    top: 100%;
    z-index: 1;
}

.service_post.style_four:hover::before {
    opacity: 1;
    top: 50px;
}

.service_post.style_four .image_box {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.service_post.style_four .image_box img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.5s all;
}

.service_post.style_four:hover .image_box img {
    transform: scale(1.05);
}

.service_post.style_four .content_in_box {
    position: relative;
    padding: 10px 20px 25px;
    margin-top: -20px;
}

.service_post.style_four h2 {
    line-height: normal;
}

.service_post.style_four h2 {
    position: relative;
    font-size: 20px;
    line-height: 30px;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #393a77;
    margin-top: 30px;
}

.service_post.style_four p {
    margin-bottom: 15px;
}

.service_post.style_four a.read_more {
    font-size: 15px;
    line-height: 25px;
    color: #393a77;
    display: block;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.service_post.style_four:hover a.read_more {
    color: #e42032;
}

.service_post.style_four a.read_more i {
    position: relative;
    right: -8px;
    top: 3px;
    font-size: 17px;
}

.service_post.style_four::after {
    position: absolute;
    content: unset;
    width: 10px;
    height: 10px;
    left: 38px;
    top: 40px;
    background: rgb(255 240 240);
    transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    z-index: -1;
}

.service_post.style_four:hover::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.pad-left {
    margin-left: 100px;
}

@media screen and (max-width: 767px) {
    .pad-left {
        margin-left: 0;
    }
    
}

.zi2 {
    position: relative;
    z-index: 2;
}

.service_post .content_box p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.testimonial-carousel-3 .item {
    margin: 20px 0;
}

.testimonial-carousel-3 .owl-item.active {
    padding-left: 15px;
}

@media screen and (max-width: 767px) {
    .testimonial-carousel-3 {
        margin-left: 10px;
    }

    .service_post.style_four .image_box img {
        height: 300px;
    }
}

@media screen and (max-width: 500px) {
    .service_post.style_four {
        margin-right: 20px;
    }

    .testimonial-carousel-3 .owl-item.active {
        padding-left: 0;
    }
}

.single-service.style-2 {
    padding: 40px 40px;
}

.service-img {
    border-radius: 10px;
    overflow: hidden;
}

.style-2 .service-img img {
    width: 100%;
}

.single-service-content {
    position: relative;
    text-align: center;
    padding: 65px 0 0;
}

.service-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 100px;
    font-size: 50px;
    color: var(--primary);
    box-shadow: 0 16px 32px 0 rgb(0 0 0 / 4%);
}

h4.service-title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.product-title {
    padding-bottom: 20px;
}

.product-link i {
    background: var(--sc-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    width: 100%;
    transition: 0.5s all;
}

.product-link i:hover {
    background: var(--primary);
}

.products-table table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #d1d1d1;
    padding: 20px;
    border-radius: 10px;
}

.products-table th {
    background: #583688;
    color: #fff;
}

.products-table th,
.products-table td {
    text-align: left;
    padding: 8px;
    border: 1px solid #d1d1d1;
}

.products-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.product-card:nth-of-type(even) .product-image {
    order: 1;
}

.product-single-img {
    border-radius: 10px;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.product-item-image {
    position: sticky;
    top: 30px;
    overflow: visible;
}

.product-card {
    margin-bottom: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-list {
    list-style: circle;
}

.testimonial-carousel-3 .owl-nav.disabled {
    display: block;
    margin-left: 10px;
    margin-top: 10px;
}

.testimonial-carousel-3 .owl-prev,
.testimonial-carousel-3 .owl-next {
    background-color: #583688;
    border-color: unset;
    border-radius: 50%;
    color: #fff;
    padding: 6px 11px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 20px;
    display: inline-block;
    cursor: pointer;
    border-width: 0px;
    border-style: solid;
    border: 2px solid #583688;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: 0.5s all;
}

.testimonial-carousel-3 .owl-prev:hover,
.testimonial-carousel-3 .owl-next:hover {
    background-color: #007747;
    color: #fff;
}

@media screen and (max-width:992px) {
    .product-card:nth-of-type(even) .product-image {
        order: 2;
    }

    .product-card .product-image {
        order: 2;
    }

    .product-card .product-content {
        order: 1;
    }

    .product-card {
        border-bottom: 1px solid #d7d6d6;
        padding-bottom: 30px;
    }

    .products-table {
        overflow-x: scroll;
    }
}

@media screen and (max-width:767px) {
    .testimonial-carousel-3 .owl-nav {
        text-align: center;
        margin: 4% 0;
    }
}

@media screen and (max-width:1440px) and (min-width: 992px) {
    .about-img-2 , .about-count  {
        display: none;
    }
    
}

.infra-image .carousel-control-prev, .carousel-control-next {
    background: rgb(0, 0, 0) !important;
    opacity: 1 !important;
}

.infra-image .carousel-control-prev-icon, .carousel-control-next-icon {
    color: #ffffff !important;
}



/*======================================
	*      Products End   *
======================================*/



/*======================================
	*      Infra Start   *
======================================*/
.infra-list {
    list-style: circle;
    margin: 0;
}

.infra-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cert-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cert-image {
    margin-bottom: 30px;
}

/*======================================
	*      Infra End   *
======================================*/



/*======================================
	*      Gallery Start   *
======================================*/
.RMM-Box {
    display: block;
    position: relative;
    margin-bottom: 30px;
    transition: 0.5s all;
    cursor: pointer;
}

.RMM-Box:after {
    background: -moz-linear-gradient(top, rgba(125, 185, 232, 0) 0%, #000000 100%);
    background: -webkit-linear-gradient(top, rgba(125, 185, 232, 0) 0%, #000000 100%);
    background: linear-gradient(to bottom, rgba(125, 185, 232, 0) 0%, #000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007db9e8', endColorstr='#000000', GradientType=0);
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    zoom: 1;
    filter: alpha(opacity=75);
    -webkit-opacity: 0.75;
    -moz-opacity: 0.75;
    opacity: 0.75;
    -webkit-border-radius: 8px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 8px;
    -moz-background-clip: padding;
    border-radius: 8px;
    background-clip: padding-box;
    transition: 0.5s all;
}

.RMM-Box:hover:after {
    top: 0;
}

.RMM-Box img {
    max-width: 480px;
    width: 100%;
    height: auto;
    -webkit-border-radius: 8px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 8px;
    -moz-background-clip: padding;
    border-radius: 8px;
    background-clip: padding-box;
}

.RMM-Box i {
    position: absolute;
    width: 35px;
    height: 35px;
    background: #f4801b;
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    line-height: 35px;
    padding: 0px 7px;
    right: 10px;
    bottom: 10px;
    z-index: 2;
}

.gallery-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.RMM-Box-Info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 40px 10px;
}

.RMM-Box-Info h3 {
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.RMM-Box-Button {
    color: #23242C;
    background: #92C43D;
    text-transform: unset !important;
    font-size: 14px;
    padding: 8px 30px 8px;
    border-radius: 30px;
    transition: all .3s ease;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

/*======================================
	*      Gallery End   *
======================================*/





/*======================================
	*      Hooks Start   *
======================================*/
.hooks {
    position: relative;
    background-color: hsla(0, 0%, 0%, 0.74);
    margin-top: 0;
    margin-bottom: 0;
    z-index: 1;
}

.hooks:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-image: url(../images/Banners/8.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    background-attachment: fixed;
}

.hooks-left {
    position: relative;
    border-radius: 10px 0 0 10px;
    width: 100%;
    height: 100%;
    min-height: 336px;
    overflow: visible;
    margin-bottom: -35px;
}

.hooks-left img {
    position: absolute;
    border-radius: 10px;
    top: -35px;
    left: 0;
    width: 100%;
    object-fit: contain;
    height: 100%;
    overflow: visible;
}

.hooks-right {
    padding: 35px 50px;
    color: #fff;
    text-align: center;
    background: #007747;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hooks-right h3 {
    color: #ffffff;
    padding-bottom: 20px;
    padding-left: 50px;
    font-size: 40px;
}

@media screen and (max-width: 992px) {
    .hooks-circle {
        right: unset;
        top: unset;
        left: 0;
        bottom: -40px;
    }

    .hooks-left {
        border-radius: unset;
    }

    .hooks-right {
        border-radius: unset;
        padding: 5px;
    }

    .hooks-left img {
        top: 0;
    }
}

/*======================================
	*      Hooks End   *
======================================*/




/*======================================
	*      Why Us Start   *
======================================*/
.section-area.unique-section {
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    border-radius: 20px;
}

.product-features-style-one {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 70px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.organic-badge {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 190px;
    height: 170px;
    border-radius: 50%;
    background: #fff;
    padding: 26px;
    box-shadow: 0 25px 70px rgb(0 0 0 / 7%);
}

.quality-main {
    padding: 20px;
}

@media  screen and (max-width: 991px) {
    .organic-badge {
    height: 100px;
    padding: 6px;
    display: none;
    }
    
}

.product-features-style-one .organic-badge img {
    animation: spinner 30s infinite linear;
}

.product-feature-item {
    text-align: center;
}

.thumb {
    margin: auto;
    position: relative;
    z-index: 1;
}

.thumb i {
    font-size: 50px;
    color: #fff;
}

.counter-bx {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 0.6px;
    font-size: 40px;
}

.counter-text {
    color: #fff;
    font-size: 1.4rem;
}

.product-features-style-one::before {
    position: absolute;
    left: 0;
    top: -50%;
    content: "";
    height: 200%;
    width: 400%;
    border-radius: 20px;
    background-image: url(../images/Background/hooks-background.png);
    overflow: hidden;
    opacity: 0.1;
}

.product-features-style-one::after {
    position: absolute;
    left: 0;
    top: -50%;
    content: "";
    height: 200%;
    border-radius: 20px;
    width: 400%;
    background-color: var(--primary);
    z-index: -1;
    overflow: hidden;
}

.why-us-list {
    list-style: none;
    padding: 0
}

.why-us-list li {
    position: relative;
    z-index: 1;
    padding-left: 34px;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-us-list li:after {
    position: absolute;
    left: 0;
    top: 2px;
    content: "\f00c";
    font-family: "FontAwesome";
    height: 20px;
    width: 20px;
    line-height: 20px;
    border: 1px solid #583688;
    text-align: center;
    color: #583688;
    border-radius: 5px;
    font-size: 12px;
}

@media screen and (max-width: 992px) {
    .product-features-style-one::after {
        height: 110%;
        top: 0
    }

    .product-features-style-one {
        padding-top: 35px;
        ;
    }

    .organic-badge {
        left: unset;
        top: 0;
        right: 0;
        max-width: 100px;
        max-height: 100px;
    }

    .organic-badge img {
        left: unset;
        top: 0;
        right: 0;
        max-width: 100%;
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

/*======================================
	*      Why Us End   *
======================================*/




/*======================================
	*      Footer Start   *
======================================*/
.subscribe-section {
    position: relative;
    background: #000;
}

.subscribe-section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url(../images/Background/Subscribe-Bg.jpg) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.5;
}

.subscribe-form input#subscribe_mail {
    border-radius: 40px 0 0 40px !important;
}

.subscribe-section .input-group-append {
    margin-left: -10px;
}

.subscribe-form button.btn {
    border-radius: 0 40px 40px 0 !important;
}

.subscribe-form .btn {
    padding: 0 40px !important;
}

.widget.footer_widget img {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
}

.footer-style2 .footer-top {
    background-color: transparent;
    position: relative;
    z-index: 1;
}

.footer-style2 {
    position: relative;
    background-color: rgb(41, 8, 1);
    background-image: url(../images/Banners/6.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
}

.footer-style2:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/Banners/6.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    border-radius: 0 40px 40px 0;
}

.footer-style2 .footer-top {
    padding: 60px 0 30px;
}

.footer-style2 .footer-top a,
.footer-style2 .footer-top p {
    color: var(--footerText);
    font-size: var(--paragraphFontSize);
}

.footer-style2 .footer-top a:hover {
    color: var(--footerTextHover);
}

.widget.footer_widget.about {
    background-color: var(--footerAboutBox);
    padding: 10px 20px;
    border-radius: 10px;
}

.footer-style2 .footer-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-style2 .footer-title:after {
    display: block;
    height: 2px;
    margin-top: 0;
    margin-bottom: -12px;
    content: '';
    position: absolute;
    bottom: 0;
    width: 50px;
    left: 0;
    background: #fff;
}

.footer-style2 .list-2 ul li {
    width: 50%;
    float: left;
    position: relative;
    padding: 0px 10px 0px 15px;
    margin-bottom: 0;
    line-height: 20px;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

.footer-style2 .list-2 ul li:before {
    content: "\f105";
    position: absolute;
    left: 0;
    top: 10px;
    display: block;
    font-family: "FontAwesome";
    color: #fff;
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
}

.footer-style2 .list-2 ul li:hover:before {
    left: 2px;
}

.footer-style2 .footer-top.top-padding {
    padding: 60px 0 30px;
}

.footer-style2 .footer-bottom {
    background: transparent;
    font-size: 14px;
    color: var(--footerBottomText);
    font-weight: 400;
    padding: 0 !important;
    border-top: unset;
    position: relative;
}

.footer-style2 .footer-bottom .footer-bottom-inner {
    padding: 20px 0;
    background: var(--footerBottomBg);
    color: var(--footerBottomText);
    position: relative;
    z-index: 1;
    padding-right: 30px;
    border-radius: 0 30px 0 0;
}

.footer-style2 .footer-bottom .footer-bottom-inner::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 500%;
    background: #007747;
    z-index: -1;
    border-radius: 0 30px 0 0;
}

.footer-style2 .footer-bottom p {
    font-size: 14px;
    color: var(--footerBottomText);
    font-weight: 400;
    line-height: 24px;
}

.footer-style2 .input-group .input-group-append {
    margin-left: -10px;
}

.footer-icons ul {
    list-style: none;
    padding-left: 0;
    text-align: center;
    margin-bottom: 0;
}

.footer-icons ul li {
    display: inline-block;
    border-radius: 50%;
    background-color: var(--primary);
    margin: 5px 2px;
    width: 50px;
    text-align: center;
    transition: 0.5s all;
    padding: 2px;
}

.footer-icons ul li:hover {
    transform: scale(1.1);
}

.footer-icons ul li img {
    border-radius: 50%;
}

.RMM-Social-Media-5 ul {
    list-style: none;
    padding-left: 0;
}

.RMM-Social-Media-5 ul li {
    display: inline-block;
    border-radius: 5px;
    background-color: #fff;
    margin: 5px 2px;
    width: 40px;
    text-align: center;
}

.RMM-Social-Media-5 ul li a {
    color: #333 !important;
}

.RMM-Social-Media-5 ul li:hover a {
    color: #fff !important;
}

.RMM-Social-Media-5 ul li:nth-child(1):hover {
    background-color: var(--facebook1);
}

.RMM-Social-Media-5 ul li:nth-child(2):hover {
    background-color: var(--linkedin1);
}

.RMM-Social-Media-5 ul li:nth-child(3):hover {
    background-color: var(--instagram1);
}

.RMM-Social-Media-5 ul li:nth-child(4):hover {
    background-color: var(--youtube1);
}

.RMM-Link a {
    color: gold;
}

.RMM-Link a:hover {
    color: gold;
}

@media screen and (max-width: 767px) {
    .footer-style2 .list-2 ul li {
        width: 50%;
    }
}

@media screen and (max-width: 576px) {
    .footer-style2 .list-2 ul li {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .footer-style2 .footer-title {
        margin-top: 20px;
    }
}

/*======================================
	*      Footer End   *
======================================*/




/*======================================
	*      Hooks Start   *
======================================*/
.hooks-section {
    background: var(--sc-primary);
    position: relative;
    top: 50px;
    padding: 20px;
    z-index: 2;
    margin-left: 0px;
    margin-right: 0;
}

.hooks-section h5 {
    font-size: 25px;
    color: #fff;
    text-align: center;
    font-style: italic;
}

.hooks-section p {
    font-size: 18px;
    color: #fff;
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

.hooks-section2 {
    position: relative;
    background-color: var(--primary);
    border-radius: 0 0 10px 10px;
    padding: 20px 10px;
}

.hooks-section2 h5 {
    font-size: 24px;
    color: #fff;
    text-align: start;
    padding-top: 15px;
}

/*======================================
	*      Hooks End   *
======================================*/




/*======================================
	*      About Start   *
======================================*/
.about-section .about-img-inner {
    width: 180px;
    height: 180px;
    position: absolute;
    z-index: 1;
    background: var(--primary);
    border: 10px solid #fff;
    color: #fff;
    left: 15%;
    top: 84%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
}

.about-section .about-img-inner div>span {
    font-size: 21px;
    line-height: 22px;
    display: block;
}

.single-about-box {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    border: 1px solid #f0eef9;
    padding: 24px 28px 22px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 10px rgb(9 29 62 / 15%);
    min-height: 195px;
}

.single-about-box .inner {
    position: relative;
    display: block;
}

.single-about-box .inner .icon,
.single-about-box .inner .text {
    display: table-cell;
    vertical-align: middle;
}

.single-about-box .inner .icon {
    width: 60px;
    text-align: center;
    font-size: 60px;
    color: #343434;
}

.single-about-box .inner .text {
    padding-left: 15px;
}

.single-about-box .inner .text>span {
    margin: 0 0 14px;
    font-size: 19px;
    font-weight: 700;
    color: #343434;
}

.single-about-box .inner .text p {
    line-height: 20px;
    padding-top: 5px;
}

.single-about-box .inner .text a:hover {
    color: var(--sc-primary);
}

.img-fit {
    text-align: center;
}

.img-fit img {
    width: 50%;
}

@media screen and (max-width:576px) {
    .about-section .about-img-inner {
        width: 140px;
        height: 140px;
        left: 72%;
    }

    .about-section .about-img-inner div>span {
        font-size: 16px !important;
    }

    .single-about-box .inner .icon,
    .single-about-box .inner .text {
        display: block;
        text-align: center;
    }

    .single-about-box .inner .icon {
        width: 100%;
    }

    .single-about-box {
        padding: 10px;
    }
}

@media screen and (max-width:992px) {
    .single-about-box {
        min-height: unset;
    }
}

/*======================================
	*      About End   *
======================================*/




/*======================================
	*      Events Start   *
======================================*/
.single-events-box {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    background-color: #ffffff;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #dbcfcf;
    border-radius: 10px;
}

.single-events-box .image {
    position: relative;
}

.single-events-box .image .date {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-block;
    background-color: #ffffff;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.single-events-box .image img {
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.single-events-box .content {
    padding: 25px 20px;
    position: relative;
    border-radius: 0 0 5px 5px;
    background-color: #000;
}

.single-events-box .content:before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-image: url(../images/Background/events-content-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    opacity: 0.3;
}

.single-events-box .content h3 {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 25px;
    color: #fff;
}

.single-events-box .content h3 a {
    display: inline-block;
}

.shot-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 25px;
    color: #fff;
}

.single-events-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: unset;
}

.events-details-desc .events-details-image {
    margin-bottom: 30px;
}

.events-details-desc .events-details-image img {
    border-radius: 5px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.events-details-desc h3 {
    margin-bottom: 20px;
    font-size: 25px;
}

.events-details-desc h3:not(:first-child) {
    margin-top: 30px;
}

.ttr-post-header img {
    border-radius: 10px;
}

.post-title {
    padding-top: 10px;
}

.recent-posts-entry .widget-post .media-post li a {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
}

.eventImg {
    border-radius: 10px;
}

/*======================================
	*      Events End   *
======================================*/




/*======================================
	*      Counter Start   *
======================================*/
.counter-section1 {
    position: relative;
    background-color: #333;
    margin-right: 0;
    margin-left: 0;
}

.counter-section1:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/Counter-Bg.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    background-attachment: fixed;
}

.counter-section1 .counter-style-2 .counter-bx {
    margin-bottom: 10px;
    font-size: 40px;
    color: #fff;
}

.counter-section1 .counter-style-2 .counter-bx span {
    font-size: 75px;
    font-weight: 300;
    line-height: 110px;
    display: inline-block;
    color: #fff;
}

.counter-section1 .counter-style-2 .counter-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
}

.counter-section1 .counter-style-2 .bg-icon {
    color: #000;
    width: 100%;
    text-align: center;
    top: -40px;
    bottom: auto;
    opacity: 0.2;
}

.counter-section {
    position: relative;
}

.counter-section:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/Background/Counter-Bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
}

.counter-section .counter-style-2 .counter-bx {
    margin-bottom: 10px;
    font-size: 40px;
    color: #fff;
}

.counter-section .counter-style-2 .counter-bx span {
    font-size: 75px;
    font-weight: 300;
    line-height: 110px;
    display: inline-block;
    color: #fff;
}

.counter-section .counter-style-2 .counter-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
}

.counter-section .counter-style-2 .bg-icon {
    color: #000;
    width: 100%;
    text-align: center;
    top: -40px;
    bottom: auto;
    opacity: 0.2;
}

@media screen and (max-width:992px) {
    .counter-section1:before {
        background-size: cover;
    }
}

/*======================================
	*      Counter End   *
======================================*/





/*======================================
	*      Products Start   *
======================================*/
.home-product-section {
    position: relative;
}

.home-product-section:before {
    position: absolute;
    content: "\f013 ";
    font-family: 'FontAwesome';
    right: 10%;
    top: -27%;
    font-size: 200px;
    opacity: 0.1;
    -webkit-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.home-product-section .single-product {
    margin-top: 30px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.home-product-section .single-product .content-box i {
    position: absolute;
    border-radius: 50%;
    background-color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #00235a;
    z-index: 3;
    right: 110px;
    bottom: 0;
    content: "";
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(115%);
    transform: translateY(115%);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    cursor: pointer;
}

.home-product-section .single-product:hover .content-box i {
    opacity: 1;
    visibility: visible;
    right: 110px;
    bottom: 120px;
}

@media screen and (max-width:767px) {
    .products-section .content-inner {
        overflow-x: scroll;
    }

    .home-product-section .single-product .content-box i,
    .home-product-section .single-product:hover .content-box i {
        right: 45%;
        bottom: 160px;
    }

    .home-product-section:before {
        right: 25%;
        top: -5%;
        font-size: 150px;
    }
}

@media screen and (min-width:767px) and (max-width:1200px) {
    .product-info {
        order: 1 !important;
    }

    .home-product-section .single-product .content-box i,
    .home-product-section .single-product:hover .content-box i {
        right: 140px;
    }
}

/*======================================
	*      Products End   *
======================================*/





/*======================================
	*      Infra Start   *
======================================*/
.infra-section1 .infra {
    border-bottom: 1px solid #d3d3d3;
}

.infra-section1 .single-infra {
    position: relative;
    margin-bottom: 20px;
}

.infra-section1 .infra-img {
    border: 1px solid #f0eef9;
    box-shadow: 0px 0px 10px rgb(9 29 62 / 15%);
    padding-bottom: 50px;
}

.infra-section1 .infra-img img {
    height: 350px;
    width: 100%;
    object-fit: fill;
}

.infra-section1 .infra-name {
    position: absolute;
    bottom: 0%;
    left: 18%;
    background: var(--primary);
    width: 65%;
    border: 1px solid #ffffff;
    padding: 8px 20px 0 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0px 0px 10px rgb(9 29 62 / 15%);
    border-radius: 10px 10px 0 0;
}

.infra-section1 .infra-name h5 {
    color: #fff;
    font-size: 18px;
}

.infra-section2 .single-infra {
    position: relative;
    margin-bottom: 20px;
}

.infra-section2 .infra-img {
    border: 1px solid #f0eef9;
    box-shadow: 0px 0px 10px rgb(9 29 62 / 15%);
}

.infra-section2 .infra-img img {
    height: auto;
    width: 100%;
    object-fit: fill;
}

.infra-section2 .infra-name {
    padding: 8px 20px 0 20px;
    text-align: center;
}

.infra-section2 .infra-name h5 {
    color: #333;
    font-size: 20px;
}

@media screen and (max-width:767px) {
    .infra-img img {
        height: auto;
    }
}

/*======================================
	*      Infra End   *
======================================*/




/*======================================
	*      Careers Start   *
======================================*/
.career-box {
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.job-img {
    height: 100%;
}

.job-img img {
    object-fit: cover;
    height: 100%;
}

.CareerForm {
    background: var(--primary);
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    border-radius: 5px;
    /*border: 4px solid var(--primary);*/
    position: relative;
    z-index: 999;
}

.CareerForm:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: '';
    background: url('../images/Background/JobForm.webp');
    opacity: 0.2;
    z-index: -1;
}

.jobPopForm label {
    width: 100%;
    margin-top: 10px;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
}

.acBody {
    display: none;
    padding-left: 0px;
    padding-top: 0px;
    background: #fff;
    border: solid 1px var(--primary);
    margin-left: 1px;
    margin-right: 1px;
    border-radius: 0 0 5px 5px;
}

.cForm .service-area-two .service-item,
.cStudy.service-area-two .service-item {
    background-image: unset;
}

.cForm .service-area-two .service-item:after {
    background-color: #fff;
}


/*======================================
	*      Careers End   *
======================================*/

@media screen and (max-width:992px) {
    .RMM-Banner-5 .active .inner-content .content-left h4 {
        font-size: 1.5rem !important;
        font-weight: 400;
        color: #eeeeee !important;
    }

    .content-left {
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: left;
        gap: 20px;
        text-align: left;
    }

    .RMM-Banner-5 .inner-content {
        position: absolute;
        top: 20% !important;
        width: 100%;
        z-index: 5;
    }
}


.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 100vh;
  display: flex;
  background-size: cover; background-position: center; position: relative;
  align-items: center;
  position: relative;
}

.hero-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute; inset: 0; background: rgba(30, 34, 45, 0.5); z-index: 1;
}

.hero-overlay .container {
  position: relative; z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 3;
}

strong {
  font-weight: 600;
}

.hero-badge {
  display: inline-block;
  background: rgba(251, 183, 36, 0.2);
  backdrop-filter: blur(10px);
  padding: .5rem 1rem;
  border-radius: 50px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .5px;
  border: 1px solid rgba(251, 165, 36, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Enhanced Hero Animations */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(251, 191, 36, 0.1);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
  animation: floatRotate 8s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.element-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.element-3 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.element-4 {
  top: 70%;
  right: 20%;
  animation-delay: 3s;
}

.element-5 {
  top: 40%;
  right: 5%;
  animation-delay: 4s;
}

.element-6 {
  top: 20%;
  left: 20%;
  animation-delay: 0.5s;
}

.element-7 {
  top: 50%;
  right: 10%;
  animation-delay: 1.5s;
}

.element-8 {
  top: 80%;
  left: 15%;
  animation-delay: 2.5s;
}

.element-9 {
  top: 35%;
  left: 25%;
  animation-delay: 3.5s;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite alternate;
}

.animate-pulse-text {
  animation: pulseText 2s ease-in-out infinite;
}

.animate-typewriter {
  animation: typewriter 3s steps(40) 1s both;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.animate-bounce-in {
  animation: bounceIn 1s ease-out 1s both;
}

.btn-orange {
    background-color: #F4801D;
}

.btn-orange:hover {
    background-color: #ff7700;
  box-shadow: 0 0 20px rgba(231, 96, 5, 0.795);
}

.btn-glow {
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
  animation: buttonGlow 2s ease-in-out infinite alternate;
}

.btn-hover-fill {
  position: relative;
  overflow: hidden;
}

.btn-hover-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.5s ease;
}

.btn-hover-fill:hover::before {
  left: 0;
}

.carousel-control-next,
.carousel-control-prev {
  width: 50px;
  height: 50px;
  /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease;
  z-index: 4;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  /* background: rgba(255, 255, 255, 0.2); */
  transform: translateY(-50%) scale(1.1);
}

.hero-slide {
  height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 1s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  padding-top: 5%;
  animation: fadeUp 1.5s ease forwards;
}

.hero-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1.4s ease forwards;
}

.hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1.8s ease forwards;
}

.btn-glow {
  animation: glowFade 2s infinite alternate;
}

.owl-dots {
    display: none;
}

.owl-nav .owl-next, .owl-prev {
    border-radius: 50%;
    padding: 10px 15px;
    background-color: transparent !important;
    color: #f0f0f0;
    border: 1px solid #c7c7c7;
}

.owl-nav .owl-next:hover , .owl-prev:hover {
    background-color: #009407 !important;
    border: 1px solid #07ff07;
    color: #fdfdfd;
}

.hooks-three {
    background-color: #18613B;
    margin: 50px 0;
}

.hooks-three-content {
    background: rgba(255, 255, 255, 0.089);
    backdrop-filter: blur(25px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.459);
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.048); */
    color: #fff;
    font-weight: bold;
}

.hooks-three h2 {
    color: #7eff64;
}

.hooks-three p {
    color: #f1f1f1;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hooks-four {
    background-color: #16613A;
    color: #ffffff;
    margin: 2%;
    border-radius: 20px;
}

.hooks-four {
  background-color: #16613A;
  color: #ffffff;
  margin: 2%;
  border-radius: 20px;
}

.hooks-four p {
    color: rgb(252, 248, 242);
}

.hooks-three-btns {
    gap: 20px;
}

.leaf-fill2 {
  display: inline-block;
  transform: scaleX(-1);
}

.hooks-three-btn {
  background-color: #C6FF00;
  color: #000;
  border-radius: 10px;
  transition: 0.3s ease;
}

.hooks-three-btn:hover {
  background-color: #b1ea00;
  color: #000;
  text-decoration: none;
}

.hooks-icon {
  max-width: 70px;
  margin: auto;
}

@media (max-width: 991px) {
  .hooks-icon {
    display: none;
  }
  .hooks-three  {
    padding: 20px;
  }

  .hooks-three h2 {
    font-size: 1.8rem;
  }
}


@media screen and (max-width: 768px) {
    .hero-content {
        padding-top: 0%;

    }

    .RMM-Banner-5 .container {
        min-height: 550px !important;
    }

        .hero-subtitle  {
            font-size: 0.9rem;
        }
.hooks-three {
    text-align: center;
    margin: 20px
}
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes glowFade {
  0% {
    box-shadow: 0 0 5px #ffc10780;
  }
  100% {
    box-shadow: 0 0 15px #ffc107;
  }
}

.why-ecocoir .col-md-4 {
  margin-bottom: 1%;
}

.feature-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(13, 225, 253, 0.144);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.feature-card h5 {
  margin-bottom: 12px;
}

.row.g-4 {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

/* gallery home */
.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.gallery-title {
  font-size: 2rem;
  font-weight: bold;
  padding: 2rem 0 0;
  color: #1e293b;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-tile:hover img {
    transform: scale(1.05);
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.slider-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 550px;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-arrow {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: white;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-arrow:hover {
  background: #f1f5f9;
  color: #1e293b;
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.nav-arrow:active {
  transform: scale(0.98);
}

.nav-arrow svg {
  transition: transform 0.2s ease;
}

.nav-arrow:hover svg {
  transform: translateX(2px);
}

.nav-arrow-left:hover svg {
  transform: translateX(-2px);
}

.pagination-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: #94a3b8;
  transform: scale(1.2);
}

.dot.active {
  background: #3b82f6;
  transform: scale(1.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-container {
    padding: 1rem;
  }
  
  .gallery-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .slider-container {
    gap: 0.5rem;
  }
  
  .slider-track {
    height: 280px;
  }
  
  .nav-arrow {
    width: 44px;
    height: 44px;
  }
  
  .nav-arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 2rem;
  }
  
  .slider-track {
    height: 220px;
  }
  
  .nav-arrow {
    width: 40px;
    height: 40px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .pagination-dots {
    gap: 0.5rem;
  }
}

.navbar-nav > li.dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px 10px;
    list-style: none;
    z-index: 1000;
}

/* Show dropdown on hover */
.navbar-nav > li.dropdown:hover > .dropdown-menu {
    display: block;
}

/* Dropdown header */
.navbar-nav .dropdown-menu .dropdown-header {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
}

.navbar-nav .dropdown-menu .dropdown-header h3 {
    margin: 0;
    font-size: 16px;
    color: #222;
}

.navbar-nav .dropdown-menu .dropdown-header p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
}

/* Links */
.navbar-nav .dropdown-menu li a {
    display: block;
    padding: 15px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.navbar-nav .dropdown-menu li a:hover {
    background: #f5f5f5;
}

.products-al {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.products-al .cards {
    max-width: 48%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Mobile styles */
@media (max-width: 768px) {
    .navbar-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
    min-width: 100%;
    }

    .products-al .cards {
    max-width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}
}
.gallery-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.gallery-title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.gallery-tile img:hover {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9989799;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.788);
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
}
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}
.listitems {
    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.listitems .listitem-btn {
    background-color: transparent;
    border: 1px solid #5ff523;
    color: #ffffff;
    padding: 12px 20px;
    width: max-content;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.listitems .listitem-btn:hover {
    background-color: #5ff523;
    color: #1a1a1a;
}

.listitems .listitem-btn.active {
    background-color: #ffffff;
    color: #3a3a3a;
    border: none;
}

@media screen and (max-width: 768px) {
    .listitems .row {
        gap: 30px;
    }
    .listitems .listitem-btn {
    font-size: 0.9rem;
}
}