/* primary-color: #1e4393; */


/* yellow-color: #e5e149; */


/* sky-blue-color: #3eb7d1; */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

.main-wrapper {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito Sans", sans-serif;
}

p,
span,
button,
a,
input,
textarea,
select {
    font-family: "Nunito", sans-serif;
}

 ::-webkit-scrollbar-track {
    background-color: #d1d1d1;
}

 ::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
}

 ::-webkit-scrollbar-thumb {
    background-color: #1e4393;
}

 ::placeholder {
    color: #a6a6a6;
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
}

.custom-padding {
    padding: 90px 0;
}


/* PRELOADER */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    margin: auto;
    width: 100vw;
    height: 100dvh;
    background: #1e4393;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    z-index: 99;
    transition-delay: 0.65s;
}

.preloader * {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transition-duration: 500ms;
    -webkit-transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.preloader:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 200px 100vh 0;
    border-color: transparent #282828 transparent transparent;
    position: absolute;
    left: -200px;
    top: 0;
}

.preloader:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100vh 0 0 200px;
    border-color: transparent transparent transparent #282828;
    position: absolute;
    right: -200px;
    top: 0;
}

.preloader .inner {
    width: 100vw;
    height: 100dvh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader .inner .pre-loader-logo {
    display: inline-block;
    margin: 0;
    animation: fadeInUp ease 0.6s;
}

.preloader .inner .pre-loader-logo img {
    width: 250px;
}

.preloader .inner .percentage {
    width: 100%;
    font-size: 70vh;
    line-height: 1;
    font-weight: 800;
    color: #43b9d4;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    opacity: 0.09;
    transition-delay: 0.1s;
}

.page-loaded .preloader {
    left: calc(-100% - 200px);
    visibility: hidden;
}

.page-loaded .preloader .pre-loader-logo {
    transform: translateX(-100px);
    opacity: 0;
}

.page-loaded .preloader .percentage {
    margin-left: 100px;
    opacity: 0;
}


/*-------------Navbar--------------*/

.logo {
    width: 235px;
    transition: all 0.3s;
}

#navbar .navbar {
    padding: 15px 0;
}


/* .page-header.is-sticky .navbar {
    padding: 30px 0 !important;
} */

.page-header.is-sticky {
    position: fixed;
    animation: slideDown 0.35s ease-out;
    top: 0;
}

.page-header {
    position: absolute;
    top: 15px;
    right: 0;
    left: 0;
    z-index: 8;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

#navbar .navbar-brand {
    padding: 0;
    margin: 0;
}

#navbar .nav-link {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    padding: 0;
    position: relative;
    color: #fff;
    text-transform: capitalize;
}

#navbar .nav-link.active {
    color: #3eb7d1;
    position: relative;
    font-weight: 700;
}

#navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    background-color: #3eb7d1;
    height: 2px;
    transition: all 0.5s;
    opacity: 0;
    transform: translateY(15px);
}

#navbar .nav-item.dropdown .nav-link::before {
    content: none;
}

#navbar .nav-item.dropdown .dropdown-menu {
    margin-top: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #d7d7d7;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.45);
    width: 230px;
    backdrop-filter: blur(10px);
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
}

#navbar .nav-item.dropdown .dropdown-menu .dropdown-item {
    white-space: wrap;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #1e4393;
    padding: 10px 16px;
    border-bottom: 1px solid #446cc1;
}

#navbar .nav-item.dropdown .dropdown-menu li:last-child .dropdown-item {
    border-bottom: 0;
}

#navbar .nav-link.active::before {
    opacity: 1;
    transform: translateY(0);
}

#navbar .nav-item {
    padding: 0 20px;
}

#navbar .nav-item:first-child {
    padding-left: 0;
}

#navbar .nav-item:last-child {
    padding-right: 0;
}

#navbar .header-button {
    margin-left: 40px;
}

.page-header .logo-original {
    display: none;
}

