/********** Template CSS **********/
:root {
    --primary: #c42e33;
    /* --primary: #AF8421; */
    --secondary: #335482;
    --light: #ffffff;
    --dark: #000000;
    --dark: hsl(0, 0%, 0%);
    --dark-light: hsl(0, 0%, 40%);
    --white-color: hsl(0, 0%, 95%);
    --title-color: hsl(0, 0%, 0%);
    --text-color: hsl(0, 0%, 35%);
    --text-color-light: hsl(0, 0%, 64%);
    --body-color: hsl(0, 0%, 87%);
    --container-color: hsl(0, 0%, 83%);
    --e-global-color-accent: #e01c08;
    --e-global-color-accentsecondary: #b11101;

}

p {
    font-size: 18px;
}

h5 {
    text-transform: uppercase;
    color: var(--primary);
    font-size: 17px;
    font-weight: 600 !important;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none !important;
}

ol,
ul {
    padding-left: 0px;
}



h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}


h6,
.h6,
.fw-normal {
    font-weight: 400 !important;
}



.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

body {
    font-family: "Barlow", sans-serif !important;
}


h6 {
    /* font-family: 'Rubik'; */
    font-family: "Barlow", sans-serif;
}

h1 {
    /* font-family: 'Rubik'; */
    font-size: 36px;
    font-family: "Barlow", sans-serif;
}

h2 {
    /* font-family: 'Rubik'; */
    font-size: 36px;
    font-family: "Barlow", sans-serif !important;
}

@media (max-width: 768px) {
    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 25px;
    }
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary:hover {
    background-color: var(--secondary);
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    background-color: var(--primary);
    border: none;
    font-size: 18px;

}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    /* padding: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    background-color: var(--light);
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover .btn-sm-square {
    color: #FFFFFF;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

.top-social-icon a:hover i {
    color: #fff;
}


.top-strip-sec {
    background-color: #0d0d2f;
}


/* Shine Effect Button */
/* .shine-button {
    position: relative;

    padding: 14px 20px !important;
    font-size: 1.1rem;
    color: white;
    background: linear-gradient(45deg, rgb(245 48 12), rgb(243 46 13));
    border: none;

    cursor: pointer;
    overflow: hidden;
}

.shine-content {
    position: relative;
    z-index: 1;
}

.shine-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.5s ease;
}

.shine-button:hover::before {
    transform: rotate(45deg) translateY(100%);
}
 */

/* ------------------------------FIRST BUTTON------------------- */



/* Shine Effect Button */
.shine-button:hover {
    color: var(--light);
}

.shine-button {
    position: relative;
    padding: 15px 47px !important;
    font-size: 1.1rem;
    color: white;
    background: linear-gradient(45deg, rgb(196 46 51), rgb(196 46 51));
    /* background: linear-gradient(45deg, rgb(245 48 12), rgb(243 46 13)); */
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
}

.shine-content {
    position: relative;
    z-index: 1;
}

/* Shine effect */
.shine-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.5s ease;
}


.shine-button:hover::before {
    transform: rotate(45deg) translateY(100%);
    color: var(--light) !important;
}

/* Keyframe animation for icon */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Default icon state */
.shine-button .icon {
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Apply animation on hover */
.shine-button:hover .icon {
    animation: slideInLeft 0.4s forwards;
    color: var(--light);
}


/* ------------------------------FIRST BUTTON------------------- */


/* ------------------------------SECOND BUTTON------------------- */


/* Shine Effect Button */
.shine-button-1:hover {
    color: var(--light);
}

.shine-button-1 {
    position: relative;
    padding: 14px 20px !important;
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    background: linear-gradient(45deg, rgb(196 46 51), rgb(196 46 51)) !important;
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* border-radius: 15px 0px 15px 0px; */
}

.shine-content-1 {
    position: relative;
    z-index: 1;
}

/* Shine effect */
.shine-button-1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.562), transparent);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.5s ease;
}


.shine-button-1:hover::before {
    transform: rotate(45deg) translateY(100%);
    color: var(--light) !important;
}

/* Keyframe animation for icon */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Default icon state */
.shine-button-1 .icon {
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Apply animation on hover */
.shine-button-1:hover .icon {
    animation: slideInLeft 0.4s forwards;
    color: var(--light);
}

/* ------------------------------SECOND BUTTON------------------- */
/*** Navbar ***/



/* ---------------TOP BAR-------------- */
.top-bar-penta a {
    color: #FFFFFF;
    text-decoration: none;
}

.top-bar-penta a i {
    color: var(--primary);
}


/* ---------------TOP BAR-------------- */


/* ---------------BOTTOM BAR--------------- */


.dropdown-item .active {
    color: var(--primary);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #d7b56500;
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: var(--light);
}

.dropdown-item {
    padding: 12px;
    color: var(--light);
    border-bottom: 1px dotted rgb(255, 255, 255);
}

.last-child {
    border-bottom: 1px dotted rgba(255, 255, 255, 0);
}

@media (max-width: 768px) {
    .dropdown-item {
        color: var(--dark);
        font-size: 18px;
    }

    .navbar .navbar-cont {
        margin-top: 20px !important;
    }
}

/* ---------------BOTTOM BAR--------------- */

.navbar .shadow-sm {
    box-shadow: none !important;
}

.navbar .navbar-cont {
    background-color: var(--light);
    margin-top: 26px;
    padding: 10px;
    border-radius: 50px;

}


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    color: #AF8421;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -27px !important;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }

    .logo img {
        height: 48px;
    }

    .navbar {
        padding: 0;
        background-color: var(--light);
    }

    .navbar .navbar-cont {
        margin-top: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        padding: 0;
        background-color: var(--secondary);
        /* background-color: #af8421d1; */
        /* border-radius: 10px; */

    }



    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-item .banner-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.header-carousel {
    margin-top: -137px;
}

.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgb(0 0 0 / 82%);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }

    .header-carousel h2 {
        font-size: 28px !important;
    }

    .header-carousel {
        margin-top: 0;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 122px;
    right: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
    background-image: url(./assets/img/banner-img/slider-1.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: none;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


.header-carousel h2 {
    /* font-size: 46px; */
}











/* Custom Navbar Collapse Animation */


.navbar-collapse.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.navbar-collapse.show {
    display: block !important;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        width: 100%;
        /* text-align: left; */
    }

    .navbar-nav .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

}

@media only screen and (max-width:767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 999;
        transition: all 0.4s ease-in-out;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    }
}










