@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope-Bold.woff2') format('woff2'),
        url('../font/Manrope-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Regular.woff2') format('woff2'),
        url('../font/Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg1: #f21c1f;
    --bg2: #6cc8f9;
    --bg2: #1781bd;
    --dark: #222222;
    --light: #fff;
    --bg: #e9eff181;
    --secondary: #dfe4d8;
    --secondary: #e8f8fe;
    --gray: #282828;
    --font1: 'Manrope';
    --font2: 'Roboto';
}

body {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.4;
    font-family: var(--font1);
    transition: all 0.5s ease;
}

::selection {
    color: var(--light);
    background-color: var(--bg1);
}

a {
    text-decoration: none;
    color: var(--dark);
}

.container {
    max-width: 1280px;
}

.container-fluid {
    padding: 0;
}

ul,
li,
a {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    font-size: 16px;
    color: var(--dark);
    font-family: var(--font1);
}

a:hover {
    color: var(--bg1);
}

section {
    padding: 80px 0;
    overflow: hidden;
}

/*-------------*/
.title-sec {
    color: var(--bg1);
    font-family: var(--font1);
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    display: block;
    letter-spacing: 1.3px;
    position: relative;
    text-shadow: 0px 0px 1px var(--light);
    margin-bottom: 10px;
}

.sub-title {
    color: var(--bg2);
    font-family: var(--font2);
    text-transform: capitalize;
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
    position: relative;
}

.heading-sec {
    font-size: 24px;
    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(--font1);
    font-weight: 500;
}

.header-part {
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.title-sec {
    display: inline-block;
    border-bottom: 1px solid var(--bg2);
    position: relative;
    padding-bottom: 0.5rem;
}

.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;
}

.btn-sec {
    border: 1px solid var(--bg1);
    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-image: -webkit-linear-gradient(-51deg, #e91f31 0%, #ad0614 99%);
    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: var(--light);
    color: #ad0614;
    border-color: rgba(4, 29, 56, 0.1);
    box-shadow: inset 0px 0px 1px var(--bg1);
}

.btn-sec:hover.btn-sec:after,
.btn-sec:hover.btn-sec::before {
    background-color: var(--bg1);
}

.btn-sec:active {
    opacity: .5;
}

.btn-more {
    color: var(--gray);
    font-family: var(--font2);
    font-weight: 600;
    font-size: 22px;
    text-transform: capitalize;
    font-style: normal;
    margin: 20px auto;
    padding: 10px 0;
}

.btn-more:hover,
.btn-more:active {
    background-color: initial;
    background-position: 0 0;
    color: var(--bg1);
}

.btn-more:active {
    opacity: .5;
}

.btn-more span {
    color: var(--bg1);
}


/*--------top-header---------*/
/**********/
.th-links {
    display: flex;
    gap: 30px;
}

.t-header {
    position: relative;
    z-index: 999;
    background: linear-gradient(115deg, var(--dark) 0%, var(--dark) 0%, var(--bg2) 60%, var(--bg2) 98%);
    padding: 0.4rem 0;
}

.t-header::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    bottom: -1px;
    width: 35%;
    background: var(--bg2);
    border-top-left-radius: 50px;
    z-index: -9;
}

.top-header {
    display: flex;
    justify-content: space-between;
}

.th-element {
    display: flex;
    color: var(--light);
    gap: 20px
}

.th-element .th-icon {
    font-size: 18px;
}

.th-icon span {
    background-color: var(--secondary);
    color: var(--bg1);
    width: 30px;
    padding: 2px 6px;
    border-radius: 1px;
}


.th-element a {
    color: var(--light);
    font-size: 14px;
}