.page-header.is-sticky .logo-original {
    display: inline-block;
}

.page-header.is-sticky .logo-white {
    display: none;
}

#navbar.page-header.is-sticky .nav-link {
    color: #1e4393;
}

#navbar.page-header.is-sticky .nav-link.active {
    color: #3eb7d1;
}

.header-button .btn-read-more {
    background: #3eb7d1;
}

.header-button .btn-read-more::before {
    background: #fff;
}

#navbar.page-header.is-sticky .header-button .btn-read-more::before {
    background: #1e4393;
}

.header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.page-header.is-sticky .header-block {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    padding: 30px 30px;
    border-radius: 0 0 20px 20px;
}

#navbar.page-header.is-sticky .navbar {
    padding: 0;
}

#navbar .nav-link.dropdown-toggle {
    position: relative;
}

#navbar .nav-link.dropdown-toggle::after {
    transform: translateY(30%);
}


/*----------------hero section----------*/

.hero {
    height: 100dvh;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 67, 147, 0.75);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.hero-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-video video[poster] {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text h1 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 800;
    font-size: 54px;
    line-height: 58px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s;
    transition-delay: 1.5s;
}

.page-loaded .hero-text h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-text p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s;
    transition-delay: 2s;
}

.page-loaded .hero-text p {
    opacity: 1;
    transform: translateY(0);
}

.hero-text .know-more {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s;
    transition-delay: 2.5s;
}

.page-loaded .hero-text .know-more {
    opacity: 1;
    transform: translateY(0);
}

.know-more a {
    text-decoration: none;
    color: #141414;
    padding: 18px 30px;
    border-radius: 15px;
    font-size: 15px;
    line-height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease-in-out;
    position: relative;
    font-weight: 700;
    background: linear-gradient(90deg, rgba(229, 225, 73, 1) 0%, rgba(62, 183, 209, 1) 100%);
    transform: translateY(0);
    text-transform: uppercase;
}