/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */

/* ----------------BANNER STYLE START----------------- */

.banner-section .welcome-text::after {
    content: " - ";
    font-family: icomoon;
    color: var(--primary);
    /* border: 1px solid var(--theme-color); */
    position: absolute;
    background-color: #ec5429;
    top: 3px;
    left: 3px;
    height: 20px;
    width: 40px;
    padding: 2px 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.banner-section h2 {
    /* font-family: "Inter", sans-serif; */
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 64px;
}

.banner-section .banner-shape-design {
    height: 50px;
    width: 50px !important;
    display: flex;
    justify-content: center;
}

.banner-section h4 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 22px;
}

@keyframes float-bob-y {


    0% {
        transform: translateY(-30px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-30px);
    }
}

.float-bob-y {
    animation-name: float-bob-y;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}



@media only screen and (max-width:767px) {
    .about-2-section h3 {
        font-size: 26px !important;
        line-height: 38px !important;
    }

}

/* ----------------BANNER STYLE START----------------- */


/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */



/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* -----------------=============== 3 BOX DESIGN ================---------------- */

.three-box-design .for-box-design-penta {
    border-right: 1px solid rgb(226, 226, 226);
}

.three-box-design .for-box-design-2 h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2em;
    margin-top: 15px;
}

.three-box-design .for-box-design-penta h6 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5em;
    margin-top: 15px;
}

.three-box-design .for-box-design {
    padding: 25px 0px 25px 25px;
}

.three-box-design .for-full-box {
    box-shadow: 0px 5px 50px 2px rgba(0, 0, 0, 0.07058823529411765);
    background-color: #fff;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 30px;
    margin-top: -115px;
    position: relative;
    z-index: 1;
}

.three-box-design .for-box-design-1 {
    padding: 25px 0px 25px 25px;
}

@media (max-width: 768px) {
    .three-box-design .for-full-box {
        margin-top: 0;
    }

    .three-box-design .for-box-design-penta {
        border-right: 1px solid rgba(226, 226, 226, 0);
        border-bottom: 1px solid rgb(226, 226, 226);
        text-align: center;
    }

    .three-box-design .for-box-design {
        padding: 10px;
        padding-bottom: 10px;

    }

    .three-box-design .for-box-design-1 {
        padding: 0;
    }

    .three-box-design .for-box-design-2 {
        text-align: center;
        padding: 10px;
        padding-bottom: 10px;
    }
}


/* -----------------=============== 3 BOX DESIGN ================---------------- */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */


/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ---------------ABOUT US SECTION START--------------- */




/* ---------------------------ABOUT LEFT STYLE--------------------------- */



/* --------------------badge style--------------------- */

@media only screen and (max-width:767px) {
    .for-heart-circle-box {
        padding: 0px !important;
    }


    .badge {
        --badge-size: 107px !important;
        width: var(--badge-size) !important;
        height: var(--badge-size) !important;
    }

    .badge__char {
        --char-font-size: 7px !important;
        font-size: var(--char-font-size) !important;
    }

    .for-box-circle {
        position: absolute !important;
        left: 40px !important;
        margin-top: -13px !important;

    }
}

.for-heart-circle-box {
    background-color: var(--light);
    padding: 15px;
    border-radius: 50%;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.blinking-image {
    animation: blink 2s infinite ease-in-out;
}

.for-box-circle {
    position: absolute;
    left: -336px;
    display: flex;
    justify-content: end;
    margin-top: -77px;
    z-index: 1;

}

.badge {
    --badge-size: 160px;
    --badge-color: var(--light);

    display: flex;
    justify-content: center;
    align-items: center;

    width: var(--badge-size);
    height: var(--badge-size);

    background: var(--light);
    border-radius: 100%;
    box-shadow: inset 0 0 0 0.9rem var(--badge-color);
    animation: identifier 20s linear infinite;
}

.badge__emoji {
    display: block;
    margin: 0;
    animation-direction: reverse;
    animation: blink 2s infinite ease-in-out;
}



.badge__char {
    --char-font-weight: 600;
    --char-font-size: 1em;
    --char-width: 10px;
    /* --char-font-family: "Arial", sans-serif; */

    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - var(--char-width) / 2);
    height: calc(var(--badge-size) / 2);
    width: var(--char-width);
    background-repeat: round;
    text-align: center;
    text-transform: uppercase;
    line-height: 1rem;

    font-weight: var(--char-font-weight);
    font-size: var(--char-font-size);
    color: var(--dark);
    font-family: var(--char-font-family);
    transform-origin: bottom center;
    transform: rotate(var(--char-rotate));
}

