@font-face {
    font-family: 'Gudea';
    src: url('assets/fonts/Gudea-Regular.woff2') format('woff2'),
        url('assets/fonts/Gudea-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('assets/fonts/OpenSans-VariableFont_wdth,wght.ttf') format('truetype-variations');
    font-weight: 400;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --black: black;
    --white: white;
    --gray: gray;

    --primary-color: #072ac8;
    --secondary-color: #ffba08;
    --action-color: #d00000;

    --heading: 'Gudea', sans-serif;
    --sub-heading: 'Gudea', sans-serif;
    --content: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    color: var(--action-color)
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--content);
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    word-break: break-word;
    margin-top: 10px;
    color: black;
}

/* ================== class ================= */


/* background color  */
.bg-black {
    background: var(--black);
}

.bg-white {
    background: white;
}

.bg-primary {
    background: var(--primary-color);
}

.bg-secondary {
    background: var(--secondary-color);
}

.bg-action {
    background: var(--action-color);
}

.bg1 {
    background: #eafbff;
}

.bg2 {
    background: #0077b6;
}






/* text color  */

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: 1300px;
    margin: auto;
    position: relative;
}

.align-item {
    display: flex;
    align-items: center;
}

body {
    font-family: var(--content);
}


/* -------------- button ------------- */




/* ============================================== */
/* HEADING */
/* ============================================== */

.heading-body {
    display: flex;
    flex-direction: column;
}

.heading-body .small-heading {
    color: var(--secondary);
    font-family: var(--sub-heading);
    font-size: 15px;
    position: relative;
    width: fit-content;
    line-height: 1;
    color: var(--action-color);
    text-transform: capitalize;
    margin-bottom: -8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}

.small-heading img {
    width: 13px;
}



.heading-body .big-heading {
    font-size: clamp(25px, 3vw, 70px);
    font-weight: 550;
    font-family: var(--heading);
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
    width: fit-content;
    margin-bottom: 20px;
}

.heading-body .big-heading::after {
    width: 45%;
    height: 2px;
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    background-color: var(--primary-color);
}

.heading-body .big-heading::before {
    width: 20%;
    height: 2px;
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    background-color: var(--primary-color);
}

.heading-body .heading-left::before {
    left: 0% !important;
    transform: translateX(-0%) !important;
}

.heading-body .heading-left::after {
    left: 0% !important;
    transform: translateX(-0%) !important;
}

.heading-body .big-heading span {
    color: var(--action-color);
    font-weight: bold;
    font-family: var(--heading);
}

.heading-body .content-heading {
    width: 80%;
}

.content-heading p {
    text-align: center;
}

.center {
    align-items: center;
}

.start {
    align-items: start;
}

.end {
    align-items: end;
}

.des {
    font-family: var(--content);
    font-size: 14px;
    line-height: 25px;
    text-align: center;

    margin-top: 10px;
    color: black;
}

.title {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 650;
    position: relative;
    width: fit-content;
    text-align: center;
    display: block;
    margin: 0 auto;
}

.title::before {
    position: absolute;
    content: '';
    width: 50%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

}

/* =========================================== */
/* mynavbar */
/* =========================================== */

.mynavbar {
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    padding: 10px 0;
}

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
}

.navbar-nav {
    padding-right: 2vw;
}

.nav-link {
    font-size: 16px;
    color: black;
    font-weight: 600;
    font-family: var(--heading);
    color: var(--action-color);
    padding: 15px 0;
    margin: 0 4px;
    /* background-color: #0077b6; */
    position: relative;
    text-transform: uppercase;
}

.nav-link::before {
    width: 100%;
    height: 3px;
    position: absolute;
    content: '';
    background: var(--primary-color);
    left: 0;
    top: 0;
    border-radius: 100px;
    transform: scaleX(0);
    transition: all ease-in 0.4s;

}

.nav-item:hover .nav-link {
    color: var(--primary-color);
}

.nav-item:hover .nav-link::before {
    transform: scaleX(1);
}

/* nav-social */

.nav-social {
    display: flex;
    align-items: center;
    gap: 20px;
    /* padding: 0px 20px; */
    /* background-color: var(--primary-color); */
}

