@font-face {
    font-family: 'Catamaran';
    src: url('assets/fonts/Catamaran-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Exo';
    src: url('assets/fonts/Exo-VariableFont_wght.ttf') format('truetype');
}




* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* */
/* */

:root {
    --black: black;
    --white: white;
    --gray: gray;
    --primary-color: #222292;
    --action-color: #d00000;
    --heading: 'Exo', sans-serif;
    --sub-heading: 'Catamaran', sans-serif;
    --content: 'Catamaran', sans-serif;
}

a {
    text-decoration: none;
    color: var(--action-color)
}

li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--content);
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    word-break: break-word;
    margin-top: 10px;
}

/* ================== class ================= */


.bg {
    background: whitesmoke;
}

section {
    padding: 0;
    margin: 0;
}

.container-fluid {
    position: relative;
    padding: 0;
    margin: 0;
}

.section-item {
    position: relative;
    padding: 70px clamp(15px, 6vw, 60px);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.align-item {
    display: flex;
    align-items: center;
}


/* -------------- button ------------- */




/* ============================================== */
/* HEADING */
/* ============================================== */



.heading-body {
    display: flex;
    flex-direction: column;
}

.heading-body .small-heading {
    color: var(--secondary);
    font-family: var(--sub-heading);
    font-style: italic;
    font-size: 17px;
    position: relative;
    width: fit-content;
    color: black;
    text-transform: capitalize;
}

.heading-body .small-heading::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 1px;
    top: 11px;
    right: -28px;
    background: var(--primary-color);
}

.heading-body .small-heading::before {
    position: absolute;
    content: '';
    width: 35px;
    height: 1px;
    top: 16px;
    right: -43px;
    background: var(--primary-color);
}


.heading-body .big-heading {
    font-size: clamp(25px, 3.5vw, 50px);
    font-weight: 700;
    font-family: var(--heading);
    color: var(--primary-color);
    line-height: 1;
}

.wow-heading span {
    display: inline-block;

}

/* .heading-body .big-heading span {
    color: var(--action-color);
    font-weight: bold;
    font-family: var(--heading);
} */

.heading-body .content-heading {
    width: 80%;
}

.center {
    align-items: center;
}

.start {
    align-items: start;
}

.end {
    align-items: end;
}



.button {
    position: relative;
    padding: 13PX 20PX;
    margin-top: 10px;
    background-color: var(--primary-color);
    font-size: 18px;
    color: var(--white);
}

.button::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--action-color);
    transition: all 0.4s;
}

.button span {
    position: relative;
    z-index: 4;

}

.button span i {
    transform: rotate(-45deg);
    font-weight: none;
    transition: all 0.4s;

}

.button:hover::before {
    width: 100%;
}

.button:hover span i {
    transform: rotate(0deg);

}

.button-bg {
    background-color: var(--action-color);
}

.button-bg::before {
    background-color: var(--primary-color);
}

/* ========== red button ============ */


/* =========================================== */
/* Header  */
/* =========================================== */

.my-navbar {
    background-color: rgb(252, 199, 54);
    padding: 0 3vw;
    background-color: wheat;
    background-color: white;
}

.header {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-item .logo-nav {
    height: 50px;
    position: relative;
}

.header .header-item .logo-nav img {
    height: 100%;
}

.header-btn {
    padding: 10px;
    background: var(--action-color);
    color: white;
    display: none;
}

.head-top-contact {
    width: 40%;
    min-width: 250px;
    height: 100%;
    position: fixed;
    z-index: 100;
    background-color: var(--white);
    left: 0;
    top: 0;
    padding: 20px;
    display: none;
    animation: sidenavbar ease-out 0.4s;
    overflow-y: auto;
}

.side-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: red; */
}

.side-head .t-logo {
    width: 200px;
}

.side-head .t-logo img {
    width: 100%;
}

.side-head .cross-icon {
    width: 30px;
    height: 30px;
    background-color: #bad2f1;
    color: rgb(0, 0, 0);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    border-radius: 50%;
}

.side-head .cross-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

.side-about {
    margin: 40px 0;
}

.head-top-contact ul li {
    margin-top: 20px;
    background-color: var(--primary-color);
    padding: 15px;
}

.head-top-contact ul li a {
    width: 100%;
    color: #ffb347;
    line-height: 1;

}