@keyframes identifier {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ---------------------------ABOUT LEFT STYLE--------------------------- */





/* --------------------badge style--------------------- */

.about-secton h2 span {
    color: var(--primary);
    font-family: "Barlow", sans-serif;
}

.about-secton h2 {
    text-transform: capitalize;
    font-family: "Barlow", sans-serif;
}

.first-about-01 {
    border-radius: 30px;
}

.first-about-02 {
    border-radius: 30px;
    position: relative;
    margin-top: -112px;
    float: right;
}

.about-secton {
    padding: 30px 0;
}


.icon-box-top .img-box-one {
    /* background-color: black; */
    /* width: 23%; */
    /* padding: 16px; */
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
    transition: all 0.3s ease-in-out;
}

.icon-box-top h6 {
    color: var(--e-global-color-primary);
    font-size: 20px;
    font-weight: 600 !important;
    line-height: 1.4em;
    padding-top: 10px;
}

.icon-box-top .img-box-one i {
    color: #fff;
    font-size: 25px;
}

.tel-container-box {
    display: flex;
    align-items: center;
}

.box-for-tel {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.tel-container-box {
    padding: 40px 20px;
    box-shadow: 0px 5px 50px 2px rgba(0, 0, 0, 0.07058823529411765);
    border-radius: 30px;
    margin-top: 25px;
}

.for-button-last {
    display: flex;
    align-items: center;
    justify-content: end;
}

.first-about-03 {
    border-radius: 30px;
}

.content-box-for a span {
    color: #00000067;
}

.content-box-for a {
    font-size: 20px;
    font-weight: 600 !important;
    color: #000000;
}

.for-about-right-cont {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
}


@media only screen and (max-width:768px) {
    .first-about-02 {
        margin-top: 50px;
    }

    .icon-box-top {
        display: flex;
        align-items: center;
        margin-top: 10PX;
    }

    .icon-box-top h6 {
        font-size: 17px;
        margin-left: 15px;
    }

    .tel-container-box {
        margin-top: 10px;
    }
}




/* ---------------ABOUT US SECTION START--------------- */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */




/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* =============-------------------------ABOUT PAGE VISION AND MISSION START-------------------====================== */

.for-right-box .for-one-row {
    border-bottom: 1px solid #ffffff5d;
    margin-bottom: 10px;
}

.for-right-box {
    background-color: var(--e-global-color-accent);
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    padding: 30px 70px 0px 50px;
}

.for-full-container {
    background-color: var(--e-global-color-accent);
}

.vision-mission-sec {
    padding: 30px 0;
}

.for-right-box h4 {
    color: var(--light);
}

.for-right-box p {
    color: var(--light);
    text-align: justify;
}


@media only screen and (max-width:768px) {
    .for-right-box {
        padding: 20px;
    }

    .devision-sec .content-for-devi h4 {
        font-size: 19px !important;
    }
}

/* =============-------------------------ABOUT PAGE VISION AND MISSION END-------------------====================== */



/* =============-------------------------ABOUT PAGE DVISION AND MISSION STAET-------------------====================== */

.for-about-why h3 {
    font-size: 19px;
}



.devision-sec {
    padding: 40px 0;
}

.devision-sec h2 span {
    color: var(--primary);
    font-family: "Barlow", sans-serif;
}

.devision-sec h2 {
    text-transform: capitalize;
    font-family: "Barlow", sans-serif;
}



.for-division-sec-right .phone-deatils-sec h4 a span {
    font-size: 22px;
    font-weight: 500;
}

.for-division-sec-right .phone-deatils-sec h4 a {
    color: var(--light);
    font-size: 17px;
}

.for-division-sec-right .phone-deatils-sec .icon-box i {
    font-size: 30px;
    color: var(--light);
}

.for-division-sec-right .phone-deatils-sec .icon-box {
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #e01c08b0 -37%, #b11101de 32%, var(--e-global-color-accent) 85%);
    background-size: 200% auto;
    transition: all 0.3s ease-in-out;
}

.phone-deatils-sec:hover {
    background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%) !important;
    background-size: 200% auto;
    transition: all 0.3s ease-in-out;
}



.for-division-sec-right .phone-deatils-sec {
    width: 50%;
    background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
    padding: 15px 10px;
    border-radius: 30px;
}

.for-division-sec-right {
    background-image: url(../img/about-img/expertise-image.jpg);
    border-radius: 30px;
    display: flex;
    padding-bottom: 20px;
    align-items: end;
    padding-left: 50px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.devision-sec .content-for-devi h4 {
    font-size: 22px;
    color: #0000009e;
}

.devision-sec .content-for-devi {
    display: flex;
    justify-content: start;
    align-items: center;
}

.images-box {
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
    transition: all 0.3s ease-in-out;
}


@media only screen and (max-width:678px) {
    .for-division-sec-right {
        padding-top: 200px;
        padding-bottom: 15px;


    }

    .for-division-sec-right .phone-deatils-sec {
        width: 100%;


    }

    .for-division-sec-right .phone-deatils-sec .icon-box {
        width: 50px;
        height: 50px;
    }
}

/* =============-------------------------ABOUT PAGE DVISION AND MISSION END-------------------====================== */






/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */


/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ---------------SERVICE SECTION START--------------- */




.services-section h2 {
    font-family: "Barlow", sans-serif;
    text-transform: capitalize;
}

.services-section h2 span {
    color: var(--primary);
    font-family: "Barlow", sans-serif;
}

/* .services-section .service-body-box h6{
    text-transform: capitalize;
}
.services-section .service-body-box h3 {
    font-size: 20px;
    font-weight: 500 !important;
} */

.services-section {
    box-shadow: 0px 5px 50px 2px rgba(0, 0, 0, 0.07058823529411765);
}

.services-section .service-body-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 35px 20px 35px;
    font-family: "Barlow", sans-serif;
    /* box-shadow: 0px 5px 50px 2px rgba(0, 0, 0, 0.07058823529411765); */


}

.services-section .for-content-service h6 {
    color: var(--dark);
    font-size: 17px !important;
    font-family: "Barlow", sans-serif;
    text-transform: capitalize;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 15px;
}

.services-section .for-content-service h3 {
    color: var(--dark);
    font-weight: 600 !important;
    font-size: 21px;
}

.services-section .for-content-service {
    padding: 0px 35px 20px 35px;
}

.services-section a i {
    margin-left: 15px;
}

.services-section a {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 0;
}

.services-section .service-icon-box p {
    color: #0000006f;
}

.services-section .service-icon-box {
    /* padding: 30px 38px; */
    background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    font-size: 30px;
    color: var(--light);
    border-radius: 50%;
    position: absolute;
    margin-top: -96px;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url(../img/products/section-bg-shape.png);
    background-color: #F8F8F8;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-box:hover .service-icon-box {
    background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    background-size: 200% auto;
    transition: all 0.3s ease-in-out;
}

.service-box {
    margin-top: 15px;
    margin-bottom: 15px;

}

.service-box img {
    /* border-radius: 30px 30px 0px 0px; */
}

/* Zoom effect on image */
.service-box {
    overflow: hidden;
    border-radius: 30px;
    position: relative;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 5px 50px 2px rgba(0, 0, 0, 0.07058823529411765);
}

.service-box img {
    /* border-radius: 30px 30px 0px 0px; */
    transition: transform 0.5s ease;
    /* width: 100%; */
    /* height: auto; */
}

.service-box:hover img {
    transform: scale(1.05);
}

/* Read More styling */
.services-section a {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 0;
    /* display: inline-flex; */

    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Animate icon when the whole box is hovered */
.service-box:hover a i {
    animation: iconMove 0.6s ease-in-out;
}

/* Keyframe for icon movement */
@keyframes iconMove {
    0% {
        transform: translateX(0);
        color: var(--primary);
    }

    50% {
        transform: translateX(5px);
        color: var(--e-global-color-accentsecondary);
    }

    100% {
        transform: translateX(0);
        color: var(--primary);
    }
}



/* ---------------SERVICE SECTION END--------------- */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */



/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ---------------WHY CHOOSE US SECTION END--------------- */

.why-choose-us h2 {
    font-family: "Barlow", sans-serif;
    text-transform: capitalize;
}

.why-choose-us h2 span {
    color: var(--primary);
    font-family: "Barlow", sans-serif;
}

.why-choose-us .why-choose-us-second {
    margin-top: 80px;
}

.why-choose-us .service-icon-box {
    /* padding: 30px 38px; */
    background: linear-gradient(to right, var(--e-global-color-accent) 0%, var(--e-global-color-accentsecondary) 50%, var(--e-global-color-accent) 100%);
    font-size: 30px;
    color: var(--light);
    border-radius: 50%;
    position: absolute;
    margin-top: -62px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-us .service-body-box p {
    font-family: "Barlow", sans-serif;
}

.why-choose-us .service-body-box h3 {
    padding-top: 42px;
    font-family: "Barlow", sans-serif;
}

.why-choose-us .service-body-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0px 35px 20px 35px;
    font-family: "Barlow", sans-serif;
    box-shadow: 0px 5px 50px 2px rgba(0, 0, 0, 0.07058823529411765);
    border-radius: 0px 0px 30px 30px;
    margin-bottom: 20px;

}

.why-choose-us .why-images-sect {
    display: flex;
    align-items: center;
}

.why-choose-us .for-why-conent {
    padding: 50px 0;
}

.why-choose-us a i {
    margin-left: 15px;
}

.why-choose-us .service-box:hover img {
    transform: scale(1.05);
}

@media only screen and (max-width:678px) {
    .why-choose-us .why-images-sect {
        padding-bottom: 80px;
    }

}

/* ---------------WHY CHOOSE US SECTION END--------------- */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */

/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* =======================TESTIMONIALS SECTION START=================== */





.testi-img-left {

    border-radius: 50%;
}


.testimonials .owl-carousel .item .testi-img-left {

    border-radius: 50%;
    border: 1px solid #dedede;
}



.owl-carousel .owl-item img {
    width: auto !important;
}

.testimonials .owl-carousel .item {
    /* width: 382px !important; */
    margin: 0 40px;
}

@media only screen and (max-width:767px) {
    .testimonials .owl-carousel .item .testi-img-left {
        left: -54px;
        width: 90px;
        height: 90px;
    }

    .testimonials .owl-carousel .item {
        margin: 0;
        margin-left: 50px;
    }

    .testimonials-two-area .title-box {
        padding-left: 25px;
        margin-bottom: 15px;
    }


}




@media only screen and (max-width:767px) {
    .testimonials-two-section .testi-sub-tag {
        font-size: 18px;
    }

    .testimonials-two-section .testi-main-hed {
        font-size: 27px;
    }

    .section-space-medium {
        padding: 30px 0;
    }
}

/* ---------------TESTIMONIALS SECTION END--------------- */

/* ---------------TESTIMONIALS SECTION END--------------- */
.testimonials-two-area {
    padding-left: 21px !important;
    padding-right: 17px !important;
    margin-left: 70px;
    margin-top: 66px;
}

.section-space-medium {
    padding: 53px 0px;
}

.bg-color-1 {
    background: #102039;
}

.p-relative {
    position: relative;
}




@media only screen and (max-width:767px) {}



/* < !--========================------------------TESTIMONIALS SECTION--------------------------====================================--> */


@media only screen and (max-width:767px) {
    .testi-section-star .item {
        padding: 5px !important;
    }

    .testi-section-star {
        padding-bottom: 15px !important;
        padding-top: 15px !important;
    }
}

.testi-section-star h2 {
    font-family: "Barlow", sans-serif;
    text-transform: capitalize;
}

.testi-section-star h2 span {
    color: var(--primary);
    font-family: "Barlow", sans-serif;

}


.testi-section-star {
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: url(../img/products/section-bg-shape.png);
    background-color: #F8F8F8;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.testi-section-star .item {
    background: #ffffff;
    padding: 35px 20px 30px 70px;
    /* border-radius: 15px; */
    box-shadow: 0px 5px 50px 2px rgba(0, 0, 0, 0.01);
    position: relative;
    border: 1px solid #e3e3e3;
    margin: 10px;
    border-radius: 30px;
}

.testi-section-star .profile-img-cont {
    display: flex;
    align-items: center;
}

.testi-section-star .item .star-icons i {
    margin-right: 5px;
    color: var(--primary);
}

.testi-section-star .item .star-icons {
    display: flex;
    margin-bottom: 15px;
    margin-top: 20px;

}

.testi-section-star .item .profile p {
    font-weight: 600;
}

.testi-section-star .item .profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testi-section-star .item .profile .information {
    /* padding-left: 20px; */
    margin-bottom: 15px;
}

.testi-section-star .item .icon i {
    font-size: 32px;
    color: var(--primary);
}

.testi-section-star .owl-carousel .owl-item {
    background: #ffffff00;
    /* padding: 0 20px; */
}

.testi-section-star .owl-nav button {
    position: absolute;
    top: 100%;
    bottom: 0;
    /* width: 45px; */
    /* height: 45px; */
    font-size: 45px !important;
    /* background: #504545 !important; */
    /* border-radius: 50%; */
    /* margin: auto 0; */
    /* box-shadow: 0px 0px 5px #00000069; */
}

.testi-section-star .owl-nav button.owl-next {
    right: 45%;
}

.testi-section-star .owl-nav button.owl-prev {
    left: 45%;
}

.testi-section-star .testimonials-slider h2 {
    margin: 0px;
    font-size: 20px;
}

.testi-section-star .testimonials-slider p {
    /* font-size: 15px; */
}

.testi-section-star .testimonials-slider .owl-item {
    /* text-align: center; */
    /* padding: 10px 20px 20px; */
}

.testi-section-star .owl-theme .owl-nav [class*=owl-]:hover {
    color: var(--secondary) !important;
}

.testi-section-star .owl-theme .owl-nav [class*=owl-] {
    background-color: transparent !important;
    color: var(--primary) !important;
    font-size: 25px;
}

.testi-section-star .owl-dots {
    display: none;
}

.testi-section-star .testimonials-slider .owl-item img {
    width: 160px;
    margin: 0 auto;
}

/* =======================TESTIMONIALS SECTION END=================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */


/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ---------------customer  SECTION START--------------- */
.customer-section .owl-theme .owl-nav [class*=owl-]:hover {
    color: var(--secondary) !important;
}

.customer-section .owl-theme .owl-nav [class*=owl-] {
    background-color: transparent !important;
    color: var(--primary) !important;
    font-size: 20px;
}

.customer-section .owl-theme .owl-dots .owl-dot span {
    display: none;
}

.customer-section h2 span {
    color: var(--primary);
    font-family: "Barlow", sans-serif;
}

.customer-section h2 {
    /* color: var(--primary); */
    font-family: "Barlow", sans-serif;
}

.customer-section .owl-carousel .owl-item {
    padding: 30px;
}

.customer-section .owl-carousel .owl-item img {
    border: 1px solid rgb(204, 204, 204);
}

.customer-section {
    padding-top: 25px;
}


@media only screen and (max-width:678px) {
    .customer-section .owl-carousel .owl-item {
        padding: 10px;
    }
}

/* ---------------customer SECTION START--------------- */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */


/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ---------------BRAND SECTION START--------------- */
.brands-section .owl-theme .owl-nav [class*=owl-] {
    background-color: transparent !important;
    color: var(--primary) !important;
    font-size: 20px;
}

.brands-section .owl-theme .owl-dots .owl-dot span {
    display: none;
}

.brands-section h2 span {
    color: var(--primary);
    font-family: "Barlow", sans-serif;
}

.brands-section .owl-carousel.owl-drag .owl-item {
    padding: 30px;
}

.brands-section .owl-carousel .owl-item img {
    border: 1px solid rgb(204, 204, 204);
}


@media only screen and (max-width:678px) {
    .brands-section .owl-carousel.owl-drag .owl-item {
        padding: 10px;
    }
}

/* ---------------BRAND SECTION START--------------- */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */


/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ---------------FOOTER SECTION START--------------- */



.footer-main .footer-bottom {
    border-top: 1px solid rgb(163 163 163 / 43%);
}

.footer-main .footer-bottom {
    background-color: #222629;
}

.footer-main .footer-top {
    background-color: #222629;
    background-image: url('../img/about-img/footer-bg-shape.png'), url('../img/banner-img/shape-50.png');
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right center;
    background-size: auto, auto;
    /* or set specific size if needed */
    color: #fff;
    /* To ensure text is visible on dark background */
    padding: 70px 0;
}

.footer-main .footer-top .btn-sm-square {
    background-color: transparent;
    border-radius: 0;
}

.footer-main .footer-top li a {
    display: flex;
    align-items: baseline;
    font-size: 17px;
}

.footer-main .footer-top h4 {
    text-transform: capitalize;
    font-size: 25px;
    margin-bottom: 20px;
}

.footer-main .footer-top img {
    margin-bottom: 15px;
}

.footer-top h4,
.footer-top p,
.footer-top ul li a,
.footer-top .top-social-icon a {
    color: #fff;
}

.footer-top ul {
    padding: 0;
    list-style: none;
}

.footer-top ul li a:hover {
    color: var(--primary);
    transition: all .3s ease-out 0s;
}

.footer-top ul li {
    margin-bottom: 10px;
}

.footer-top ul li a i {
    margin-right: 8px;
}

@media only screen and (max-width:767px) {
    .footer-main .footer-top {
        padding: 15px;
    }

    .footer-main .footer-bottom {
        text-align: center;
    }
}





/* ----------FOOTER-TOP-DESIGN----------------- */

.footer-main .for-footer-top-design .for-first-design-foot {
    background-color: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 30px 0 0 30px;


}

.footer-main .for-footer-top-design .for-foot-cont-1 {
    padding: 44px 0;
    display: flex;
    align-items: center;
}

.footer-main .for-footer-top-design .icon-box-for-one::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--e-global-color-accent) 0.18%, var(--e-global-color-accentsecondary) 100.18%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.footer-main .for-footer-top-design .icon-box-for-one {
    background-color: #4D5053;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;


}

.footer-main .for-foot-cont:hover .icon-box-for-one::before {
    transition: all 0.4s ease-in-out;
    transform: scale(1);
}

.footer-main .for-footer-top-design .for-foot-cont a {
    color: #FFFFFF;
}

.footer-main .for-footer-top-design .for-foot-cont {
    font-weight: 600;
    font-size: 19px;
}

.footer-main .for-footer-top-design .for-foot-cont span {
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

.footer-main .for-footer-top-design .for-foot-cont-1 span {
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.footer-main .for-footer-top-design .for-foot-cont {
    padding: 44px 30px;
    display: flex;
    align-items: center;
    position: relative;
}

.footer-main .for-footer-top-design {
    background-color: #393C3F;
    border-radius: 30px;
    margin-bottom: 40px;

}


.for-foot-cont {
    position: relative;
    z-index: 1;
}

/* .icon-box-for-one {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
} */

.icon-box-for-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--e-global-color-accent) 0.18%, var(--e-global-color-accentsecondary) 100.18%);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease-in-out;
    z-index: -1;
}

