@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



body {
    scroll-behavior: smooth;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.5s ease;
    background-color: var(--light);
}

@font-face {
    font-family: 'Lora';
    src: url('../font/Lora-Regular.woff2') format('woff2'),
        url('../font/Lora-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Raleway';
    src: url('../font/Raleway-ThinItalic.woff2') format('woff2'),
        url('../font/Raleway-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg1:#0000fe;
    --bg2:#fe0000;
    --dark: #373435;
    --gray: #222222;
    --light: #fff;
    --bg: #f7f7f7;
    --secondary: #f2f2f2;
    --font1: 'Raleway';
    --font2:'Lora';
}

::selection {
    color: var(--light);
    background-color: var(--bg1);
}

a {
    text-decoration: none;
    color: var(--dark);
}

.container {
    max-width: 1180px;
}

.container-fluid {
    padding: 0;
}

ul,
li,
a {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    font-size: 16px;
    color: var(--dark);
    font-family: var(--font2);
    line-height: 1.6;
}

a:hover {
    color: var(--bg1);
}

section {
  
    overflow: hidden;
}
.wrap-sec{
    padding: 70px 0;
}
/*-------------*/
.title-sec {
    color: var(--bg1);
    font-family: var(--font1);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    display: block;
    letter-spacing: 1.3px;
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 8px;
    display: inline-block;
    border-bottom: 1px solid var(--bg2);
    position: relative;
}
.title-sec:after {
    position: absolute;
    bottom: -3px;
    left: 40%;
    width: 20%;
    height: 5px;
    border: 1px solid var(--bg2);
    background-color: var(--bg2);
    content: '';
    border-radius: 3px;
}

.sub-title {
    margin: 0 0 16px 0;
    font-family: var(--font1);
    color: var(--gray);
    line-height: 1.2;
    font-weight: 400;
    font-size: 2rem;
    color: var(--dark);
}

.heading-sec {
    font-size: 20px;
    text-transform: capitalize;
    font-family: var(--font1);
    line-height: 1.6;
    font-weight: 600;
    color: var(--gray);
}

.content-sec {
    font-size: 16px;
    word-spacing: 1.3px;
    line-height: 1.8;
    font-family: var(--font2);
    font-weight: 500;
}

.header-part {
    display: block;
    text-align: start;
    margin-bottom: 30px;
}


.btn-sec {
    border: 1px solid var(--light);
    border-radius: 1px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: var(--font2);
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    min-height: 40px;
    outline: 0;
    padding: 12px 26px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: capitalize;
    letter-spacing: 1.3px;
    user-select: none;
    background-color: var(--bg1);
    touch-action: manipulation;
    vertical-align: middle;
    position: relative;
}


.btn-sec:after {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 10px;
    width: 2px;
    content: '';
    background-color: var(--light);
}

.btn-sec::before {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 2px;
    width: 10px;
    content: '';
    background-color: var(--light);
}

.btn-sec:hover,
.btn-sec:active {
    background-image: -webkit-linear-gradient(-51deg, #ef0000 0%, #ad0614 99%);
   color: var(--light);
   box-shadow: inset 0px 0px 1px var(--bg1);
}
.btn-sec:hover.btn-sec:after,.btn-sec:hover.btn-sec::before{
   background-color: var(--light);
}
.btn-sec:active {
    opacity: .5;
}

.enquiry-sec {
    display: flex;
    align-items: center;
}



/*--------top-header---------*/
/**********/
.th-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.t-header {
    background: var(--dark);
    z-index: 999;
    display: block;
    position: relative;
    padding: 8px 0;
}

.top-header {
    display: flex;
    justify-content: space-between;
}

.th-element {
    display: flex;
    color: var(--light);
    gap: 10px
}

.th-element .th-icon {
    font-size: 15px;
    color: var(--bg1);
}

.th-icon img {
    width: 25px;
}

.th-element a {
    color: var(--light);
    font-size: 14px;
    font-weight: 400;
}

.th-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.th-social-links a {
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    line-height: 30px;
}

.th-social-links a:hover {
    color: var(--light);
    transform: scale(1.1);
}

.s-icon {
    border-radius: 50%;
    color: var(--light);
}

.s-icon img {
    width: 24px;
    transition: all 1s ease-in-out;
}

/* Style the search field */
.th-form{
    position:relative;
}
form.example input[type=text] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid var(--light);
    float: left;
    width: 80%;
    background: var(--light);

  }
  form.example{
    border: 1px solid var(--light);  
    box-sizing: border-box;
    position:relative;
  }
  form.example input{
    outline: none;
  }
  /* Style the submit button */
  form.example button {
    float: left;
    width: 20%;
    padding: 10px;
    background: var(--bg1);
    color: white;
    font-size: 14px;
    border: 1px solid var(--light);
    border-left: none; /* Prevent double borders */
    cursor: pointer;

  }
  
  form.example button:hover {
    background: var(--bg1);
  }
  
  /* Clear floats */
  form.example::after {
    content: "";
    clear: both;
    display: table;
  }


/*--------header---------*/
header {
   background-color: var(--light);
    box-sizing: border-box;
    box-shadow: 0px 1px 1px var(--dark);
    padding: 10px 0;   
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    box-sizing: border-box;
    width: 100%;
}

.logo img {
    width: 100px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
     align-items: center;
     gap: 20px;
}

.nav-menu li {
    display: inline-block;
    position: relative;
}

.nav-menu li a {
    font-family: var(--font2);
    text-transform: capitalize;
    display: block;
    padding: 15px 20px;
    font-weight: 500;
    line-height: 40px;
    font-size: 17px;
    color: var(--dark);
}
.nav-menu li a :nth-child(last){
    padding-right: 0px!important;
}

.nav-menu li.drop-menu {
    position: relative;
    display: block;
    transition-delay: 0.6s;
}

.drop-content {
    position: absolute;
    top: 40px;
    width: 260px;
    height: 350px;
    display: none;
    background-color: var(--secondary);
    z-index: 999;
    box-shadow: rgba(9, 9, 9, 0.2) 0px 2px 2px 0px;
    overflow: auto;
    border: 1px solid var(--secondary);
    transition:all 0.6s ease-in-out 0.4s;
}

.drop-menu:hover .drop-content {
    display: block;
    top: 70px;
}

.drop-content li {
    line-height:1.2;
    display: block;
    transition: all 1.8s ease;
    box-shadow: 0px 0px 1px var(--secondary);
}

.drop-content li a {
    color: var(--dark);
    display: block;
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    transition: all 0.4s ease;
}

.drop-content li a:hover {
    color: var(--bg2);
}

.drop-content::-webkit-scrollbar {
    width: 7px;
    color: var(--bg1);
    background-color: var(--light);
}

.drop-content::-webkit-scrollbar-thumb {
    color: var(--bg1);
    background-color: var(--dark);
    border-radius: 5px;
}
ul.drop-content li:after{
    display: none;
}

.click-btn {
    position: absolute;
    right: 0;
    top: 26px;
    color: var(--dark);
}

.enq-icon img {
    width: 40px;
    animation: wave 0.8s ease infinite;
}

@keyframes wave {
    from {
        transform: roate(-10deg);
    }

    to {
        transform: rotate(10deg);
    }
}

.enq-number {
    display: inline-block;
    padding: 14px 30px;
}

.enq-number:hover {
    color: var(--light);
}

/*----sticky-header----------*/

 /* sticky-header */
 #navbar-sec.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--light);
    z-index: 999;
    animation: slide-down 1s ease-in-out;
    box-shadow: 0px 0px 1px var(--dark);
}

#navbar-sec.sticky .nav-sec>li>a {
    color: var(--dark);
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#navbar-sec.sticky .nav-sec>li>a:hover {
    color: var(--bg1);
}