.th-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.th-social-links a {
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.th-social-links a:hover {
    color: var(--light);
    transform: scale(1);
}

.s-icon {
    border-radius: 50%;
    color: var(--light);
    position: relative;
}

.s-icon::after {
    position: absolute;
    top: -4px;
    left: -4px;
    height: 33px;
    width: 33px;
    content: '';
    z-index: -1;
    background-color: var(--secondary);
    border-radius: 2px;
}

.s-icon img {
    width: 25px;
    animation: move 1s linear infinite;
}

@keyframes move {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.9);
    }
}

/*--------header---------*/
header {
    background-color: var(--light);
    box-sizing: border-box;
    padding: 0.4rem 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.nil-logo img {
    width: 130px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-menu li {
    display: inline-block;
    position: relative;
}

.nav-menu li a {
    font-family: var(--font1);
    text-transform: capitalize;
    display: block;
    padding: 30px 10px;
    font-weight: 500;
}

.nav-menu li.drop-menu {
    position: relative;
    display: block;
    padding-right: 10px;
}

.drop-content {
    position: absolute;
    top: 150px;
    width: 260px;
    height: 400px;
    display: none;
    background-color: var(--secondary);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    z-index: 999;
    overflow: auto;
    border-radius: 0px 0px 8px 8px;
}

.drop-menu:hover .drop-content {
    display: block;
    top: 100%;
}

.drop-content li {
    display: block;
    transition: all 1.8s ease;
    box-shadow: 0px 0px 1px var(--gray);
}

.drop-content li a {
    color: var(--dark);
    display: block;
    width: 100%;
    padding: 15px 10px;
    transition: all 0.4s ease;
}

.drop-content li a:hover {
    color: var(--bg1);
}

.drop-content::-webkit-scrollbar {
    width: 7px;
    color: var(--bg1);
    background-color: var(--dark);
}

.drop-content::-webkit-scrollbar-thumb {
    color: var(--bg1);
    background-color: var(--bg1);
    border-radius: 5px;
}

.click-btn {
    position: absolute;
    right: 0;
    top: 35%;
    cursor: pointer;
}



.enq-number {
    display: inline-block;
    margin-left: 10px;
    padding: 14px 30px;
}

.enq-number:hover {
    color: var(--bg2);
}

/*-----banner_start----------*/
.ban-sec {
    padding: 0;
}

.ban-left-box {
    display: block;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.p-category {
    background-color: var(--bg2) !important;
    display: block;
    position: relative;
    color: var(--light);
    padding: 10px 10px 10px 0px;
    padding-left: 4rem;
    font-family: var(--font2);
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 1.4px;
}

.ban-item {
    position: relative;
    display: block;
    padding: 20px 0;
    background-color: var(--secondary);
}

.ban-item li {
    padding: 10px 30px;
}

.ban-item li a {
    border-bottom: 1px solid var(--dark);
    display: block;
    padding-bottom: 7px;
    padding-left: 2em;
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 600;
}

.ban-img img {
    display: block;
    object-fit: cover;
}

.ban-next.slick-arrow {
      position: absolute;
    top: 42%;
    right: 10px;
    padding: 6px 14px;
    font-size: 25px;
    background-color: var(--secondary);
    color: var(--bg1);
    z-index: 9;
    border-radius: 5%;
    cursor: pointer;
}

.ban-back.slick-arrow {
    position: absolute;
    top: 55%;
    right: 10px;
    background-color: var(--secondary);
    border-radius: 5%;
    padding: 6px 14px;
    font-size: 25px;
    z-index: 9;
    color: var(--bg1);
    cursor: pointer;
}

/*---------ban-bottom---------*/
.ban-box {
    display: flex;
    background-color: var(--bg);
    padding: 15px 10px;
    text-align: center;
    align-items: center;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 2px 1px;
    padding-left: 0;
    overflow: hidden;
}

.b-img img {
    height: 150px;
    object-fit: contain;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.ban-box:hover .b-img img {
    transform: scale(1.1);
}

.b-content {
    display: block;
    flex-wrap: wrap;
    width: 60%;
    padding: 2%;
}

.b-content p.content-sec {
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
}

.b-content p.b-name {
       color: var(--bg2);
    font-size: 20px;
    font-family: var(--font1);
    text-shadow: 0px 1px var(--dark);
    letter-spacing: 0.1px;
    WHITE-SPACE: nowrap;
}

/*************about-us************/
.about-us {
    position: relative;
    z-index: 9;
}


.about-img {
    width: 48%;
    float: left;
    padding: 0 3rem 1rem 0;
}

.about-content {
    width: 100%;
}

.about-header {
    text-align: left;
}

.about-heading {
    padding-bottom: 15px;
}

.about-layer {
    margin-top: 40px;
    color: var(--light);
    background-color: var(--bg1);
    text-align: center;
    padding: 20px;
    font-family: var(--font2);
    font-weight: 800;
    text-transform: capitalize;
    font-size: 25px;
    border-radius: 8px;
    display: none;
}

.about-btn {
    position: relative;
    margin-top: 30px;

}

.exp-tag img {
    height: 180px;
    width: 50%;
    position: relative;
    margin-top: 30px;
    object-fit: cover;
}
.about-content ul,
.about-content ul li{
    list-style:disc;
    padding-left:1rem;
}

/*************counter-element************/
.counter-sec {
    background-color: var(--secondary);
    position: relative;
    display: block;
    z-index: 9;
}

.counter-sec::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../image/img/bg/1.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.2;
    background-color: var(--secondary);
    z-index: -9;
}


.counter-icon {
    height: 70px;
    width: 70px;
    background-color: var(--secondary);
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.counter-box {
    padding: 20px 0px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    justify-content: center;
    background-color: var(--bg1);
    border-radius: 15px;
    z-index: -1;
    box-shadow: rgba(0, 0, 93, 0.1) 0px 1px 1px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.counter-box::before {
    content: '';
    display: block;
    height: 100%;
    top: 0%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
    clip-path: circle(56% at 50% 50%);
    background-color: var(--light);

}

.counter-content p {
    color: var(--bg2);
}

.counter-content>.counter-number {
    font-size: 3rem;
    color: var(--bg2);
    font-family: var(--font1), ;
    font-weight: 800;
}

.counter-content>.counter-name {
    font-family: var(--font2);
    font-weight: 600;
    text-transform: capitalize;
    color: var(--dark);
    flex-wrap: wrap;
    display: block;
    font-size: 18px;
    letter-spacing: 1.3px;
}

/*--------faq---------- */

.faq {
  background-color: var(--bg);
  border: 1px solid var(--secondary);
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
  padding: 20px;
  position: relative;
  transition: 0.3s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.faq.active {
  background-color: #fff;
 box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.faq.active::before,
.faq.active::after {
  color: #2ecc71;
  content: "\f075";
  font-family: "Font Awesome 6 Free";
  font-size: 7rem;
  left: 20px;
  opacity: 0.1;
  position: absolute;
  top: 20px;
  z-index: 0;
}

.faq.active::before {
  color: #3498db;
  left: -30px;
  top: -10px;
  transform: rotateY(180deg);
}

.faq-title {
  margin: 0 35px 0 0;
  font-size: 18px;
  font-family: var(--font2);
  font-weight: 600;
  text-transform: capitalize;
  color: var(--dark);
}

.faq-text {
  display: none;
  margin: 30px 0 0;
}

.faq.active .faq-text {
  display: block;
}

.faq-toggle {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  height: 30px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 30px;
  top: 16px;
  width: 30px;
}
.faq-toggle .fa-times,
.faq.active .faq-toggle .fa-chevron-down {
  display: none;
}

.faq.active .faq-toggle .fa-times {
  color: var(--bg2);
  display: block;
}

.faq-toggle .fa-chevron-down {
  display: block;
}

.faq.active .faq-toggle {
  background-color: var(--bg);
}

/*--------what-we-do---------- */
.our-work {
    background-color: var(--light);
}

.our-box {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    gap: 30px;
}

.work-content {
    padding-right: 30px;
    margin-top: 20px;
}

.we-do {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    padding: 30px 40px;
    position: relative;
}

.we-do:after {
    position: absolute;
    bottom: 0;
    left: 70px;
    width: 60%;
    height: 1px;
    border: 1px dotted transparent;
    content: '';
}

.w-heading {
    color: var(--dark);
    font-family: var(--font2);
    font-weight: 600;
}

.w-content {
    padding: 0px 30px 20px;
    font-family: var(--font1);
    color: var(--dark);
    height: 140px;
}

.w-icon {
    position: relative;
    z-index: 1;
    display: block;
    cursor: pointer;
}

.w-icon img {
    height: 50px;
    width: 50px;
    transition: all 0.2s ease-in-out;
}

.w-icon:hover.w-icon img {
    transform: rotateY(40deg);
}

.w-icon:after {
    position: absolute;
    content: '';
    clip-path: circle(50% at 50% 50%);
    top: -15px;
    left: -15px;
    height: 80px;
    width: 80px;
    background: radial-gradient(circle, var(--bg) 0%, var(--secondary) 100%);
    content: '';
    z-index: -1;
}

.w-right-sec {
    border-right: 1px solid var(--gray);
}

.w-bottom-sec {
    border-top: 1px solid var(--gray);
    padding-top: 3rem;

}

.progress-sec {
    padding-top: 30px;
}

.skill {
    margin-bottom: 35px;
}

.progress-sec p {
    font-size: 14px;
    margin: 0 0 0.6em;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font1);
    color: var(--bg1);
}

.progress {
    margin: 8px 0;
    height: 0.6rem;
    position: relative;
    overflow: visible;
    background-color: var(--secondary);
    border-radius: 10px;
}

.progress span {
    font-family: var(--font2);
    font-size: 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    padding: 2px 6px;
    text-align: center;
    position: absolute;
    right: 20px;
    top: -32px;
    border-radius: 3px;
}

.progress-bar {
    background-color: var(--bg);
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 10px;
    color: #fff;
    text-align: center;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    transition: width .6s ease;
    background: var(--bg2);
    position: relative;
    box-shadow: none;
    border-radius: 10px;
}

/*----product-secion-------*/
.product-box {
    position: relative;
    padding: 0px 20px;
    text-align: center;
    margin: 10px;
}

.product-img {
    position: relative;
    overflow: hidden;
}

.pro-img img {
    height: 300px;
    width: 100%;
    object-fit: contain;
    background-color: #ccc;
    padding: 20px;
    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: 700;
    color: var(--bg2);
}

.pro-content {
    line-height: 1.5;
}

.product-btn {
    margin-top: 20px;
}

.product-box:hover .product-content:after {
    background-color: var(--bg2);
    color: var(--light);
    border-color: var(--secondary);
}

.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: 6px;
    padding: 8px 18px;
    font-size: 24px;
    background-color: var(--dark);
    color: var(--bg1);
    z-index: 999;
    border-radius: 5%;
    cursor: pointer;
}

.p-back.slick-arrow {
    position: absolute;
    top: 50%;
    right: 6px;
    background-color: var(--dark);
    border-radius: 5%;
    padding: 8px 18px;
    font-size: 24px;
    z-index: 999;
    color: var(--bg1);
    cursor: pointer;
}

/****contact_form**********/
.contact-us {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 9;
    display: block;
    position: relative;
    background-color: var(--secondary);
}

.contact-us:after {
    position: absolute;
    content: '';
    right: 0%;
    top: 0%;
    bottom: 0%;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.3;
    clip-path: inset(0 0 1% 25%);

}

.contact-form {
    display: block;
    min-height: 500px;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    z-index: 9;
    position: relative;
    background: linear-gradient(225deg, var(--bg1) 0%, var(--dark) 61%);

}

.contact-form:after {
    top: 0;
    left: 0;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #222222;
    z-index: -1;
    opacity: 0.5;

}

.contact-form .form-heading {
    text-transform: capitalize;
    color: var(--light);
    font-size: 32px;
    font-weight: 600;
    padding-bottom: 30px;
    font-family: "Popins", sans-serif;
}

.contact-form .input-text {
    display: block;
    width: 100%;
    padding: 8px 15px;
    outline: none;
    border: none;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray);
    background-color: var(--light);
    font-family: var(--font1);
}

.contact-form .input-text:focus {
    box-shadow: none;
    outline: none;
    border-bottom: none;
    border-bottom: 1px solid var(--bg2);
}

.input-text::placeholder {
    color: var(--dark);
    font-family: var(--font2);
}

select.input-text.select-option {
    font-size: 16px;
    font-family: var(--font2);
    text-transform: capitalize;
    color: var(--dark);
}

option.input-select {
    background-color: var(--light);
    color: var(--dark);
    font-family: var(--font2);
}

option.input-select:hover {
    background-color: var(--secondary);
}

.contact-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px;
    outline: none;
}

button.c-btn {
    background: var(--bg1);
    border-radius: 1px;
    color: var(--light);
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1;
    margin-bottom: 0;
    padding: 14px 30px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transition: all 0.3s ease;
    vertical-align: middle;
    white-space: nowrap;
    font-family: var(--font1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    outline: none;
}

.c-icon {
    font-size: 16px;
    margin: 10px 20px 0 0;
}

.c-icon a {
    color: var(--bg1);
    border: 1px solid var(--bg1);
    background-color: var(--secondary);
    padding: 5px 10px;
    height: 40px;
    position: relative;
    display: flex;
    width: 40px;
    justify-content: center;
    align-items: center;
}

.contact-header {
    display: block;
    position: static;
    margin-bottom: 50px;
}

.con-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg1);
    font-family: var(--font2);
    margin-bottom: 5px;
}


.contact-box {
    margin-bottom: 20px;
    background-color: var(--light);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    padding: 1rem;
}

.contact-box a {
    text-decoration: none;
}

.contact-icon span {
    font-family: var(--font1);
    text-transform: capitalize;
    font-weight: bold;
    color: var(--bg2);
    font-size: 22px;
    margin-right: 2rem;
}

.contact-number {
    margin: 0;
    color: var(--dark)
}

.contact-number a,
.contact-email a {
    color: var(--dark);
}

.address-heading {
    margin: 0;
    font-size: 22px;
    color: var(--main);
}

.number-heading,
.email-heading {
    margin: 0;
}

.social-content-heading {
    font-size: 22px;
    font-family: var(--font2);
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
    display: inline-block;
    background-color: #282828;
    color: #fff;
    padding: 1px 10px;
    margin: 15px auto;
}

.social-box {
    height: 16px !important;
    width: 32px !important;
    background-color: var(--main);
    border: 1px solid;
}

.social-icon img {
    width: 35px;
    border-radius: 50%;
    margin-right: 15px;
}

/* ====why-sec====== */
.why-right {
    position: relative;
}

.why-us {
    background-color: var(--bg);
    position: relative;
    z-index: 9;

}

.why-us::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../image/img/bg/03.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.why-us-inner {
    display: flex;
    gap: 2rem;
}

.why-heading {
    font-size: 22px;
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 400;
    color: var(--bg2);
    text-shadow: 0px 0px var(--bs-dark);
}

.why-box {
    background-color: var(--light);
    padding: 2rem 1rem;
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.why-icon {
    height: 50px;
    position: relative;
    margin-top: 15px;
}

.why-icon img {
    position: relative;
    display: block;
    z-index: 10;
    width: 40px;
    height: 40px;
}

.why-icon::after {
    position: absolute;
    content: '';
    top: -10px;
    left: -10px;
    height: 60px;
    width: 60px;
    content: '';
    z-index: 1;
    background-color: var(--bg);
    border-radius: 4px;
}

.why-img img {
    border-radius: 150px 0px 150px 0px;
    overflow: hidden;
    box-shadow: -10px -15px var(--bg1);
}

/********** -------- ************/
.we-serve {
    background-color: var(--bg);
    position: relative;
    z-index: 9;
}

.we-serve::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../image/img/bg/1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.we-serve-box {
    box-shadow: 0px 0px 1px var(--dark);
    padding: 0.8rem 0.5rem;
    background-color: var(--light);
    margin-top: 2rem;
}

.we-serve-box img {
    width: 55px;
    height: 55px;
}

.we-serve-box span {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
}

/********** client ************/
.our-client {
    z-index: 9;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.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;
}

.c-img img {
    height: 100px;
    width: 100%;
    transition: all 0.5s ease;
    object-fit: contain;
    cursor: grab;
    border-radius: 5px;
}

.c-box {
    margin: 10px 5px;
    float: left;
    position: relative;
    background-color: var(--light);
    border-radius: 14px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.client-slider {
    padding: 10px;
}

/* =====footer ===== */

/******footer*******/
footer {
    padding: 50px 0 30px 0;   
    background-color: var(--dark);   
    position: relative;
    z-index: 0;
}
footer::after{
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
    content: '';
    z-index: -1;
     background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../image/img/bg/03.png);
    opacity: 0.4;
}
/*------*/
.footer-element {
    margin-top: 20px;
    padding-right: 5%;
}
.footer-element p{
    font-family: var(--font1);
    font-weight: 500;
    color: var(--light);
}

.f-logo img {
    background-color:var(--dark);    
    width: 200px;
    object-fit: cover;
}

.f-heading {
    color: var(--bg1);
    text-transform: capitalize;
    font-size: 22px;
    font-family: var(--font2);
    font-weight: 700;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.f-content {
    margin-top: 20px;
    font-family: var(--font1);
    color: var(--light);
    line-height: 1.5;
}

.f-content li {
    padding: 4px 0;
    overflow: hidden;
    text-transform: capitalize;
    border-bottom: 1px solid var(--light);
    margin-bottom: 14px;
    width: 90%;
    font-weight: 700;
}

.f-content li a {
    color: var(--light);
    transition: all 0.2s ease-in-out;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 700;
}

.f-content li a:hover {
    color: var(--bg1);  
}

.f-content>li>a>span {
    margin-right: 10px;
    color: var(--bg2);

}
.f-content>li>span{
    margin-right: 15px;
    color: var(--bg2);
    font-size: 22px;
}

/* ===== ===== */
.copyright-sec {
    color: var(--light);
    letter-spacing: 1.5px;
    line-height: 0.9;
    font-family: var(--font2);
    background-color: var(--bg2);
    padding: 10px 0;
    background-color: var(--dark);
}

.copyright-sec span {
    text-transform: capitalize;
    letter-spacing: 1.4px;
    line-height: 0.9;
}

.copyright-sec a {
    font-family: var(--font1);
    color: var(--light);
    letter-spacing: 1.7px;
    line-height: 0.9;
    word-spacing: 1.5px;
}

/********scroll-btn**************/
#scroll-top {
    display: inline-block;
    background-color: var(--bg2);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    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: 1rem;
    line-height: 40px;
    color: var(--light);
}

#scroll-top:hover {
    cursor: pointer;
    background-color: var(--dark);
    box-shadow: 0px 0px 2px var(--bg);
    color: var(--light);
}

#scroll-top:active {
    background-color: var(--bg);
    color: #777;
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}


.fixed-wtsp {
    position: fixed;
    bottom: 40px;
    left: 0px;
    text-align: start;
    z-index: 9;
    transition: all 2s ease-in-out;
    transform: translateX(-500px);
}

#slide.active {
    transform: translateX(0px);
    display: block;
}