.for-foot-cont:hover .icon-box-for-one::before {
    transform: scale(1);
}

.for-foot-cont-1 {
    position: relative;
    z-index: 1;
}

.icon-box-for-one {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
}

.icon-box-for-one::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--e-global-color-accent) 0.18%, var(--e-global-color-accentsecondary) 100.18%);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease-in-out;
    z-index: -1;
}

.for-foot-cont-1:hover .icon-box-for-one::before {
    transform: scale(1);
}

@media only screen and (max-width:678px) {
    .footer-main .for-footer-top-design .for-first-design-foot {
        border-radius: 0;

    }

    .footer-main .for-footer-top-design .for-foot-cont {
        padding: 20px 0;
    }

    .footer-main .for-footer-top-design .for-foot-cont {

        font-size: 17px;
    }

    .footer-main .for-footer-top-design .for-foot-cont span {

        font-size: 16px;

    }

    .footer-main .for-footer-top-design .for-first-design-foot {
        padding: 12px;
        border-radius: 30px 30px 0 0;
    }

    .contact-info-penta .icon-box-for-one {
        padding: 30px;
    }

    .contact-info-penta .for-foot-cont {
        height: 230px !important;
        padding: 15px !important;
    }
}


/* ----------FOOTER-TOP-DESIGN----------------- */