.nav-social .social-item {
    background: var(--secondary-color);
    display: flex;
    padding: 10px 20px;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.nav-social .social-item a {
    color: var(--primary-color);
}

.nav-social .social-item a:hover {
    color: var(--action-color);
}

.nav-social .nav-btn {
    background-color: var(--primary-color);
    padding: 7px 15px;
    color: var(--white);
    font-size: 20px;
}

.nav-social .nav-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.sidebar-body {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}

.sidebar-section {
    background-color: rgba(255, 255, 255, 0.24);
    position: relative;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);

}

.sidebar {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 110;
    width: 30%;
    height: 100%;
    background: #0077b6;
    padding: 20px;
    overflow-y: auto;
}


.side-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.side-header .side-logo {
    height: 50px;
    padding: 5px;
    background-color: white;
}

.side-header .side-logo img {
    height: 100%;
}

.side-header .cross-btn {
    background: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
}

.side-header .cross-btn:hover {
    background-color: var(--action-color);
    color: var(--white);
}

.side-contact ul li {
    margin-bottom: 20px;
    padding: 10px;
    background-color: white;
    border-radius: 4px;
}

.side-contact ul li i {
    color: var(--primary-color);
}

.side-contact ul li a {
    color: var(--black);
}

.side-contact ul li:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.side-contact ul li:hover i {
    color: var(--action-color);
}

.side-contact ul li:hover a {
    color: var(--secondary-color);
}

.side-add {
    display: block;
    animation: add-sidebar ease-in 0.4s;
}



@keyframes add-sidebar {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* dropdown */
.dropdown i {
    transition: all ease-in 0.3s;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

.nav-link::after {
    display: none;
}

.dropdown-menu {
    border-radius: 0;
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 0;
    width: 100%;
    min-width: 300px;

    /*height: 300px;*/
    overflow-y: auto;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
    background: var(--primary-color);
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--primary-color);
    font-family: var(--heading);
    font-size: 18px;
    transition: all ease-in 0.3s;
    border-bottom: 1px solid var(--primary-color);
}
.dropdown-menu li:last-child .dropdown-item {
    border-bottom: 0;
}


.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    letter-spacing: 0.03rem;
}



/* =========================================== */
/* Silder */
/* =========================================== */


.myslider {
    width: 100%;
}
.myslider .swiper-wrapper{
    height: auto;
}

.banner-item {
    width: 100%;
}

.banner-item img {
    width: 100%;
}

.myslider .custom-btn {
    background-color: rgba(128, 128, 128, 0.171);
    width: 40px;
    height: 40px;
    left: auto;
    top: auto;
    /* right: 10%; */
    bottom: 10%;
    color: var(--primary-color);
    font-size: 20px;
    border-radius: 50%;
    outline: 2px solid var(--primary-color);
}


.custom-btn-right {
    right: 100px;

}

.custom-btn-left {
    right: 150px;

}

.myslider .custom-btn::after {
    display: none;
}



.myslider .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
}

.myslider .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--primary-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.about-section {
    width: 100%;
    height: auto;
}

.about-left {
    float: left;
    width: 50%;
    padding-right: 30px;
    padding-bottom: 5px;
    position: relative;
}

.about-left::after {
    width: fit-content;
    height: auto;
    position: absolute;
    right: 15px;
    top: 15%;
    text-transform: capitalize;
    color: var(--action-color);
    content: 'Raising Standards, One Pole at a Time';
    writing-mode: vertical-lr;
    letter-spacing: 3px;
    font-family: var(--content);
    font-weight: 600;

    /* text-decoration: un; */
    /* background-color: #072ac8; */

}

.year-box {
    background-color: var(--primary-color);
    width: 180px;
    height: 120px;
    position: absolute;
    bottom: -10px;
    right: 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    transition: ease-in 0.2s;
}

.year-box .num {
    font-size: 45px;
    font-weight: bolder;
    color: var(--secondary-color);

}

.year-box .line {
    font-weight: 600;
    color: var(--white);

}

.year-box:hover {
    background-color: var(--action-color);
}

.about-left img {
    width: 95%;
}