.fixed-wtsp a.phone {
    background-color: var(--bg1);
    padding: 8px 10px;
    border-radius: 0px 0px 20px 0px;
    color: var(--light);
    font-size: 15px;
    transition: 0.2s;
    margin: 0.5rem 0;
    display: inline-block;

}

.fixed-wtsp a {
    background-color: var(--bg2);
    padding: 8px 20px;
    border-radius: 0px 0px 20px 0px;
    color: #fff;
    font-size: 15px;
    transition: 0.2s;
    display: block;
}

.fixed-wtsp span {
    padding-right: 0.2rem;
}

.fixed-wtsp i {
    animation: wave 0.8s ease infinite;
}


@keyframes wave {
    from {
        transform: roate(-10deg);
    }

    to {
        transform: rotate(10deg);
    }
}


/***inner-page*****/

/******breadcrump*******/
.breadcrump-sec {
    background: url('../image/img/bg/1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 150px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrump-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(4, 0, 0, 0.9);
    content: '';
    z-index: -1;
}

.breadcrump {
    display: flex;
    flex-direction: column;
}

.bread-title {
    font-family: var(--font2);
    font-size: 35px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0px 1px var(--light);
    display: inline-block;
}

.b-links {
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 50%;
    display: inline-block;
    background-color: var(--secondary);
    padding: 10px 30px;
    color: var(--bg1);
    font-family: var(--font1);
    font-weight: 800;
    text-transform: capitalize;
    box-shadow: inset 0 0 8px var(--gray);
    border-radius: 0 50px 0 0px;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.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);
}