/* ---------------FOOTER SECTION END--------------- */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */






/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */




/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ==========================SUB BANNER SECTION================================ */


/* =======================Banner Section======================== */
@media only screen and (max-width:768px) {
    .banner-title-name h2 {
        font-size: 14px !important;
    }

    .wt-breadcrumb {
        font-size: 14px !important;

    }

    .wt-bnr-inr {
        padding-top: 50px;
    }

    .banner-title-name h1 {
        font-size: 23px !important;
    }

    .wt-bnr-inr {
        height: 300px !important;
    }

    .wt-bnr-inr-entry {
        margin-top: 150px !important;
    }
}

.wt-bnr-inr .container {
    display: table;
    height: 100%;
}

.banner-title-name h1 {
    font-size: 45px;
    color: var(--primarycolor);
    text-transform: uppercase;

}

.wt-bnr-inr-entry {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 250px;
}

.wt-breadcrumb a {
    text-decoration: none;
    color: #fff;
}

.wt-breadcrumb {
    font-size: 21px;
    list-style-type: none;
    color: #fff;

}

.overlay-wraper>.container,
.overlay-wraper>.container-fluid,
.overlay-wraper>.wt-icon-box-wraper,
.overlay-wraper>.wt-left-part,
.overlay-wraper>.wt-right-part {
    position: relative;
    z-index: 1;
}