.side-container {
    display: block;
    animation: sidenavbar ease-out 0.4s;
}

@keyframes sidenavbar {
    0% {
        left: -100%
    }

    100% {
        left: 0;
    }
}

.nav-contact {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1.5vw;
}

.nav-contact .nav-card {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-contact .nav-card .icon {
    width: 40px;
    height: 40px;
    background: var(--action-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);

}

.nav-contact .nav-card .title {
    font-size: 18px;
    color: var(--action-color);
    font-family: var(--sub-heading);
    line-height: 1;
}

.nav-contact .nav-card a {
    color: var(--primary-color);
    font-weight: 500;
    font-family: var(--content);
    font-size: 18px;
}

.nav-contact .nav-card:hover .icon {
    background-color: var(--primary-color);
}

.nav-contact .nav-card:hover a {
    color: var(--action-color)
}

.nav-contact .nav-card:hover .title {
    color: var(--primary-color);
}

.navbar-body {
    background-color: var(--primary-color);
}

.navbar-brand {
    display: none;
}

.collapse {
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-item {
    padding: 10px;
    position: relative;
}

.nav-item .nav-link {
    color: var(--white);
    font-size: 18px;
    font-family: var(--sub-heading);
    position: relative;
    z-index: 5;
}

.nav-item::before {
    background-color: var(--white);
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 0%;
    z-index: 0;
    transition: all ease-out 0.4s;
}

.nav-item:hover::before {
    height: 100%;

}

.nav-item:hover .nav-link {
    color: var(--primary-color);
    font-weight: 500;
}

.get-btn-body {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.get-btn {
    background: var(--action-color);
    padding: 17px 20px 17px 20px;
    color:
        white;
    height: 100%;
    font-size: 20px;
    font-family: var(--heading);
}

.dropdown-menu {
    border-radius: 0;
    padding: 0;
    border: 0;
    width: 250px;

}

.dropdown-item {
    color: var(--primary-color);
    font-weight: 500;
    font-family: var(--sub-heading);
    z-index: 100;
    text-wrap: wrap;
    padding: 10px;
    position: relative;
    text-transform: capitalize;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.dropdown:hover .dropdown-menu {
    display: block;
    left: 0;

}

.nav-link::after {
    display: none;
}

.nav-item .nav-link i {
    transition: all linear 0.3s;
}

.nav-item :hover.nav-link i {
    transform: rotate(-180deg);
}

.dropdown-menu .sub-menu-body{
    position:absolute;
    left: 100%;
    top:10px;
     width: 250px;
      background: white;
display: none;
}

 .dropdown-menu  .sub-menu-body .sub-mune{
    padding: 5px 20px;
    font-size: 13px;
   text-transform: capitalize;
    color: black;
    width: 100% !important;
    height: auto;
    border-bottom: 1px solid var(--primary-color);
   
}
.dropdown-menu .sub-menu-list:hover .sub-menu-body{
    display: block;
}

 .sub-menu-body .sub-mune:hover{
    
    color:var(--primary-color);
 }

.sticky {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 100;
    animation: navbar linear 1s;


}

.sticky-nav {
    padding: 0;
    width: 100%;
    transition: all 0.3s ease;

}

@keyframes navbar {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }

}

.navbar-toggler {
    border: none;
    box-shadow: none;
    background-color: #ffb347;
    color: var(--primary-color);
    /* margin: 10px; */
    border-radius: 0;
    font-size: 20px;
    /* padding: 5px 10px; */
    font-family: var(--heading);
    /* margin-right: 20px; */
    padding: 22px;
}

.navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

.get-left {
    display: none;
}

.get-right {
    display: block;
}



.myslider {
    width: 100%;
}

.banner-item {
    width: 100%;
}

.banner-item img {
    width: 100%;
}

.myslider .custom-btn {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    color: white;
    font-size: 20px;
}

.myslider .custom-btn::after {
    display: none;
}

.myslider .custom-btn-left {
    bottom: 40%
}

.myslider .custom-btn-right {
    bottom: 30%;
    background-color: var(--action-color);
}

.myslider .custom-btn-right:hover {
    background-color: var(--primary-color);
}

.myslider .custom-btn-left:hover {
    background-color: var(--action-color);
}

.myslider .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.myslider .swiper-pagination-bullet-active {
    color: #fff;
    background: var(--primary-color);
}


/* About us  */

.about-left {
    width: 48%;
    float: left;
    margin-right: 30px;
    margin-bottom: 10px;
    position: relative;

}

.about-img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-img img {
    width: 100%;
    margin: auto;

}

.years {
    width: fit-content;
    position: absolute;
    padding: 20px 20px;
    background-color: var(--primary-color);
    color: white;
    font-size: 25px;
    /* font-family: var(--sub-heading); */
    font-weight: 500;
    top: -20px;
    left: -20px;
    border-radius: 5px;

}

.about-left::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 10px;
    background-color: var(--primary-color);
    top: -20px;
    left: -10px;
    border-radius: 50px;
}

.about-left::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 100%;
    background-color: var(--primary-color);
    top: 0px;
    left: -20px;
    border-radius: 50px;
}

.kek-points {
    width: 100%;
    padding-left: 20px;
}

.kek-points li {
    width: 100%;
    margin-bottom: 10px;

    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    font-family: var(--sub-heading);
}

.kek-points li img {
    width: 35px;
}

.myTeam {
    width: 100%;
    position: relative;
}

.team-item {
    width: 100%;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
}

.about-box {
    position: relative;
}

.about-box::after {
    width: 100%;
    height: 110%;
    position: absolute;
    content: '';
    right: -10px;
    top: -5%;
    background: var(--primary-color);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);

}