/* ---------------- */
.js .slider-single > div:nth-child(1n+2) { display: none }

.js .slider-single.slick-initialized > div:nth-child(1n+2) { display: block }


.slider.slider-nav.slick-initialized.slick-slider{
      padding: 0.5rem;
    background-color: var(--SECONDARY);
    border:1px solid #f2f2f2;
    margin-top:1rem;
}
.gall-img img{
    background-color:var(--bg);
}
.slider-nav .slick-slide { cursor: pointer; }
.slider-nav img{
  padding: 5px;
  width: 100px;
  margin: 1rem;
}
button.slick-prev.slick-arrow.slick-disabled,
button.slick-prev.slick-arrow,
button.slick-next.slick-arrow{
  display: none!important;
}
/* ---------------- */

@media (max-width:992px) {
    .breadcrump-sec {
        padding: 50px 0;
    }

    .bread-title {
        color: var(--light) !important;
        font-weight: 600;
        margin-bottom: 30px !important;
        font-size: 20px;
    }

    .b-links {
        width: 100%;
        font-weight: 700;
    }

    .b-links a {
        font-size: 16px;
    }

    .b-item.active {
        color: var(--bg1);
        text-transform: capitalize;
        font-family: var(--font2), sans-serif;
        letter-spacing: 0.2px;
        font-size: 16px;
        font-weight: 700;
        padding-left: 5PX;
        flex-wrap: wrap;
    }
}