.wt-breadcrumb a:hover {
    color: #fff !important;
}

.opacity-07 {
    opacity: 0.7;
}

.overlay-main {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.bg-top-center {
    background-position: top center !important;
}

.wt-bnr-inr {
    height: 430px;
    background-size: cover;
    background-position: center center;
    display: table;
    width: 100%;
    /* background: linear-gradient(.25turn, #121212, 25%, transparent); */
    /* background: rgb(0,0,0) !important; */
    /* background: linear-gradient(180deg, rgba(0,0,0,0.9697128851540616) 26%, rgba(27,26,26,0.9725140056022409) 100%) !important; */
}

.overlay-main {
    background: rgb(0, 0, 0) !important;
    background: linear-gradient(189deg, rgb(0 0 0) 48%, rgb(0 0 0 / 77%) 89%) !important;
}

.overlay-wraper {
    position: relative;
}

.wt-breadcrumb a:hover {
    color: var(--paragcolor);
}

.wt-breadcrumb i {
    margin: 0px 10px;
}

.sub-banner-section li {
    font-family: "Barlow", sans-serif;
}

.sub-banner-section h2 {
    font-family: "Barlow", sans-serif;
    text-transform: uppercase;
    color: var(--light);
}

.sub-banner-section {
    margin-top: -137px;
}



/* =======================Banner Section======================== */


/* ==========================SUB BANNER SECTION================================ */




/* ============================================================================== */
/* ============================================================================== */
/* ============================================================================== */
/* ============================================================================== */









/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================SERVICE PAGE CSS========================================== */
/* ========================================================================================== */
/* ========================================================================================== */





/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================SERVICE PAGE CSS========================================== */
/* ========================================================================================== */



/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================CONTACT PAGE CSS========================================== */
/* ========================================================================================== */




/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================CONTACT PAGE CSS========================================== */
/* ========================================================================================== */
/* ===


/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================ABOUT PAGE CSS========================================== */
/* ========================================================================================== */




/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================ABOUT PAGE CSS========================================== */
/* ========================================================================================== */












/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================CONTACT PAGE CSS START========================================== */
/* ========================================================================================== */

.contact-inf-sec-penta h2 span {
    color: var(--primary);
}

.contact-inf-sec-penta {
    padding: 40px 10px;
}

.contact-info-penta .for-foot-cont a span {
    font-weight: 500;
    font-size: 18px;
    color: #0000006a;
}

.contact-info-penta .for-foot-cont a {
    font-weight: 600;
    font-size: 20px;
    color: #000000;
}

.contact-info-penta .icon-box-for-one {
    font-size: 30px;
    color: #c42e33;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0000001c;
    background-size: 200% auto;
    transition: all 0.3s ease-in-out;
    margin-bottom: 15px;
    /* Added space between icon and text */

}

.contact-info-penta .for-foot-cont:hover .icon-box-for-one {
    color: var(--light);
}

.contact-info-penta .for-foot-cont {
    background-color: var(--light);
    padding: 30px;
    box-shadow: 0px 0px 50px 2px rgba(0, 0, 0, 0.03137254901960784);
    border: 1px solid #EEEEEE;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 150px;

}





.map-form-sec .container iframe {
    border-radius: 30px 0 0 30px;
}

.map-form-sec .container {
    border-radius: 30px;
    background-color: var(--light);
    box-shadow: 0px 0px 50px 2px rgba(0, 0, 0, 0.03137254901960784);
    border: 1px solid #EEEEEE;

}

.map-form-sec h2 span {
    color: var(--primary);
}

.map-form-sec {
    padding: 30px 10px;
}

.form-control {
    border: 1px solid #EEEEEE;
    background-color: var(--light) !important;
    color: #000000 !important;
    padding: 20px;
    box-shadow: 0px 0px 50px 2px rgb(0 0 0 / 9%);
}

.form_left button {
    background-color: transparent;
    border: none;
}


@media only screen and (max-width:678px) {
    .contact-info-penta .for-foot-cont {
        display: flex;
        flex-direction: column;
    }

    .contact-info-penta .for-foot-cont:hover .icon-box-for-one {
        height: 100px;
        width: 100px;
    }

    .contact-info-penta .for-foot-cont a {
        font-size: 18px;
    }
}

/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================CONTACT PAGE CSS START========================================== */
/* ========================================================================================== */


/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================PRODUCTS PAGE CSS START========================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */



/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================SERVICE PAGE CSS========================================== */
/* ========================================================================================== */
/* ========================================================================================== */





/* =====SIDEBAR SECTION=========== */

@media only screen and (max-width:678px) {
    .sidebar_nav_1 {
        padding: 10px !important;
    }
}




.sidebar_nav_1 {
    border: 1px solid #EEEEEE;
    background-color: var(--light) !important;
    box-shadow: 0px 0px 50px 2px rgb(0 0 0 / 9%);
    padding: 30px;
    border-radius: 30px;

}

.sidebar_nav {
    list-style-type: none;
    /* background-color: rgb(241, 241, 241); */
    position: sticky;
    top: 115px;
    margin-top: 20px;

}

.sidebar_nav ul {
    /* box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1); */
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.sidebar_nav h4 span {
    color: var(--e-global-color-accent);
}

.sidebar_nav h4 {
    /* background-color: var(--light); */
    padding: 15px 0px 8px 15px;
    font-size: 23px;
    font-weight: 700 !important;
    margin-bottom: 10px;
    font-family: "monR", Arial, sans-serif;
    /* text-align: end; */
    color: var(--secondary);
}

.sidebar_nav a i {
    margin-right: 10px;
    /* color: var(--primarycolor); */
}

.sidebar_nav a:hover {
    color: var(--primary) !important;
    transition: all 0.4s ease-in-out;
}

.sidebar_nav a {
    text-decoration: none;
    /* width: 100%; */
    color: rgb(0, 0, 0) !important;
    font-size: 15px;
    /* font-family: 'Montserrat'; */
    /* text-transform: uppercase; */
    font-weight: 500;
}

.sidebar_nav li {
    border: 1px solid #EEEEEE;
    background-color: var(--light) !important;
    /* color: #ffffff !important; */
    padding: 20px;
    box-shadow: 0px 0px 50px 2px rgb(0 0 0 / 9%);
    margin-bottom: 15px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
}

.sidebar_nav ol,
ul {
    padding-left: 0;
}

.sidebar_nav {
    background-attachment: fixed;
    margin-bottom: 70px;

}

.right-side-box-nav ul a i {
    /* color: rgb(0, 0, 0); */
}

.sidebar_nav a:hover .sidebar_nav i {
    color: #ffffff !important;
    transition: all 0.4s ease-in-out;
}

.sidebar_nav a:hover li {
    background-color: var(--e-global-color-accent) !important;
    color: #fff !important;
    transition: all 0.4s ease-in-out;
}


.side_bar_head {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 10px;
    /* font-family: 'Montserrat'; */
    text-transform: uppercase;
}

.side_bar_head::before {
    content: '';
    position: absolute;
    /* left: 0px; */
    bottom: 0px;
    width: 53%;
    height: 2px;
    background: rgb(0, 0, 0);
}

.side_bar_head::after {
    content: '';
    position: absolute;
    right: 9px;
    bottom: 0px;
    width: 60px;
    height: 2px;
    background: #C31C2D;
}

.side_bar_head_1 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.side_bar_head_1::before {
    content: '';
    position: absolute;
    left: 14px;
    bottom: 4px;
    width: 75%;
    height: 3px;
    background: var(--e-global-color-accent);
}

.side_bar_head_1::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 1%;
    height: 1%;
    padding: 6px;
    background: var(--dark);
    border-radius: 50%;

}

.service-cont-box .cont-ser p a {
    display: flex;
    align-items: baseline;
}

/* =====SIDEBAR SECTION=========== */




/* ---------------------------------------- */
/* -----RIGHT SIDE CONTENT---------- */
/* ---------------------------------------- */


.right_content_product .for-second-design-penta img {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 30px;
}

.right_content_product .for-foot-cont {
    background-color: var(--light);
    padding: 20px;
    box-shadow: 0px 0px 50px 2px rgba(0, 0, 0, 0.03137254901960784);
    border: 1px solid #EEEEEE;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 15px;
    align-items: center;
}

.right_content_product .for-foot-cont {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.right_content_product .products-main-imges img {
    border-radius: 30px;
    border: 1px solid #0000001a;
}

.right_content_product .for-foot-cont-1 {
    background-color: var(--light);
    padding: 20px;
    box-shadow: 0px 0px 50px 2px rgba(0, 0, 0, 0.03137254901960784);
    border: 1px solid #EEEEEE;
    border-radius: 30px;

}

.right_content_product .for-once-change .for-foot-cont {
    background-color: #f8f8f8 !important;
    border: none;
}



.right_content_product .for-foot-cont-2 .icon-box-for-one {
    height: 50px;
    width: 50px;
}

.right_content_product .for-foot-cont-1 .icon-box-for-one {
    height: 90px;
    width: 90px;
}

.right_content_product .for-foot-cont-1 {
    font-size: 22px;
    font-weight: 600;
}

.right_content_product .icon-box-for-one {
    background: linear-gradient(90deg, var(--e-global-color-accent) 0.18%, var(--e-global-color-accentsecondary) 100.18%);
    color: var(--light);
}


.for-style-penta .icon-box-for-one::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #335482 0.18%, #283d5a 100.18%);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.right_content_product ul li i {
    color: var(--primary);
    font-size: 20px;
}

.right_content_product ul li span {
    margin-left: 10px;
    font-size: 20px;
    font-family: "Barlow", sans-serif !important;
}

.right_content_product ul li {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.right_content_product h3 {
    font-size: 37px;
    font-weight: 600 !important;
    font-family: "Barlow", sans-serif !important;
}

.right_content_product h3 span {
    color: var(--e-global-color-accent);
    font-family: "Barlow", sans-serif !important;

}

.right_content_product p {
    text-align: justify;
    font-family: "Barlow", sans-serif !important;
}

.right_content_product h3 a {
    color: var(--dark);
    font-family: "Barlow", sans-serif !important;
}




/* ---------------------------------------- */
/* -----RIGHT SIDE CONTENT---------- */
/* ---------------------------------------- */


/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================PRODUCTS PAGE CSS START========================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */




/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================GALLERY SECTION CSS START========================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */


.gallery-section .owl-carousel .owl-nav.disabled {
    display: block;
}

.gallery-section span{
    color: var(--e-global-color-accent);
}
.gallery-section {
    margin-bottom: 15PX;
}


.gallery-section .owl-carousel .owl-nav .owl-prev {
    right: 125px !important;
}

.gallery-section .owl-dot {
    display: none !important;
}

.gallery-section .owl-nav .owl-next {}

.gallery-section .owl-theme .owl-nav [class*=owl-]:hover {
    color: var(--secondary);
}

.gallery-section .owl-theme .owl-nav [class*=owl-] {
    background-color: transparent !important;
    color: var(--e-global-color-accent);
    position: absolute;
    top: -23%;
    right: 72px;
    font-size: 35px;
}


.our-gallery-slider img {
    border: 1px solid rgb(216, 216, 216);
}

@media only screen and (max-width:678px) {
    .gallery-section .owl-theme .owl-nav [class*=owl-] {
        top: -33%;
        font-size: 25px;
    }

    .gallery-section .owl-carousel .owl-nav .owl-prev {
        right: 26px !important;
    }


}







/* Left arrow (Prev) */
.lb-nav a.lb-prev {
    /* left: -80% !important;
    position: relative;*/
    opacity: 1 !important;
}



/* Right arrow (Next) */
.lb-nav a.lb-next {
    /* left: 80%;
    position: relative;*/
    opacity: 1 !important;
}


.lb-data .lb-close {
    position: relative;
    left: 58%;
    bottom: 600px;
    color: red;
}

.lightbox .lb-image {
    border: none !important;
}

@media only screen and (max-width:678px) {
    .lb-nav a.lb-next {
        left: 88%;
        top: 19px;
    }

    .lb-data .lb-close {
        position: relative;
        left: -5%;
        bottom: 386px;
    }

    .lb-nav a.lb-prev {
        left: 0%;
    }

}

/* Force the close button to stay at the top-right corner */

/* Fix the lightbox container position */
.lightboxOverlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 9990 !important;
    opacity: 0.9;
}

.lightbox {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999 !important;
}

.lb-outerContainer {
    max-width: 90vw;
    max-height: 90vh;
}

.lb-image {
    max-width: 100%;
    max-height: 100%;
}



/* Optional: Increase icon size and hover effect */
.lightbox .lb-close:hover {
    opacity: 0.7;
    cursor: pointer;
}







/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ==============================GALLERY SECTION CSS START========================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */
/* ========================================================================================== */