.vision-card {
    padding: 30px 10px;
    background: linear-gradient(#d00000e1, #d00000c7), url('../images/img/vision.jpg');
    background-position: center;
    background-size: cover;
}

.mission-card {
    padding: 30px 10px;
    background: linear-gradient(#072ac8e8, #072ac8ce), url('../images/img/mission.jpg');
    background-position: center;
    background-size: cover;
}

.mission-card .title {
    color: var(--action-color);
}

.mission-card .title::before {
    background-color: var(--action-color);
}


/* =========================================== */
/* We are Provide  */
/* =========================================== */

.provide-body {
    background: linear-gradient(rgba(0, 0, 0, 0.671), rgba(0, 0, 0, 0.568)), url('../images/bg/bg\ \(1\).jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.provide-body .big-heading {
    color: white;
}

.provide-body .big-heading::after {
    background-color: var(--white);
}

.provide-body .big-heading::before {
    background-color: var(--white);
}

.provide-card {
    background: #caf0f8;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 30px 20px;
    border-radius: 5px;
    transition: all ease-in 0.2s;

}

.provide-card .icon {
    padding: 20px;
    border: 1px solid gainsboro;
    width: 80px;
    height: 80px;
    color: var(--primary-color);
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all ease-in 0.2s;
    background-color: var(--white);

}

.provide-card .icon i {
    position: relative;
    z-index: 4;
}

.provide-card .icon::before {
    width: 94%;
    height: 94%;
    position: absolute;
    left: 3%;
    top: 3%;
    background-color: #072ac8;
    content: '';
    border-radius: 50%;
    transform: scale(0);
    transition: all ease-in 0.2s;
}

.provide-card:hover .icon::before {
    transform: scale(1);
}

.provide-card:hover .icon {
    color: white;
    border: 1px solid var(--primary-color);
}

.provide-card .title {
    margin-top: 20px;
    color: var(--black);

}

.provide-card .title::before {
    background-color: var(--black);
}

.provide-card:hover {
    transform: translateY(-10px);
}

/* =========================================== */
/* All Product section */
/* =========================================== */

.product-section {
    background: linear-gradient(rgba(255, 255, 255, 0.897), rgba(255, 255, 255, 0.63)), url('../images/bg/bg4.jpg');
    background-position: center;
    background-size: cover;
}



.product-section {
    position: relative;
    overflow: hidden;
}

.product-body {
    margin-top: 30px;
}

.product-card {
    width: 100%;
    height: auto;
}

.product-card .product-img {
    width: 100%;
    overflow: hidden;
    transition: all ease-in 0.2s;
    position: relative;

}

.product-img::after {
    width: 100%;
    height: 0%;
    content: '';
    background: #072ac86c;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes product {
    0% {

        height: 100%;
        top: 100%;
    }

    50% {
        height: 100%;
        top: 0;
    }

    80% {
        height: 100%;
        top: 0;
    }

    100% {
        height: 0;
        top: 0;
    }
}

.product-card .product-img img {
    width: 100%;
    transition: all ease-in 0.2s;

}

.product-card .product-name {
    width: 100%;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 400;
    font-family: var(--heading);
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    transition: all ease-in 0.2s;


}

.product-card .product-name::after {
    width: 100%;
    height: 0%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background-color: var(--action-color);
    transition: all ease-in 0.2s;
}


.product-card .product-name img {
    position: absolute;
    width: 50px;
    right: 10px;
    filter: invert(1);
    transition: all ease-in 0.2s;
    z-index: 3;
}

.product-card .product-name span {
    position: relative;
    z-index: 3;
    transition: all ease-in 0.2s;

}

.product-card:hover .product-name::after {
    height: 100%;
}

.product-card:hover .product-name {
    color: var(--white);
    transform: translateY(-10px);

}

.product-card .product-name:hover span {
    text-decoration: underline;

}

.product-card:hover .product-name img {
    transform: scale(1.4);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-card:hover .product-img::after {
    animation: product linear 1s;
}

.viwe-btn {
    padding: 13px 20px;
    font-size: 18px;
    border: 2px solid black;
    width: fit-content;
    margin: 30px;
    text-transform: uppercase;
    color: black;
    border-radius: 0px;
    font-family: var(--heading);
    font-weight: 600;
    margin: 70px auto 0 auto;
    position: relative;
    z-index: 5;
    background-color: white;
}

.viwe-btn:hover {
    background: var(--black);
    color: var(--white);
    font-weight: 400;
}

.product-arrow::after {
    display: none;
}

.product-arrow {
    width: 30px;
    height: 30px;
    background-color: #072ac8b0;
    color: white;
}

.product-arrow:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.back-img {
    position: absolute;
    width: 100px;
}

.back-img img {
    width: 100%;
}

.bottom-img {
    position: absolute;
    width: 100%;
    height: 150px;
    bottom: 0;
    left: 0;
    background: url('../images/bg/bottom.png');
    background-size: contain;
    background-position: center;
    filter: invert(0.5);
}

.back-right {
    position: absolute;
    top: -40px;
    right: 3%;
    width: 150px;
    min-width: 80px;
}

.back-right img {
    width: 100%;
    animation: light 5s ease-in-out infinite;
    transform: rotate(20deg);
    transform-origin: center;
}

@keyframes light {

    0%,
    100% {
        transform: rotate(20deg);
    }

    50% {
        transform: rotate(-20deg);
    }
}



/* =========================================== */
/* process */
/* =========================================== */
.process-body {
    background: linear-gradient(rgba(255, 255, 255, 0.87), rgba(255, 255, 255, 0.904)), url('../images/bg/bg\ \(2\).png');
    background-size: contain;
}

.process-heading {
    font-size: clamp(70px, 9vw, 120px);
    font-family: var(--heading);
    font-weight: bold;
    text-align: center;
    color: black;
    line-height: 1;
    letter-spacing: -0.5vw;
}

.process-card {
    padding: 25px;
    background: #caf0f8;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out 0.2s;
}

.process-card .icon {
    width: 60px;
    height: 60px;
    background-color: #072ac8;
    position: absolute;
    right: -10px;
    top: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.process-card .num-p {
    font-size: 50px;
    font-weight: 700;
    color: black;
}

.process-card .name {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.process-card .des {
    text-align: left;
}

.process-card:hover {
    background-color: var(--secondary-color);
    transform: translateY(-10px);
}

/* =========================================== */
/*  why choose us */
/* =========================================== */

.why-content p {
    text-align: left;
}

/* .why-content .big-heading {
    color: white;
}

.why-content .big-heading::after {
    background-color: white;
}

.why-content .big-heading::before {
    background-color: white;
} */

.why-box {
    padding: 30px 20px;
    background-color: #caf0f8;
    position: relative;
    color: black;
    margin-bottom: 30px;
}

.why-box img {
    width: 60px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    filter: invert(0);
    opacity: 0.5s;
}

.why-content ul b {
    font-size: 24px;
    color: var(--black);

}

.why-content ul li {
    margin-top: 4px;
    color: var(--black);
    /* display:; */
}

.why-content ul li strong {
    color: var(--action-color);
}

.why-content ul li p {
    margin: 0;
}

.read-more {
    padding: 10px 20px;
    margin-top: 20px;
    background-color: var(--primary-color);
    width: fit-content;
    color: white;
}

.read-more i {
    color: var(--action-color);
}

.read-more:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.why-body {
    position: relative;
    overflow: hidden;
    background-color: #caf0f8;
}


.why-body::before {
    width: 50%;
    height: 120%;
    position: absolute;
    content: '';
    right: -10%;
    top: -10%;
    background: linear-gradient(rgba(0, 0, 0, 0.959), rgba(0, 0, 0, 0.932)), url('../images/bg/bg4.jpg');
    z-index: 3;

    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;

}


.why-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 6;
    border-radius: 50%;
    /* overflow: hidden; */
}


.why-img img {
    border: 10px solid #caf0f8;
    width: 100%;
    border-radius: 50%;

}

.why-bottm {
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 15%;
    z-index: 10;
    min-width: 100px;
}

.why-bottm img {
    width: 100%;
    animation: pop-img 5s infinite;
}

@keyframes pop-img {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;

    }

}

/* =========================================== */
/* industrial  */
/* =========================================== */



.int-card {
    width: 100%;
    height: auto;
    position: relative;
}

.int-card .int-img {
    width: 100%;

}

.int-card .int-img img {
    width: 100%;

}

.int-card .name {
    width: 100%;
    padding: 15px;

    font-size: 24px;
    /* font-weight: 600; */
    font-family: var(--heading);
    position: absolute;
    bottom: 0;
    left: 0;
    color: var(--white);
    text-shadow: 3px 3px 5px rgba(255, 255, 255, 0.842);
    transition: all ease-in-out 0.3s;

}

.int-top {
    width: 85%;
    height: 0%;
    position: absolute;
    top: 7.5%;
    left: 7.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.342);
    backdrop-filter: blur(8px);
    /* -webkit-backdrop-filter: blur(8px); */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    color: #fff;
    transform: scale(0.8);
    opacity: 0;
    transition: all ease-in-out 0.3s;
}

.int-card:hover .int-top {
    transform: scale(1);
    opacity: 1;
    height: 85%;

}

.int-card:hover .name {
    bottom: 30px;
    opacity: 0;
}

.banner-container {
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.banner-container .big-heading {
    color: var(--secondary-color)
}

.banner-container .big-heading::after {
    background-color: var(--secondary-color);
}

.banner-container .big-heading::before {
    background-color: var(--secondary-color);
}


.banner-section-img {
    background: url('../images/bg/bg\ \(1\).jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.banner-section-img::before {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.418);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}

.counter-section {
    width: 100%;
    /*height: 100%;*/
    padding: 40px 0;
    background: url('../images/bg/banner-bg.jpeg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.counter-section::before {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.418);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}

.counter-body {
    position: relative;
    z-index: 10;
    width: 80%;
    margin: 0 auto;

}

.counter-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: white;
    padding: 50px 5px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;

}

.counter-card .num {
    font-size: 35px;
    font-family: var(--heading);
    font-weight: 600;
    color: black;
}

.counter-card .name {
    font-size: 20px;

    color: var(--primary-color);
    font-weight: 600;
}

.tech-card {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    /* border-radius: 30px; */
    overflow: hidden;
    transition: all ease-in 0.3s;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.tech-card .tech-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.tech-card .tech-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-card .tech-img::before {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.39);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}

.tech-card .tech-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2vw;
    gap: 10px;
}

.tech-card .tech-content .title {
    color: white;
    font-size: 35px;
    text-shadow: 3px 3px 5px rgba(255, 255, 255, 0.479);
}

.tech-card .tech-content .title::before {
    background-color: white;
    height: 3px;
    box-shadow: 3px 0 5px rgba(255, 255, 255, 0.479);
}

.tech-card .tech-content .dse {
    color: rgb(231, 231, 231);
    text-align: center;
    padding: 0 20px;

}

.tech-card .tech-content .dse .read-more {
    margin-top: 0;
}

.tech-card:hover {
    transform: translateY(-10px);


}




.mytestimonials {
    width: 100%;
}
.mytestimonials .swiper-wrapper{
    height: auto;
}

.test-card {
    width: 100%;
    /*height: 100%;*/
    background-color: #caf0f8;
    padding: 15px;
    position: relative;
}

.test-card::after {
    width: 70px;
    height: 70px;
    background-color: red;
    background: url('../images/img/help/comma.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 30px;
    right: 20px;
    position: absolute;
    content: '';
    filter: invert(0.5);
    opacity: 0.3;
    transition: all ease-in-out 0.3s;

}

.test-card::before {
    width: 70px;
    height: 70px;
    background-color: red;
    background: url('../../images/img/help/arrow.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    bottom: -10px;
    right: 20px;
    position: absolute;
    content: '';
    /* filter: invert(0.4); */
    opacity: 0.3;

}

.test-card:hover::after {
    filter: invert(0.4);
    opacity: 1;
}

.odd {
    background-color: #e4f2f5;
}

.test-top {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 7;
}

.test-top .name {
    font-family: var(--heading);
    font-size: 20px;
    text-transform: capitalize;
    color: black;
}

.test-top .name .rating {
    color: var(--secondary-color);
    font-size: 17px;
    text-shadow: 2px 2px 2px gray;
}

.test-top .icon {
    width: 80px;
}

.test-top .icon img {
    width: 100%;
}

.test-content .des {
    padding: 10px;
    text-align: center;
    position: relative;
    z-index: 7;
}

/* =========================================== */
/* contact*/
/* =========================================== */
.map {
    width: 100%;
    height: 100%;
}

.contact-bg {
    background-color: #caf0f8;
}

.contact-form-bg {
    background: #caf0f8;

    padding: 30px;

}

.contact-form {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    width: 100%;


}

.contact-form .form-group {
    position: relative;
}

.contact-form .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 16px;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 15px 10px 40px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form button {
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--action-color);
    transition: all 0.3s ease;
    border: none;
    padding: 15px 20px;
}

.contact-form button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* =========================================== */
/* Footer */
/* =========================================== */



.footer-section {
    background: linear-gradient(#015acfe5, #015acfe5), 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: 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: 300px;
    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: var(--secondary-color);
    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;
}

.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: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: var(--secondary-color);
    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: #022a5f;
    color: white;
}

.quick-link-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    /* 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;
}

.catelogue-btn a {
    color: var(--secondary-color);
    font-weight: 600;
}

.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);
}

.whatsapp-body {
    width: 50px;
    min-width: 25px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
}

.whatsapp-body img {
    width: 100%;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.699));
}

.breadcrumb-section {
    background: linear-gradient(135deg, #0074d9f1, #001f3ff8, #001f3fec, #0074d9f6), url('../images/bg/bg\ \(1\).jpg');
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
}

.breadcrumb-body {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.breadcrumb-body .title {
    font-family: var(--heading);
    color: var(--secondary-color);
    font-size: 3rem;
}

.breadcrumb-body .title::before {
    background-color: var(--secondary-color);
    height: 4px;
}

.content {
    margin-top: 10px;
    color: white;
    font-size: 17px;
}

.content a {
    text-shadow: 1px 0px 2px rgba(255, 255, 255, 0.267);
}


.page-content {
    width: 100%;
}

.page-content .left-page {
    width: 40%;
    height: auto;
    float: left;


}

.page-content .left-page img {
    /* padding-bottom:10px ; */


    width: 97%;
}

.page-content .right-page h2 {
    font-family: var(--heading);
    font-size: clamp(25px, 3vw, 70px);
    font-weight: 600;
    color: var(--primary-color);
}

.product-page-heading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, #001f3f, #0074d9);
    padding: 30px 20px;
    color: white;
    /* margin-top: 40px; */


}

.product-page-heading .des {
    color: whitesmoke;
}

.product-page-heading img {
    width: 100%;
    margin-top: 20px;
}

.product-page-card {
    width: 100%;

}

.product-page-card .product-img {
    width: 100%;
    overflow: hidden;
}

.product-page-card .product-img img {
    width: 100%;
    transition: all ease-in-out 0.3s;
}

.product-page-card .name {
    width: 100%;
    background-color: var(--primary-color);
    padding: 15px 5px;
    text-align: center;
    color: white;
    font-size: 17px;
    text-transform: capitalize;
}

.product-page-card:hover .product-img img {
    transform: scale(1.1);
}

.contact-detail {
    width: 100%;
    height: 100%;
    padding: 3vw;
    background-color: #caf0f8;
}

.contact-detail h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--heading);
}

.contact-detail h2 span {
    color: var(--primary-color);
    text-transform: uppercase;
}

.contact-item {
    background-color: var(--primary-color);
    margin-top: 20px;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.contact-item .title {
    color: var(--secondary-color);
}

.contact-item .title::before {
    background: var(--secondary-color);
}

.contact-item .des a {
    color: white;
    font-weight: 550;
}

.contact-item .des a:hover {
    color: var(--secondary-color);

}

.contact-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--action-color);
    position: relative;

}

.contact-item .icon i {
    position: relative;
    z-index: 10;
    transition: all ease-in 0.2s;

}

.contact-item .icon::before {
    position: absolute;
    width: 96%;
    height: 96%;
    left: 2%;
    top: 2%;
    background-color: var(--primary-color);
    content: '';
    border-radius: 50%;
    z-index: 2;
    transform: scale(0);
    transition: all ease-in 0.2s;
}

.contact-item:hover .icon::before {
    transform: scale(1);
}

.contact-item:hover .icon i {
    color: white;
}

.all-btn {
    width: 100%;
    height: 60px;
    background: var(--action-color);
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.all-btn::after {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    position: absolute;
    content: '';
    transition: all ease-in-out 0.5s;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;



}

.all-btn::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--primary-color);
    position: absolute;
    content: '';
    transition: all ease-in-out 0.5s;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;

}

.all-btn a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    color: white;
    font-family: var(--heading);
    position: relative;
    z-index: 5;
    text-transform: capitalize;
}

.all-btn:hover::after {
    bottom: -100%;
}

.all-btn:hover::before {
    top: -100%;
}

.btn-bg {
    background: linear-gradient(rgba(243, 242, 242, 0.938), rgba(241, 241, 241, 0.938)), url('../images/bg/mc.png');
    background-size: contain;
    background-attachment: fixed;
}