/*=========banner========*/
.banner-section {
    position: relative;
}

.ban-next.slick-arrow,
.ban-back.slick-arrow {
    position: absolute;
    content: '';
    z-index: 1;
    top: 45%;
    font-size: 26px;
    font-weight:900;
    padding: 8px;
    color: var(--bg1);
    background-color: var(--secondary);
    height: 2.4rem;
    width: 2.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0%;
    transition: all 0.2s ease-in-out;
}
.ban-next.slick-arrow:hover,
.ban-back.slick-arrow:hover{
    color: var(--bg2);
} 

.ban-next.slick-arrow {
    right: 5px;
}

.ban-back.slick-arrow {
    left: 5px;
}

.banner-img img{
    object-fit: cover;
    height: auto;
}

/*----about-us-------*/

.about-us {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-us img {
    width: 100%;
    height: 580px;
    object-fit: cover;
}

.about-header .sub-title {
    color: var(--dark) !important;
    font-weight: 500;
}

.ab_btn {
    padding-left: 25px;
    padding-right: 25px;
}
.ab_btn:hover{    
    color: var(--light)!important;
}

.ab_btn span {
    padding-left: 8px;
    display: flex;
    align-items: center;
    color: var(--light);
    transition: all 0.5s ease;
}

.ab_btn:hover span {
    transform: translateX(5px) !important;
    color: var(--light);
}

.about-box-content p {
    font-family: var(--font2);
    color: var(--dark) !important;
    font-weight: 400;
    margin-top: 20px;
}

.about-btn {
    margin-top: 30px;
}

.about-item{
    display: flex;
    gap: 15px;
}
.about-item-icon img{
    width: 50px;
}
.about-mid-content{
    padding-bottom: 20px;
    margin-top:2rem;
}

/*--=====about-sec-end========----*/

/*--=====category-sec-start========----*/
.p-slide{
    margin: 20px;
}
.category-section {
    background-color: var(--light);
}

.category-header .title-sec {
    background-color: var(--secondary);
}

.category-box {
    background-color: var(--secondary);
    padding: 1rem 1rem 0 1.4rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 10px;
    margin: 30px 0;
    transition: all 0.5s ease-in-out;
}

.category-box:hover {
    background-color: var(--bg2);
    transform: translatey(10px);
}


.category-img {
    padding: 10px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    border-radius: 50%;
    z-index: 1;
    box-shadow: rgba(17, 17, 12, 0.5) 0px 3px 9px 0px;
}

.category-content {
    margin-top: 20px;
}

.category-img::after {
    top: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--bg1);
    opacity: 0.9;
    border-radius: 50%;

}