.down-arrow-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 1px solid #fff;
    border-radius: 15px;
    height: 50px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.down-arrow {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.down-arrow a {
    color: #fff;
    font-size: 20px;
    display: flex;
    text-decoration: none;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(5px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(5px);
    }
}


/*-------------about section-----------*/

.about-image {
    clip-path: polygon(59.232% 99.954%, 0% 99.954%, 0% 0%, 43.948% 0%, 99.94% 0%, 99.94% 85.02%, 59.232% 99.954%);
}

.about-image img {
    border-radius: 13px;
}

.shape {
    background: linear-gradient(180deg, rgba(229, 225, 73, 1) 0%, rgba(62, 183, 209, 1) 100%);
    border-radius: 10px;
    width: 450px;
    height: 700px;
    position: absolute;
    left: -30px;
    top: -40px;
    z-index: -1;
    animation: jump-2 7s linear infinite;
}

@keyframes jump-2 {
    0% {
        webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    50% {
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.title-label {
    background: linear-gradient(86deg, rgba(62, 183, 209, 1) 0%, rgba(229, 225, 73, 1) 40%, rgba(255, 255, 255, 0) 70%);
    border-radius: 100px 0 0 100px;
    padding: 10px 20px;
    display: inline-block;
}

.title-label span {
    margin-bottom: 0;
    color: #141414;
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    display: block;
}

.about-content h1 {
    color: #1e4393;
    font-weight: 800;
    font-size: 54px;
    line-height: 54px;
    margin-bottom: 0;
    text-transform: capitalize;
    margin-top: 15px;
}

.about-content p {
    color: #141414;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    margin-top: 30px;
    letter-spacing: 0.5px;
}

.about-content p:last-child {
    margin-top: 15px;
}

.btn-read-more {
    text-decoration: none;
    background: #1e4393;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: max-content;
    padding: 18px 30px;
    border: none;
    box-shadow: none;
    min-width: max-content;
    border-radius: 15px;
    transition: 800ms;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    line-height: 15px;
    text-transform: uppercase;
}

.btn-read-more::before {
    content: "";
    position: absolute;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 50%;
    background: #3eb7d1;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
}

.read-more-button {
    margin-top: 40px;
}


/*-------------product section----------*/

.product-section {
    /* background: linear-gradient(180deg, rgba(229, 225, 73, 0.7) 0%, rgba(62, 183, 209, 0.7) 100%); */
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(229, 225, 73, 1) 30%, rgba(62, 183, 209, 1) 70%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    z-index: 0;
}

.title-block {
    text-align: center;
}

.title-block h1 {
    color: #1e4393;
    font-weight: 800;
    font-size: 54px;
    line-height: 54px;
    margin-bottom: 0;
    text-transform: capitalize;
    margin-top: 20px;
}

.product-block {
    margin-top: 50px;
}

.product-box {
    border: 1px solid #1e4393;
    border-radius: 13px;
    padding: 20px;
    height: 100%;
    position: relative;
    transition: all 0.7s;
}

.product-box .product-img {
    border-radius: 13px;
    overflow: hidden;
    text-align: center;
    /* background-color: rgba(255, 255, 255, 0.75); */
    padding: 0 70px;
    transition: 0.3s;
}

.product-box .product-img img {
    width: 300px;
    transform: scale(1);
    transition: all 0.7s;
}

.product-box h6 {
    color: #1e4393;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
    text-transform: capitalize;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s;
}

.clients-logos .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.clients-logos {
    margin-top: 90px;
}

.clients-logos .swiper-slide {
    text-align: center;
    flex: 0 0 auto;
    width: 150px;
}

.clients-logos .swiper-slide img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    width: 100%;
}


/*--------------contact section---------------*/

.contact-block {
    margin-top: 70px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-details .contact-box:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #1e4393;
    /* background: linear-gradient(320deg, rgba(62, 183, 209, 1) 0%, rgba(30, 67, 147, 1) 100%); */
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-box .contact-text {
    text-decoration: none;
    color: #141414;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.contact-form {
    background-color: #1e4393;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #1e4393;
}

.contact-page .row {
    margin: 0 -10px;
    align-items: center;
}

.contact-page .row>[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
}

.form-field .form-label {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    margin-bottom: 12px;
}

.form-field .form-control {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    padding: 10px 15px;
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    padding-left: 0 !important;
}

.form-field .form-floating>label {
    padding-left: 0;
    color: #fff;
}

.form-field .form-floating>.form-control:not(:placeholder-shown)~label,
.form-field .form-floating>.form-control:focus~label {
    color: #3eb7d1 !important;
    transform: scale(.85) translateY(-.5rem) translateX(0);
}

.form-field .form-floating>textarea:focus~label::after,
.form-field .form-floating>textarea:not(:placeholder-shown)~label::after {
    content: none;
}

.form-field .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 32px;
}

.form-field textarea.form-control {
    height: auto;
    min-height: 125px;
    resize: none;
}

.contact-page .read-more-button {
    margin-top: 20px;
}

.contact-page .btn-read-more {
    width: 100%;
    max-width: none;
    background-color: #3eb7d1;
    color: #fff;
}

.contact-page .btn-read-more::before {
    background-color: #fff;
}


/*----------------footer--------------*/

.footer {
    background: #1e4393 url(../images/cta-one-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 30px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 230px;
}

.social-media-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-media-platform .social-media-link {
    text-decoration: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    /* background: linear-gradient(120deg, rgba(255, 225, 255, 1) 0%, rgba(62, 183, 209, 1) 100%); */
    flex-shrink: 0;
    transition: all 0.5s;
}

.social-media-platform .social-media-link img {
    width: 15px;
    flex-shrink: 0;
}

.footer-link-block {
    border-top: 1px solid #446cc1;
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quick-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.quick-links a {
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    color: #fff;
    transition: all 0.3s;
}

.footer-link-block p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
}

.go-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    transition: all 0.9s;
    background-color: #fff;
    transform: translateY(30px);
    border: 1px solid #1e4393;
}

.go-top a {
    text-decoration: none;
    cursor: pointer;
}

.go-top a i {
    font-size: 22px;
    color: #1e4393;
}

.go-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    filter: brightness(0.8);
    opacity: 0.5;
    z-index: -2;
}

.shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    filter: brightness(0.8);
    opacity: 0.5;
    z-index: -1;
    transform: rotateX(180deg);
}