.team-item img {
    width: 100%;
}

.about-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ======================================== */
/* we are provide */
/* ======================================== */

.provide-card {
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    margin-top: 30px;
    background: white;
    box-shadow: 0 0 10px rgb(196, 195, 195);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: all ease-in-out 0.4s;
}

.provide-card .icon {
    width: 50px;
    height: auto;
}

.provide-card .icon img {
    width: 100%;
}

.provide-card .title {
    font-size: 20px;
    font-family: var(--heading);
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.4s;

}

.provide-2 {
    background: linear-gradient(to right, #222292, #3c3cff, #5555ff);
}

.provide-2 .title {
    color: var(--white);
}

.provide-2 .des {
    color: lightgray;
}

.provide-card:hover {
    background: linear-gradient(to right, #222292, #3c3cff, #5555ff);
    transform: translateY(-10px) scale(1.1);

}

.provide-card:hover .title {
    color: var(--white);
}

.provide-card:hover .des {
    color: lightgray;
}


/* =================================== */
/* All Product */
/* =================================== */

.product-body {
    background: linear-gradient(to right, #222292, #3c3cff, #222292, #3c3cfe, #222292);
    background: linear-gradient(to right, #222292, #3c3cff, #222292, #3c3cfe, #222292), url('../images/bg/bg.png');

    /* background: ; */
    background-position: center;
    background-size: contain;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-card {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all ease-in-out 0.4s;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;

}

.prod-card .icon {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--action-color);
    z-index: 15;
    right: 20px;
    top: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    /* display: none; */
    opacity: 0;
    transform: translateY(20px) translateX(-20px);
    transition: all ease-in-out 0.4s;

}

.prod-card .icon i {
    transform: rotate(45deg);
}

.product-img {
    width: 100%;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    transition: all linear 0.6s;
}

.product-name {
    height: 50px;
    width: 100%;
    background: var(--action-color);
    background: #ffb347;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading);
    font-weight: 600;
    color: var(--black);
    line-height: 1;
    text-align: center;
    text-transform: capitalize;
}

.product-name:hover {
    text-decoration: underline;
}

.prod-card:hover .product-img img {
    transform: scale(1.15) rotate(1deg);
}

.prod-card:hover {

    transform: scale(1.04) translateY(-10px);
}

.prod-card:hover .icon {
    opacity: 1;
    transform: translateY(0px) translateX(-0px);

}

.prod-card .icon:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.3);
}

.bottom-wavy {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
}

.bottom-wavy img {
    width: 100%;
    /* filter: invert(1); */
}


.company-name .logo-icon {
    width: 10vw;
    min-width: 70px;
    margin: auto;

}

.company-name .logo-icon img {
    width: 100%;
    /* animation:  move linear 10s infinite ; */
}

@keyframes move {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.company-name {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.company-name .name {
    font-size: clamp(60px, 10vw, 120px);
    font-family: var(--heading);
    font-weight: bold;
    text-align: center;
    line-height: 1;
    color: var(--primary-color);
    width: fit-content;
    letter-spacing: -0.4vw;
    /* -webkit-box-reflect: below 5px 
    linear-gradient(transparent, rgba(0,0,0,0.2)); */

}

.company-name .name span {
    color: var(--action-color);
}

.counter-section {
    /* margin-top: 30px; */
    padding: 20px;
    clip-path: polygon(0 89%, 0 31%, 22% 0, 85% 0%, 100% 0, 100% 15%, 100% 85%, 100% 100%, 85% 100%, 15% 100%, 0 100%, 0% 85%);

    background: url('../images/img/why.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.counter-img {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: white;
    background: url('../images/bg/bg.png');
    background-position: center;
    background-size: contain;
    clip-path: polygon(0 89%, 0 31%, 22% 0, 85% 0%, 100% 0, 100% 15%, 100% 85%, 100% 100%, 85% 100%, 15% 100%, 0 100%, 0% 85%);
    position: relative;
    z-index: 5;
    border-radius: 20px;


}

.counter-img .num {
    font-size: 13vw;
    font-family: var(--sub-heading);
    line-height: 1;
    font-weight: 700;
    position: relative;
    z-index: 10;
    background: url('../images/img/why.jpg');
    background-position: center;
    background-size: cover;
    background-clip: text;
    color: transparent;


}

.counter-img .text-year {
    font-size: 20px;
    letter-spacing: 0.8vw;
    font-family: var(--heading);
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    z-index: 10;
    background: url('../images/img/why.jpg');
    background-position: center;
    background-size: cover;
    background-clip: text;
    color: transparent;
    width: fit-content;

}

.counter-img .text-year::before {
    width: 100%;
    height: 4px;
    position: absolute;
    content: '';
    background: url('../images/img/about.jpg');
    background-position: center;
    background-size: cover;
    left: 0;
    bottom: 0;
}

.counter-content {
    position: relative;
}

.stat-box {
    width: 100%;
    height: auto;
    background-color: rgb(255, 199, 43);
    /* background: linear-gradient(to right, #222292, #3c3cff, #5555ff); */
    background: linear-gradient(to right, #ffc72b, #ffb347);
    padding: 20px;
    color: black;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
    position: relative;

}

.stat-box::before {
    width: 20px;
    height: 50px;
    content: '';
    position: absolute;
    left: -00px;
    top: -15px;
    background-color: rgb(255, 255, 255);
    transform: rotate(45deg);
    /* border-radius: 20px; */


}

.stat-box .num {
    font-size: 30px;
    font-weight: 700;
}

.stat-box .stat-icon {
    font-size: 30px;
    font-weight: 700;
}

.star-body {
    position: absolute;
    width: 8vw;
    top: -90px;
    right: 5%;
    z-index: -1;

}

.star-body img {
    width: 100%;
    animation: star-pop linear 3s infinite;
}

.stat-box p {
    color: black;
    text-align: center;
}

@keyframes star-pop {

    0%,
    100%,
    {
    transform: scale(1);
}

50% {
    transform: scale(1.1);
}
}


/* ================ industries ================  */

.myindustries {
    margin-top: 40px;
}

.ind-card {
    width: 100%;

}

.ind-card .ind-img {
    width: 100%;
    position: relative;
}

.ind-card .ind-img .icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 15px;
    bottom: -25px;
    color: var(--action-color);
    transition: all ease-in 0.3s;
    font-size: 24px;
}

.ind-card .ind-img .icon-back {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 10px;
    bottom: -30px;
    transition: all ease-in 0.3s;
}

.ind-card .ind-img img {
    width: 100%;
    transition: all ease-in 0.3s;
}

.ind-card .ind-name {
    background: var(--primary-color);
    padding: 15px 10px;
    color: white;
    font-size: 17px;
    font-family: var(--heading);
    transition: all ease-in 0.3s;
}

.ind-card:hover .ind-img .icon-back {
    background: #ffb347;
}

.ind-card:hover .ind-name {
    background: #ffb347;
    color: var(--primary-color);
}

.ind-card:hover .ind-img .icon {
    background: var(--primary-color);
    color: white;
}

.map-section {
    width: 100%;
    height: auto;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color), transparent), url('../images/bg/map-bg.jpg');
    background-position: center;
    background-attachment: fixed;
    background-size: cover;

}

.map-img {
    width: 100%;
    /* background-color: red; */
    display: flex;
    justify-content: end;
    position: relative;
    padding-right: 30px;
}

.map-img::before {
    width: 100%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 0;
    /* background-color: red; */
    background: linear-gradient(rgba(0, 0, 0, 0.349), rgba(0, 0, 0, 0.247)), url('../images/img/about.jpg');

    content: '';
    border-radius: 30px;
}

.map-img img {
    width: 60%;
    position: relative;
    z-index: 4;
    filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.26));
}

.map-content {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: red; */
    height: 100%;
}

.map-content .heading-body {
    /* margin-left: 10%; */
}

.map-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #ffb347, #ffc72b, #ffb347);
    border-radius: 10px;
    margin-top: 0px;
    /* transform: translateX(-10%); */
    transform: translateY(-100px);
    position: relative;
    z-index: 20;
    padding: 20px 10px;
    width: 70%;
    margin-left: auto;
    margin-right: 0;
}