/****marketing-butoon***/


.market-place {
    background-color: var(--bg);
    position: relative;
}

a.market-btn {
    display: block;
}

.market-title {
    color: var(--bg1);
}

.marketing-title {
    font-size: 32px;
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 600;
    margin: 20px auto;
    line-height: 1.1;
}

a.market-btn {
    padding: 18px 30px;
    align-items: center;
    color: var(--light);
    text-transform: capitalize;
    font-family: var(--font2);
    font-weight: 600;
    line-height: 1.2;
    margin-top: 40px;
    text-align: center;
    width: 100%;
    font-size: 20px;
    box-shadow: inset 0px 0px 2px var(--gray);
}

.marketing-sec {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*----media_queries-------*/
@media (max-width:992px) {
    section {
        padding: 50px 0;
        overflow: hidden;
    }

    .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.3px;
    }

    .sub-title {
        color: var(--dark);
        font-family: var(--font2), sans-serif;
        text-transform: capitalize;
        font-size: 20px;
        line-height: 1.2;
        font-weight: 600;
        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(--font1);
        font-weight: 400;
        text-align: left;
    }

    /*-------top-header--------*/
    .t-header {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    header {
        position: relative;
        width: 100%;
        background-color: var(--light);
        z-index: 999;
    }

    .nil-logo img {
        width: 100px;
    }

    .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 .span2 {
        background-color: var(--bg1);
        margin-left: 5px;
    }
    .toggle-btn.active .span1 {
        transform: rotate(45deg) translate(3px, 10px);
    }

    .toggle-btn.active .span2 {
        margin-left: 0;
        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: 40px;
    }

    .nav-menu>li>a {
        font-family: var(--font1);
        text-transform: capitalize;
        display: block;
        padding: 10px 16px;
        font-weight: 600;
        line-height: 40px;
        box-shadow: rgba(99, 99, 99, 0.8) 0px 1px 1px 0px;
    }

    .nav-menu li.drop-menu {
        padding-right: 0;
    }

    .nav-menu>li>a:hover {
        color: var(--bg1);
    }

    .click-btn {
        position: absolute;
        right: 0px;
        top: 2px;
        display: inline-block;
        color: var(--dark);
        background-color: var(--bg);
        padding: 19px 25px;
        line-height: 20px;
    }

    .drop-content {
        position: absolute;
        top: 80px;
        width: 100%;
        height: 300px;
        display: none;
        background-color: var(--light);
        z-index: 999;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        overflow: auto;
    }

    /* ---------- */
    .ban-back.slick-arrow,
    .ban-next.slick-arrow {
        font-size: 16px;
        padding: 4px 10px;
    }

    .ban-next.slick-arrow {
        top: 35%;
    }

    /* ==========about-us====== */
    .about-img {
        width: 100%;

    }

    .exp-tag img {
        height: 100px;
        margin: 20px 0;
    }

    /* ==========ban-box====== */
    .ban-box {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .b-content {
        width: 90%;
    }

    .counter-box {
        margin-bottom: 20px;
    }

    /* ====----------====== */
    .why-us-inner {
        display: block;
    }

    .why-right {
        margin-top: 3rem;
    }

    .why-img img {
        border-radius: 80px 0px 80px 0px;
        box-shadow: -5px -10px var(--bg1);
    }

    /* ====----------====== */

    /* ====----------====== */
    .w-right-sec,
    .w-bottom-sec {
        border: none
    }

    .w-content {
        padding: 0px 16px;
        font-family: var(--font1);
        color: var(--dark);
        height: 100px;
    }

    /* ====product====== */
    .pro-img img {
        height: 200px;
    }

    .product-name {
        font-size: 18px;
    }

    .pro-content {
        font-size: 14px;
        line-height: 1.3;
    }

    .p-next.slick-arrow {
        padding: 0px 10px;
        font-size: 24px;
        text-align: center;
        left: 5px;
    }

    .p-back.slick-arrow {
        padding: 0px 10px;
        font-size: 24px;
        right: 5px;
    }

    /* ====contact====== */
    .contact-header {
        margin-bottom: 0;
    }

    .contact-element {
        margin-top: 20px;
    }

    .contact-form .form-heading {
        padding-bottom: 20px;
    }

    .contact-form .input-text {
        padding: 8px 18px;
        font-size: 14px;
    }

    .contact-btn {
        margin: 0;
    }

    .contact-box {
        margin-bottom: 10px;
    }

    .contact-form {
        padding: 20px;
    }

    .c-img img {
        height: auto;
    }

    .contact-icon span {
        font-size: 16px;
        margin-right: 1rem;
    }

    .social-icon img {
        width: 25px;
        margin-right: 5px;
    }
 
  .footer-element{
    padding-right: 0;
    margin-bottom: 4rem;
  }
}

/*----sticky-header----------*/

/* sticky-header */
#navbar-sec.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    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);
}