/*--------------inner-page-hero-section----------------*/

.inner-page-hero-section {
    padding: 200px 0 50px;
    background-image: url(../images/inner-page-hero-bg.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.inner-page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 67, 147, 0.8);
    z-index: -1;
}

.inner-page-hero-content h1 {
    margin-bottom: 0;
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 800;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 20px;
    margin-bottom: 0;
}

.inner-page-hero-content .breadcrumb a,
.inner-page-hero-content .breadcrumb p {
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0;
}

.inner-page-hero-content .breadcrumb a {
    text-decoration: none;
    font-weight: 700;
    color: #3eb7d1;
}

.inner-about-img-container .row {
    margin: 0 -10px;
}

.inner-about-img-container .row>[class*='col-'] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.inner-about-img-container img {
    border-radius: 20px;
}

.inner-about-img-container .about-1 {
    height: 100%;
    object-fit: cover;
}

.inner-about-img-container .about-2 {
    height: 300px;
    width: 100%;
    object-fit: cover;
    padding: 20px;
    border: 1px solid #3eb7d1;
}

.other-about-content {
    margin-top: 50px;
}

.other-about-content p {
    color: #141414;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    margin-top: 30px;
    letter-spacing: 0.5px;
    text-align: center;
}

.other-about-content p:first-child {
    margin-top: 0;
}

.about-page-other-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(229, 225, 73, 1) 30%, rgba(62, 183, 209, 1) 70%, rgba(255, 255, 255, 1) 100%);
}

.mission-vision-box {
    display: flex;
    /* align-items: center; */
    justify-content: space-around;
    gap: 20px;
    border-radius: 20px;
    background-color: transparent;
    border: 2px solid #1e4393;
    /* background-color: rgba(30, 67, 147, 0.1); */
    margin-bottom: 50px;
    padding: 40px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); */
}

.vision-mission-block .mission-vision-box:last-child {
    margin-bottom: 0;
}