.map-item {
    width: 30%;
    min-width: 200px;
    padding: 0px 20px;

    display: flex;
    align-items: center;
    justify-items: center;
    flex-direction: column;
    /* background-color: red; */
    border-right: 1px solid rgba(53, 52, 52, 0.678);

}

.map-item .icon {
    width: 60px;
}

.map-item .icon img {
    width: 100%;
}

.map-item .name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.map-item .des {
    text-align: center;
    line-height: 1.3;
    color: black;
    font-size: 13px;
}

.map-item-last {
    border: none;
}

/* .<!-- ===================== Why Choose  us Section ======================= --> */

.why-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.why-img .why-2 {
    width: 100%;
    /* height: 100%; */
    left: 0;
    top: 0;
    position: absolute;
    transition: all ease-in 0.4s;
    object-fit: contain;

}

.why-img .why-1 {
    position: absolute;
    width: 100%;
    object-fit: contain;
    /* height: 100%; */
    left: 0;
    top: 0;
    opacity: 0;
    transition: all ease-in 0.4s;

}

.why-img:hover .why-1 {
    opacity: 1;
}

.why-img:hover .why-2 {
    opacity: 0;
}



.why-content {
    padding: 30px 4vw 15px 4vw;
    max-width: 700px;
    margin-left: auto;
    margin-right: 0;

}