.category-img img {
    width: 60px;
    transition: all 0.5s ease-in-out;
}

.category-box:hover .category-img img {
    transform: rotateY(360deg);
}

.category-bottom-sec {
    padding: 30px 10px;
}

.category-bottom-sec a {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
}

.category-box:hover .category-content p {

    color: var(--light);
}

.category-box:hover .category-bottom-sec .read-more,
.category-box:hover .category-bottom-sec .read-more span {
    color: var(--bg1);
}

/*--=====category-sec-end========----*/




/*--=========md-banner_start=========--*/
.md-ban-section{
    background-image: url(../image/img/bg/md.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 9;
}

.md-ban-bg{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    z-index: 0;
}
.md-ban-box{
    position: relative;
    padding: 2rem 4rem 2rem;
    background-color:rgba(253, 113, 21, 0.9)
}
.md-ban-title{
    color: var(--light);
    font-family: var(--font2);
    font-size: 30px;
    margin-bottom: 0.5rem;
    font-weight: 800;
}
.md-ban-content{
    margin: 1rem auto;
}
.md-ban-content .heading-sec{
    font-family: var(--font1);
    color: var(--light);
    font-style: italic;
    font-weight: 700;
}
.md-ban-content p{
    font-family: var(--font1);
    color: var(--light);
}
/*--=========md-ban-end=========--*/
/*--=========feature-sec-start=========--*/
.feature-sec {
    background: linear-gradient(to right,#1f3890 0,#6c194f 100%);
    position: relative;
    z-index: 9;
}
.feature-bg{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.feature-item-content {
    color: var(--light);
    background-color: var(--light);
    padding: 20px;
    text-align: center;

}

.feature-item {
    margin: 20px;
    position: relative;
    border-radius: 0px 0px 8px 8px;
    box-shadow: rgba(240, 240, 240, 0.24) 0px 2px 2px;
}

.feature-header .sub-title{
    color: var(--light)!important;
}
.feature-item:hover::before {
    width: 100%;
}

.feature-item-img {
    overflow: hidden;
}

.feature-img {
    overflow: hidden;
}

.feature-img img {
    transition: all 0.5s ease-in-out;
    height: 300px;
    object-fit: contain;
}

.feature-img img:hover {
    transform: scale(1.1);
}

.pi-title {
    font-size: 22px;
    font-family: var(--font2);
    text-transform: capitalize;
    color: var(--bg1);
    font-weight: 400;
}

.feature-item-content p {
    color: var(--dark);
    font-family: var(--font1), sans-serif;
    line-height: 1.6;
    margin-top: 10px;
    padding-top: 8px;    
    border-top: 3px solid var(--secondary);
}

.pi-btn {
    padding-top: 1rem;
}

.pi-btn a.read-more,
.pi-btn a.read-more span {
    color: var(--light);
}
.feature-slider{
    position: static;
}
.feature-sec{
    position: relative;
}


/*-------why-us------- */
.why-us{
    position: relative;
    z-index: 9;
    background-image: url(../image/img/bg/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-size: cover;
}
.why-us:after{
    background-color: rgba(17, 17, 17, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.why-header .sub-title{
        color: var(--light);
        font-family: var(--font2);
        text-transform: capitalize;
    }
    .why-header p{
        color: var(--light);
        font-family: var(--font2);
    }   

.why-box{
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light);
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.why-content .heading-sec{
    line-height: 1.4;
    color: var(--bg1);
    font-size: 1.4rem;
    font-weight: 500;
    font-family: var(--font2);
    margin-bottom: 10px;
}
.why-content p{
    font-size: 14px;
    font-weight: 300;
}

.why-icon img{
    width: 60px;
    object-fit: cover;
}
.why-img img {
    height:480px;
}
.why-slider{
    margin-top: 70px;
}

.why-slider .slick-dots button {
    width: 8px;
    height: 8px;
    background-color: var(--light);
    border-radius: 1px;
    text-indent: -9999px;
    padding: 0;
    transition: all 0.5s ease-in-out 0.1s;
    border: none;
}

.why-slider .slick-dots {
    text-align: center;
    padding-top: 20px;
}

.why-slider .slick-dots>li {
    display: inline-block;
    margin: 5px;
}

.why-slider .slick-dots .slick-active button {
    background-color: var(--bg1);
    height: 20px;
    width:9px;
}


 /*---------ban-bottom---------*/
 .ban-box {
    display: flex;
    background-color: var(--secondary);
    flex-direction: column;
    
    text-align: center;
    align-items: center;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.b-img{
    overflow: hidden;
}
.b-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.ban-box:hover .b-img img {
    transform: scale(1.1);
}

.b-content {
    display: block;
    flex-wrap: wrap;
    padding: 1rem;
    height:250px;
}

.b-content p.content-sec {
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    text-transform: capitalize;
}

.b-content p.b-name {
    color: var(--bg2);
    font-size: 20px;
    font-family: var(--font2);
}

 /*----product-secion-------*/

 .product-sec{
    position: relative;
 }
 .product-box {
    position: relative;
    padding: 0px 20px;
    text-align: center;
    margin: 10px;
}

.product-img {
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.pro-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    background-color: var(--secondary);
    padding: 10px;
    overflow: hidden;    
    transition: all 0.5s ease;
}

.product-content {
    text-align: center;
    padding: 20px 0;
    padding-bottom: 20px;
    position: relative;
}

.product-content:after {
    position: absolute;
    content: '';
    left: -20px;
    top: -60px;
    right: -20px;
    bottom: 36px;
    z-index: -1;
    border-radius: 8px;
    border: 2px solid #ccc;
    transition: all .6s ease;
}

.product-name {
    margin-bottom: 20px;
    font-family: var(--font2);
    font-weight: 500;
    color: var(--bg1);
}

.pro-content {
    line-height: 1.5;
    display: none;
}

.product-btn {
    margin-top: 10px;
    background-color: var(--dark);
    font-size:14px;
}

.product-box:hover .product-content:after {
    background-color: var(--bg1);
    color: var(--light);
}
.product-box:hover .pro-img img{
   transform: scale(1.1);
}
.product-box:hover .product-name,
.product-box:hover .pro-content {
    color: var(--light);
}

.p-next.slick-arrow {
    position: absolute;
    top: 50%;
    left: 0px;
    padding: 8px 18px;
    font-size: 30px;
    background-color: var(--dark);
    color: var(--bg1);
    z-index: 999;
    border-radius: 5%;
}

.p-back.slick-arrow {
    position: absolute;
    top: 50%;
    right: 0px;
    background-color: var(--dark);
    border-radius: 5%;
    padding: 8px 18px;
    font-size: 30px;
    z-index: 999;
    color: var(--bg1);
}

.product-slider{
    position: static;
}


/*------counter-------*/
.counter-sec{
    background-image: url(../image/img/bg/ab-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-attachment: fixed;
    z-index: 1;
}
.counter-sec:after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg1);
    opacity: 0.9;
    z-index: -1;
}
.counter-element .sub-title{
    color: var(--light);
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 500;
    letter-spacing: 1.5px;
}
.counter-element p{
    color: var(--light);
    font-family: var(--font2);
    font-size: 18px;
    letter-spacing: 1.4px;
    line-height: 1.5;
}
.counter-box{
        display: flex;
    align-items: center;
    gap: 1rem;
    padding: 22px 10px 22px;
    margin: 15px 0px;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--gray);
}
.counter-icon img {
    color: var(--bg2);
    font-size: 40px;
}
.counter-content{
    color: var(--light);
    font-family: var(--font2);
    text-align: center;
}
.counter-content .count-number{
font-size: 30px;
font-weight: 700;
font-family: var(--font1);
letter-spacing: 1.3px;
display: inline-block;
}
.counter-content span{
    font-size: 20px;
}
.count-name{
font-size: 15px;
font-weight: 300;
font-family: var(--font1);
text-transform: capitalize;
}
/*----services-------*/
.service-section{
    background-image: url(../image/img/bg/bg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 9;
}
.service-section:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index:  -1;
    background-color: var(--secondary);
    height: 100%;
    width: 100%;
    opacity: 0.7;
}
.service-img img{
    width: 80px;
    margin-bottom: 25px;
    display: block;
}
.service-heading{
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary);
    color: var(--bg1);    
}

.service-card {
    padding: 2rem;
    text-align: left;
    transition: all 0.2s ease;
    border-radius: 0.4rem;
    background-color: var(--light);
    border: 1px solid rgba(155, 154, 152, 0.2);
     margin: 30px auto;
     box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(228, 152, 82, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    height: 450px;
    position: relative;
    overflow: hidden;
}
.service-card:after{
    position: absolute;
    content: '';
    right: -2rem;
    top: -2rem;
    width: 5rem;
    height: 5rem;   
    border-radius: 50%;
    background-color: var(--secondary);
    box-shadow: rgba(93, 133, 99, 0.25) 0px 2px 5px -1px, rgba(50, 87, 60, 0.3) 0px 1px 3px -1px;
}
.service-card:before{
    position: absolute;
    content: '';
    left: -5rem;
    bottom: -3rem;
    width: 12rem;
    height: 5rem;  
    transform: rotate(45deg); 
    border-radius: 0%;
    background-color: var(--secondary);
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}



.service-card:hover .service-btn {
    border-color: var(--bg2);
    color: var(--light);
}

a.service-btn {
     display: inline-block;
    transition: all 0.2s ease-in-out;
    font-family: var(--font2);
    position: absolute;
    bottom: 20px;
}

.service-content{
    text-align: left;
}

/*----contact-us-------*/
.contact-us {
    position: relative;
    z-index: 9;
}
.contact-bg{
    position: absolute;
    content: '';
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    opacity: 0.2;
}

.contact-box{
    background-color: var(--bg1);
    padding: 2rem ; 
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.contact-box:before{
    position: absolute;
    content: '';
    left: -5rem;
    bottom: -3rem;
    width: 12rem;
    height: 6rem;  
    transform: rotate(45deg); 
    border-radius: 0%;
    background-color: var(--gray);
    opacity: 0.2;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}


.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    background-color: var(--light);
    padding: 1.5rem;
}

.contact-heading {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 500;
    padding-bottom: .5rem;
    font-family: var(--font2);
    color: var(--light);
}
.contact-element{
    display: block;
    margin-top: 30px;
}
.contact-content p{
    color: var(--light);
}

.contact-element a,.contact-element p{
    color: var(--light);
    display: block;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-size: 20px;    
    font-family: var(--font2);

}
.contact-element a span,.contact-element p span{
    padding-right: 1rem;
    font-size: 1.5rem;
    color: var(--light);
}
.input-msg {
      display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background-color: var(--secondary);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.input-text-area {
    margin-bottom: 40px;
}

.input-msg span {
    padding: 10px;
}

.input-msg input {
    outline: none;
    border: none;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--secondary);
}

select.input-select.input-text {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 8px;
    background-color: var(--secondary);
}

textarea.input-text {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    height: 140px;
    border-radius: 8px;
    background-color: var(--secondary);
}
.contact_link{
    display: flex;
    gap: 1rem;
}
.contact_link .contact_icon{
    color: var(--light);
    font-size: 1.4rem;
}
.contact_link a{
    font-size: 14px;
    color: var(--light);
}
.contact_link span{
    color: var(--light);
}
/********** client ************/
.our-client {
    background-color: var(--secondary);
    z-index: 9;
   
}
.client-title{
    color: var(--bg2);
}
.c-img {
    overflow: hidden;
    display: block;
    transition: all 0.3s ease;
    border: 2px solid var(--light);
    border-radius: 14px;
    padding: 10px;
    background-color: var(--light);
}

.c-img img {
    height: 100px;
    width: 100%;
    transition: all 0.5s ease;
    object-fit: contain;
    cursor: grab;
    border-radius: 5px;
    background-color: var(--light);
}

.c-box {
    margin: 10px 5px;
    float: left;
    position: relative;
    background-color: var(--light);
    border-radius: 4px;
    padding: 10px;
  
}

.client-slider {
    padding: 10px;
    background-color: var(--secondary);
}
/*_________testimonail________*/

.testimonial-sec{
    background-color: var(--secondary);
    position: relative;
    background-image: url(../image/img/bg/bg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 9;
}
.testimonial-sec:after{
    position: absolute;
    content: '';
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    background-color: var(--secondary);
}
.testi-sec{
    position: relative;
    
}
.testi-slider{
    position: static;
}
.testi-slider .f-back.slick-arrow{
    left: 0px;
}
.testi-slider .f-next.slick-arrow{
    right: 0px;
}
.testi-box{
    padding: 2rem;
    background-color: var(--light);
    border-radius: 1rem;
    margin: 2rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.testi-img img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.testi-thumb{
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.testi-name{
    font-family: var(--font1);
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    color: var(--bg1);
    display: block;
}
.testi-icon{
    font-size: 42px;
    color: var(--bg2);
}
ul.testi-star{
    display: flex;
    justify-content: center;
    margin: 20px;
}
ul.testi-star li span{
    margin: 5px;
    color: var(--bg2);
}

.f-next.slick-arrow {
    position: absolute;
    top: 50%;
    right:  10px;
    padding: 5px 2px;
    font-size: 40px;
    color: var(--bg1);
    z-index: 999;
    border-radius: 5%;
    height: 40px;
    text-align: center;
    width: 40px;
    text-shadow:  0px 1px 2px var(--light);
}

.f-back.slick-arrow {
    position: absolute;
    top: 50%;
    left: 10px;
    border-radius: 5%;
    padding: 5px 2px;
    font-size: 40px;
    z-index: 999;
    color: var(--bg1);
    height: 40px;
    width: 40px;
    text-align: center;
    text-shadow: 0px 1px 2px var(--light);
}
/*_________footer________*/

footer {
    background-image: url(../image/img/bg/f-2.png);
    background-position: 320px 30%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    position: relative;
    z-index: 9;
}
footer:after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    bottom: 0;
    z-index: -1;
    background-color: var(--dark);

}

.footer-logo img {
    width: 120px;
    background-color: var(--light);
}

.footer-content p {
    color: var(--light);
    font-family: var(--font1), sans-serif;
    padding: 20px 0;
}

.footer-icons {
    display: flex;
    gap: 16px;
}

ul.footer-icons li a {
    display: flex;
    font-size: 16px;
    color: var(--dark);
    border: 1px solid var(--bg3);
    padding: 11px;
    border-radius:15%;
    text-align: center;
    justify-content: center;
    font-family: var(--font2);
    background-color: var(--light);
}


ul.footer-icons li a:hover {
    background-color: var(--gray);
    color: var(--bg1);

}

.footer-heading {
    font-size: 20px;
    font-family: var(--font2);
    color: var(--bg1);
    text-transform: uppercase;
    margin-bottom: 30px;
    padding: 3px 10px;
    font-weight: 600;
    display: inline-block;
    background-color: var(--light);
}

.footer-element li {
    padding: 5px 0;
    margin-bottom: 5px;
    font-size: 18px;
}

.footer-element li a {
    font-family: var(--font2);
    color: var(--light);
    text-transform: capitalize;
}

li.footer-list {
    display: flex;
    gap: 1rem;
}

li.footer-list span.f-icon {
    color: var(--light);
    font-size: 18px;
}

.footer-item {
    height: 270px;
    overflow-x: hidden;
}
ul.footer-element li span{
    color: var(--light);
    padding-right: 10px;
    color: var(--secondary);
}

.footer-item::-webkit-scrollbar {
    width: 5px;
}

.footer-item::-webkit-scrollbar-track {
    background: var(--bg1);
    border-radius: 20px;
}

.footer-item::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 10px;
}
.copyright-sec{
    background-color: var(--bg1);
}

.copy-right {
    padding-top:1rem; 
        text-align: center;
}

.copy-right p {
    color: var(--light);
    font-family: var(--font2);
}

.copy-right p a {
    color: var(--bg2);
    font-family: var(--font2);
    font-weight: 500;
    letter-spacing: 1.3px;
}

.copy-right p span {
    color: var(--light);
    font-family: var(--font2);
    font-weight: 400;
    font-size: 18px;
}


/********scroll-btn**************/
#scroll-top {
    display: inline-block;
    background-color: var(--gray);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 0%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    visibility: hidden;
    z-index: 1000;
}

#scroll-top::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 40px;
    color: var(--light);
}

#scroll-top:hover {
    cursor: pointer;
    background-color: var(--dark);
    box-shadow: 0px 0px 2px var(--secondary);
    color: var(--bg1);
}

#scroll-top:active {
    background-color: var(--bg2);
    color: var(--light);
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.fixed-wtsp {
    position: fixed;
    top: 85vh;
    left: 16px;
    display: block;
    width: 8rem;
    height: 5rem;
    border-radius: 0 5px 5px 0;
    z-index: 999;
    transition: all 1s ease;
}

.fixed-wtsp:hover {
    transform: scale(1.1);
}
.fixed-wtsp a img{
    width: 2.5rem;
    object-fit: cover;
}


/* --------inner-page----- */

/******breadcrump*******/
.breadcrump-sec {
    background: url('../image/img/bg/page-top-intro-gravit.jpg');
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    width: 100%;
    padding: 150px 1rem;
    position: relative;
    z-index: 1;
    min-height: 350px;

}
.breadcrump-sec:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(4, 0, 0, 0.2);
    content: '';
    z-index: -1;
}

.bread-title {
    font-family: var(--font2);
    font-size: 35px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 700;
    display: inline-block;
    color: var(--light);
    margin-bottom: 20px;    
    background-color: var(--bg1);
    padding: 5px 12px;
 
}

.b-links {
    position: absolute;
    right: 0%;
    bottom: 0%;
    width: 100%;
    display: inline-block;
    background-color: var(--secondary);
    padding: 14px 30px;
    color: var(--light);
    font-family: var(--font1);
    font-weight: 800;
    text-transform: capitalize;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 1px 4px;
}

.b-links a {
    font-size: 18px;
    letter-spacing: 1.1px;
    padding: 0 5px;
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: none;
    color: var(--dark);
    margin-bottom: 50px;
}

.b-item.active {
    color: var(--bg1);
    text-transform: capitalize;
    font-family: var(--font1), sans-serif;
    letter-spacing: 1.2px;
    font-size: 18px;
    font-weight: 900;
    padding-left: 5PX;
}

span.fa-solid {
    color: var(--dark);
}


.market-place {
    background-color: var(--secondary);
    padding: 40px 0;
    position: relative;
}
a.market-btn {
    display: block;
    border-radius: 5px!important;
}
.market-title{
    color: var(--bg1);
}
.marketing-title {
    font-size: 32px;
    text-transform: capitalize;
    font-family: var(--font1),sans-serif;
    font-weight: 600;
    margin: 20px auto;
    line-height: 1.1;
}

a.market-btn {
    padding: 18px 30px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light);
    text-transform: capitalize;
    font-family: var(--font1),sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
    display: block;
    height: 60px;
}

.about_sec .row{
    display:revert!important;
}
.col-md-6.ab_img{
    float:left;
    flex:inherit;
    width:50%;
    margin-bottom:1rem;
}
.col-md-6.ab_txt{
    width:100%;
}
.about-mid-content .row{
    display:flex!important;
}

/*----media_queries-------*/
@media (max-width:992px) {
    .col-md-6.ab_img{
        width:100%;
    }
    .b-content {
    height:auto;
}
    section {
        
        overflow: hidden;
    }
    .wrap-sec{
        padding: 40px 0;
    }

    .title-sec {
        color: var(--bg1);
        font-family: var(--font1), sans-serif;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        letter-spacing: 1.2px;
    }

    .sub-title {
        color: var(--dark);
        font-family: var(--font2);
        text-transform: capitalize;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 500;
        word-spacing: 2px;
        letter-spacing: 1.2px;
    }

    .heading-sec {
        font-size: 16px;
        text-transform: uppercase;
        font-family: var(--font1), sans-serif;
        line-height: 1.5;
        font-weight: 500;
    }

    .content-sec {
        font-size: 15px;
        word-spacing: 1.1px;
        line-height: 1.6;
        font-family: var(--font2);
        font-weight: 300;
        text-align: left;
    }

    .header-part {
        padding: 0px 0px;
        text-align: center;
    }
    .btn-sec{
        padding: 12px 20px;
    }

    /*-------top-header--------*/
    .t-header {
        display: flex;
    }
    .top-header{
        justify-content: space-between;
    }
    .th-links{
        display: none;
    }
    .th-social-links{
        gap:10px;
    }

    .nav-menu {
        display: none;
    }

    #navbar-sec.sticky{
        box-shadow: rgba(0, 0, 0, 0.35) 0px -2px 1px 0px inset;
    }

    header {
        position: relative;
        width: 100%;
        background-color: var(--light);
        z-index: 99;
        overflow: visible;
        box-shadow: rgba(0, 0, 0, 0.35) 0px -2px 0px 0px inset;
    }
    .header{
        display: flex;
        justify-content: space-between;
    }

    .comp-logo img {
        width: 80px;
    }

    .enq-icon {
        display: none;
        align-items: center;
    }

    .enq-icon img {
        width: 30px;
    }

    .enq-number {
        font-size: 13px;
        font-family: var(--font1);
    }

    .toggle-btn {
        margin: 10px;
        cursor: pointer;
        height: 30px;
        width: 30px;
        order: 3;
    }

    .toggle-btn>* {
        background-color: var(--dark);
        display: block;
        height: 3px;
        width: 25px;
        margin: 5px 0;
        transition: all 0.5s ease-in-out;
    }

    .toggle-btn.active .span1 {
        transform: rotate(45deg) translate(3px, 10px);
    }

    .toggle-btn.active .span2 {
        opacity: 0;
    }

    .toggle-btn.active .span3 {
        transform: rotate(-45deg) translate(1px, -8px);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        z-index: 999;
        background-color: var(--secondary);
        flex-direction: column;
        width: 100%;
        left: 0;
    }

    .nav-menu>li {
        display: block;
        line-height: 35px;
    }

    .nav-menu>li>a {
        font-family: var(--font1);
        text-transform: capitalize;
        display: block;
        padding: 10px 30px;
        font-weight: 600;
        line-height: 30px;
        box-shadow: rgba(99, 99, 99, 0.8) 0px 1px 1px 0px;
        color: var(--dark);
    }

    .nav-menu>li>a:hover {
        color: var(--bg1);
    }

    .click-btn {
        position: absolute;
        right: 0px;
        top: 1px;
        display: inline-block;
        color: var(--dark);
        padding: 9px 30px;
        line-height: 30px;
    }

    .drop-content {
        position: absolute;
        bottom:  0px;
        width: 100%;
        height: 300px;
        display: none;
        background-color: var(--light);
        z-index: 999;
        box-shadow: rgba(99, 99, 99, 0.8) 0px 1px 1px 0px;
        overflow: auto;
    }
    .drop-menu:hover .drop-content{
        top: 50px;
    }

    .drop-content li {
        line-height:1.2;
        display: block;
        transition: all 1.8s ease;
        box-shadow: 0px 0px 1px var(--dark);
    }
    .enquiry-sec{
        display: none;
    }

    /*-------banner--------- */
    .banner-img img{
        height: auto;
    }

.ban-next.slick-arrow,
.ban-back.slick-arrow {
    position: absolute;
    content: '';
    z-index: 1;
    top: 50%;
    font-size: 16px;
    font-weight:900;
    padding: 8px;
    color: var(--bg1);
    background-color: var(--secondary);
    height: 1.7rem;
    width: 1.7rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5%;
    transition: all 0.2s ease-in-out;
}
.b-img img{
    height: auto;
}
.ban-box{
    margin-bottom: 2rem;
}
    /*-----about-us------ */
    .about-us{
        margin-bottom: 30px;
       
    }
    .about-us img{
        height: auto;
    }
    .service-card{
        height: auto;
        padding-bottom: 5rem;
    }
    a.service-btn{
        left: 1rem;
    }
    .service-img img{
        width: 100px;
    }
    .counter-box{
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .c-img img{
        height: 80px;
    }
    .service-img img{
        width: 120px;
    }
    /*-------why-choose */
    .why-img img{
        height: auto;
    }
   
    .contact-element a, .contact-element p{
        font-size: 15px;
    }
    .footer-heading{
        margin-bottom: 10px;
    }
    .footer-wrapper{
        margin-bottom: 30px;
    }
    .contact-form{
        padding: 1rem 0;
    }
    .testi-box{
        padding: 1rem;
    }
     
    .footer-element li{
        font-size: 16px;
    }
    .feature-slider .f-back.slick-arrow,
    .feature-slider .f-next.slick-arrow{
  top:90%;
    }
    .feature-sec{
        padding-bottom: 100px;
    }
    .bread-title {
      
        color: var(--light);  
        background-color: var(--bg1);
        padding: 8px 20px;
        border-radius: 0px 10px 0px 10px;
     
    }
}

ul#searchResults{
    background-color:var(--secondary);
    position:absolute;
    top:100%;
    left:0px;
    width:100%;
}

ul#searchResults li{
    padding:5px 10px;
}
ul#searchResults li a{
    color:var(--dark);
}