.mission-vision-icon {
    flex-shrink: 0;
    width: 35%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-vision-icon img {
    width: 200px;
}

.mission-vision-details h6 {
    font-weight: 800;
    font-size: 28px;
    line-height: 28px;
    color: #0a2b70;
    margin-bottom: 0;
    text-transform: uppercase;
}

.mission-vision-details p {
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    color: #141414;
    margin-bottom: 0;
}

.mission-vision-img img {
    /* -webkit-mask-image: url(../images/shape1.svg);
    mask-image: url(../images/shape1.svg);
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 99%;
    mask-size: 99%; */
    border-radius: 30px;
}

.mission-vision-img-block {
    position: relative;
    margin-left: 50px;
}

.experience-block {
    position: absolute;
    bottom: 0;
    right: 0px;
    background-color: #1e4393;
    width: 175px;
    height: 165px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.counter-data h5 {
    color: #fff;
    font-weight: 800;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 0;
}

.counter-data p {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    margin-top: 10px;
}

.why-us-details h1 {
    color: #1e4393;
    font-weight: 800;
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.section-title h1 {
    text-align: center;
    color: #1e4393;
    font-weight: 800;
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.why-us-block {
    margin-top: 60px;
}

.why-us-box {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 13px;
    padding: 30px 20px 20px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.why-us-box img {
    position: absolute;
    width: 370px;
    opacity: 0.75;
    z-index: -1;
}

.why-us-box .image-1 {
    top: 0px;
    left: -120px;
    transform: rotate(135deg);
}

.why-us-box .image-2 {
    top: 0px;
    right: -120px;
    transform: rotate(-180deg);
}

.why-us-box .image-3 {
    top: 0px;
    right: -120px;
    transform: rotate(225deg);
}

.why-us-box .image-4 {
    top: 0px;
    left: -120px;
    transform: rotate(115deg);
}

.why-us-box .image-5 {
    top: 0px;
    right: -140px;
    transform: rotate(210deg);
}

.why-us-box .image-6 {
    top: -10px;
    left: -30px;
    transform: rotate(-180deg);
}

.why-us-box .image-7 {
    top: 0px;
    left: -120px;
    transform: rotate(150deg);
}

.why-us-box h6 {
    color: #1e4393;
    font-weight: 800;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 0;
    text-align: center;
    text-transform: capitalize;
}

.why-us-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #1e4393;
    margin-bottom: 0;
    text-align: center;
    margin-top: 15px;
}

.why-us-block .row>[class*='col'] {
    padding-left: 7px;
    padding-right: 7px;
    margin-bottom: 20px;
}

.why-us-block .row {
    margin: 0 -7px;
}

.mission-vision-details ul {
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 20px;
}

.mission-vision-details ul li {
    list-style: none;
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
}

.mission-vision-details ul li:last-child {
    margin-bottom: 0;
}

.mission-vision-details ul li img {
    flex-shrink: 0;
    width: 24px;
    position: relative;
    top: 4px;
}

.mission-vision-details {
    width: 55%;
}


/*-----------products-details----------------*/

.products-images img {
    margin-top: 40px;
}

.products-images img:first-child {
    margin-top: 0;
}

.products-details h1 {
    color: #1e4393;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 40px;
    line-height: 44px;
    margin-bottom: 0;
}

.products-details h6 {
    color: #3eb7d1;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 0;
    margin-top: 5px;
}

.products-details p {
    color: #141414;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 0;
    margin-top: 16px;
}

.product-other-details {
    margin-top: 30px;
}

.product-other-details h5 {
    color: #1e4393;
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.product-other-details ul {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 20px;
}

.product-other-details ul li {
    list-style: none;
    margin-bottom: 20px;
}

.product-other-details ul li:last-child {
    margin-bottom: 0;
}

.product-other-details ul h4 {
    color: #141414;
    font-weight: 700;
    font-size: 17px;
    line-height: 17px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.product-other-details ul li p {
    margin-top: 5px;
}

.product-other-details ul.product-types li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #141414;
    font-size: 17px;
    line-height: 17px;
    font-weight: 500;
}

.product-other-details ul.product-types li:first-child {
    margin-bottom: 0;
}

.product-other-details ul.product-types li:first-of-type {
    margin-top: 20px;
}

.product-types li img {
    width: 18px;
    flex-shrink: 0;
}

.products-details {
    margin-left: 40px;
}

.nav-link:focus-visible {
    box-shadow: none;
}

.product-other-details.others-details ul li {
    margin-bottom: 10px;
}

.product-other-details ul.product-types {
    margin-top: 30px;
}


/*--------------Contact Page--------------*/

.contact-page .contact-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.contact-page .contact-block {
    margin-top: 0;
}

.contact-page .contact-details .contact-box {
    margin-bottom: 0;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    padding: 20px 12px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #1e4393;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.5s;
    position: relative;
}

.contact-page .contact-icon {
    width: auto;
    height: auto;
    background-color: transparent;
}

.contact-page .contact-icon svg {
    width: 40px;
    height: 40px;
}

.contact-page .contact-icon svg path {
    fill: #1e4393;
}

.contact-page .contact-box .contact-text {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
}

.contact-map {
    width: 50%;
    /* height: 500px; */
    margin-top: 50px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.contact-page .contact-form {
    margin-top: 50px;
    width: 50%;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.make-in-india-logo img {
    width: 100px;
}

.contact-bottom-section {
    display: flex;
    justify-content: center;
}