.why-card {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px;
    background: url('../images/bg/bg.png');
    background-size: contain;
    transition: all ease 0.3s;
}

.why-card .icon {
    width: 50px;
    height: 50px;
}

.why-card .icon img {
    width: 100%;
}

.why-card .title {
    width: 100%;
    text-align: left;
    font-size: 20px;
    font-family: var(--heading);
    font-weight: 600;
    color: var(--primary-color);
}

.why-card .des {
    font-size: 15px;

}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}


.test-heading {
    padding: 30px 20px;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.247), rgba(255, 255, 255, 0.288)), url('../images/bg/test-bg.jpg');
    background-size: cover;

}

.test-heading .big-heading {
    line-height: 1.3;
}

.test-body {
    padding: 0px 0vw;
}

.myTest {
    width: 100%;
}

.test-body .swiper-wrapper {
    padding: 40px;
}

.test-item {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-card {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: white;

}

.test-card .test-img {
    width: 40%;
    background-color: #000;
    position: relative;
}

.test-card .test-img::before {
    position: absolute;
    width: 80%;
    height: 170%;
    content: '';
    left: -15%;
    bottom: -20%;
    background: var(--primary-color);
}

.test-card .test-img img {
    width: 100%;
    position: relative;
    z-index: 4;
}

.test-card .test-right {
    width: 60%;
}

.test-right .rating {
    font-size: 24px;
    color: #ffb347;
}

.test-right .title {
    font-size: 20px;
    font-family: var(--heading);
    font-weight: 600;
    color: var(--primary-color);
}

.test-right .des {
    margin: 15px 0;
    color: black;
    padding-right: 10px;
    font-size: 18px !important;
    background-color: white;
}

.myTest .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    border-radius: 0;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    position: relative;
    z-index: 100;
    background: rgba(0, 0, 0, 0.2);
}

.myTest .swiper-pagination-bullet-active {
    color: #fff;
    background: var(--primary-color);
}

.contact-body {
    width: 90%;
    height: auto;
    margin: auto;
    background: red;
}

.contact-form {
    width: 100%;
    padding: 2vw;
    height: 100%;
    background-color: var(--primary-color);
}

.contact-form .heading {
    color: white;
    font-family: var(--heading);
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

.contact-form .input-item {
    width: 100%;
    margin-bottom: 15px;
    background: #8f8ffd;
    position: relative;
}


.contact-form .input-item input,
.contact-form .input-item textarea,
.contact-form .input-item select {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    background: transparent;
    background: #8f8ffd;
    font-size: 13px;
    color: white;
}

.contact-form .input-item textarea::placeholder,
.contact-form .input-item input::placeholder {
    color: white;
    opacity: 1;
}

.form-btn {
    border: none;
    outline: none;

    padding: 10px 35px;
    background-color: var(--action-color);
    color: white;
    border-radius: 30px;
    margin: auto;
    display: block;
    transition: all ease-in .3s;
}

.form-btn:hover {
    transform: scale(1.05);
}

.left-contact {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(#ffb247e1, #ffb24788), url('../images/bg/test-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 5vw;
    flex-direction: column;
}

.left-contact::after {
    width: 300px;
    height: 300px;
    content: '';
    position: absolute;
    left: -190px;
    top: -190px;
    background-color: var(--primary-color);
    transform: rotate(-45deg)
}

.left-contact::before {
    width: 300px;
    height: 300px;
    content: '';
    position: absolute;
    right: -190px;
    bottom: -190px;
    background-color: var(--action-color);
    transform: rotate(-45deg)
}

.left-contact ul {
    width: 80%;
    margin: auto;
}

.left-contact ul li {
    width: 100%;
    text-align: left;
    margin-top: 10px;
}

.left-contact ul li i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 10px;
}

.left-contact ul li a {
    color: var(--primary-color);
    font-size: 18px;
    text-shadow: 1px 1px 1px rgb(80, 79, 79);
}

.left-contact ul li a:hover {
    color: var(--action-color);

}

/* ================= footer ===================== */

.footer-section {
    background: linear-gradient(#222292, #222292), url('../images/bg/footer-bg-1.jpg');
    background-size: cover;
    background-position: center;
}

.footer-body {
    border: 3px solid #05469c;
    padding: 70px 4vw;
    border-radius: 5px;
}

.f-heading {
    color: var(--white);
    text-transform: uppercase;
    font-size: 18px;
    font-family: var(--heading);
    font-weight: 500;
    position: relative;
    width: fit-content;
}

.f-heading::after {
    width: 100%;
    height: 2px;
    background: var(to left, var(--primary-color), transparent);
    background: linear-gradient(to right, var(--white), transparent);
    /* background-color: red; */
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    border-radius: 50px;
}

.f-logo {
    width: 200px;
    background-color: white;
    padding: 15px;
    margin-bottom: 25px;

}

.f-logo img {
    width: 100%;

}

.f-item p {
    padding-right: 20px;
    color: whitesmoke;
}

.ff-item {
    padding-left: 3vw;
}

.f-item ul {
    margin-top: 10px;
    height: 200px;
    overflow-y: auto;
}

.f-item ul::-webkit-scrollbar {
    width: 6px;
    background: rgba(245, 245, 245, 0.753);
}

.f-item ul::-webkit-scrollbar-thumb {
    background-color: white;
}

.f-item ul li {
    padding: 5px;
}

.f-item ul li i {
    font-size: 13px;
    color: #fff;
    transform: rotate(-45deg);
    transition: all ease-in 0.3s;

}

.f-item ul li a {
    color: rgb(182, 180, 180);
    transition: all ease-in 0.3s;
    text-transform: capitalize;
}

.f-item ul li:hover a {
    letter-spacing: 1px;
    color: white;
}

.f-item ul li:hover i {
    color: white;
    transform: rotate(0);
    font-size: 11px;

}
.f-contact ul li a{
    text-transform: none !important;
    
}
.f-contact ul li:hover a {
    letter-spacing: 0;
}

.f-contact ul li i {
    transform: rotate(0deg);
    font-size: 20px;
    margin-right: 5px;

}

.f-contact ul li:hover i {
    font-size: 20px;
}

.f-social {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin-top: 10px;
}

.f-social a {
    width: 35px;
    height: 35px;
    background-color: #ffb347;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 50%;
    transition: all ease-out 0.3s;

}

.f-social a:hover {
    background: var(--primary-color);
    color: #ffb347;
}

.quick-link-body {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    margin-top: 15px;
    flex-wrap: wrap;

}

.quick-link-body a {
    padding: 0 20px;
    border-left: 1px solid rgba(245, 245, 245, 0.664);
    color: rgb(211, 210, 210);
}

.quick-link-body a:nth-child(1) {
    padding-left: 0;
    border: none;
}

.quick-link-body a:hover {
    color: white;
}

.copyright p {
    padding-top: 30px;
    text-align: center;
    color: white;
    margin: 0;
    padding-bottom: 0;
}

.copyright p a {
    color: #ffb347;
}

.copyright p a:hover {
    color: var(--action-color);
}


/* =============================================== */
/* Other Page */
/* =============================================== */


.breadcrumb-section {
    background: linear-gradient(to left, #05469ce1, #222292d5, #5555ffcc, #05469ccc), url('../images/bg/bg1.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
}

.breadcrumb-body {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.breadcrumb-body .breadcrumb-name {
    font-size: clamp(25px, 3.5vw, 50px);
    font-weight: 700;
    font-family: var(--heading);
    color: white;
    line-height: 1;
}

.breadcrumb-list {
    color: white;
}

.page-body {
    width: 100%;
    height: auto;
}

.page-left {
    width: 30%;
    float: right;
    padding-left: 10px;
    padding-bottom: 10px;
}
.page-body .page-right strong{
    text-transform: capitalize;
}
.page-left img {
    width: 95%;
}

.contact-dedial-p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 200px;
    padding: 10px;
    border-radius: 5px;
    background-color: #0505ee;
    transition: all 0.4s ease-in;
    margin-bottom: 30px;
}

.contact-dedial-2 {
    background-color: #0000bb;

}

.contact-dedial-3 {
    background-color: #0505ee;

}

.contact-dedial-p .icon {
    width: 50px;
}

.contact-dedial-p .icon img {
    width: 100%;
}

.contact-dedial-p .title {
    color: white;
    font-size: 23px;
    margin: 7px 0;
}

.contact-dedial-p .des {
    color: #ffb347;
    text-align: center;
}

.contact-dedial-p .des a {
    color: #ffb347;
}

.contact-dedial-p .des a:hover {
    color: white;
}

.contact-dedial-p .des:hover {
    color: white;
}

.contact-dedial-p:hover {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transform: scale(1.03);
}

.map-body {
    width: 100%;
    height: 350px;
}

.btn2 {
    width: 100%;
    height: 60px;
    background: var(--primary-color);
    font-size: 18px;
    border-radius: 30px;
    transition: all 0.2s ease-in;
    margin-top: 30px;
}

.btn2 a {
    width: 100%;
    color: var(--white);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading);

}

.btn2:hover {
    background: #ffb347;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.btn2:hover a {
    color: var(--primary-color);
    font-weight: 600;
}
.back-bg{
    background:linear-gradient(rgba(255, 255, 255, 0.836),rgba(255, 255, 255, 0.822)), url('../images/bg/bg-patten-2.jpg');
    background-size: contain;
    background-blend-mode:color-burn;
    background-attachment: fixed;
}


.custom-table{
   width: 100% !important ;
   caption-side: top;
   /*margin-top: 30px;*/
}
.custom-table caption{
    font-size:25px;
    font-weight: 600;
    color :var(--white);
    background: var(--primary-color);
    text-align: center;
    
}
.custom-table caption P{
     font-size:25px;
    font-weight: 600;
   color :var(--white);
    background: var(--primary-color);
    text-align: center;
}
.table-heading{
    background: var(--primary-color);
    width: 100%;
    color: white !important;
    padding: 10px;
    text-align: center;
    margin-bottom:0;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.product-page-body h2 , .product-page-body h3, .product-page-body h4, .product-page-bodyh5 {
    color: var(--primary-color);
    margin-top:20px;
}


.product-page-body ul li{
    list-style: none;
    position: relative;
    padding-left: 30px ;
    margin-top: 10px;
    position: relative;
    font-size: 17px;
    
}
.product-page-body ul li::before{
    position: absolute;
    top: 8px;
    left: 10px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    content: '';
}
