:root {
    --primary-color: #29487D;
    --secondary-color: #3C5898;
    --third-color: #9CB2CE;
    --fourth-color: #FEFEFE;
    --fifth-color: #D4D8E8;
    --bg-color: #ffe6e6;
    --text-color: #d66d75;
    --switch-bg: #ffccbc;
    --handle-bg: #fff;
    --primary-font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --heading-font: "Bebas Neue", sans-serif;
    --text-font-family: "Montserrat", sans-serif;
    --secondary-font-family: 'Poppins', sans-serif;
}

/*==================================================
    GLOBAL CSS
==================================================*/


body {
    font-family: var(--primary-font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

p {
    margin: 0;
}

p,
span,
button,
select {
    font-family: var(--text-font-family);
}

a {
    font-family: var(--primary-font-family);
    text-decoration: none !important;
    color: #161616;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    padding: 0;
    margin: 0;
}

section {
    padding: 50px 0;
}

.blue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 9px 14px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s ease;
}

.blue-btn img {
    width: 25px;
    /* height: 20px; */
    padding: 4px;
    /* border: 1px solid rgba(255,255,255,.5); */
    border-radius: 4px;
    transition: .3s ease;
}

.blue-btn:hover img {
    transform: translate(3px, -3px);
}

/*==================================================
    NAVIGATION START
==================================================*/
.navbar {
    background: #2558b1;
    margin: 15px 15px 0 15px;
    border-radius: 16px 16px 0 0;
    backdrop-filter: blur(52.79999923706055px);
}

.nav-link {
    color: #FFFFFF;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link:hover {
    color: #FFFFFF;
    border-bottom: 2px solid#fff;
}

.navbar-toggler {
    color: #ffff;
    border: 1px solid #fff;
    border-radius: 10px 20px 10px 20px;
}

.navbar-toggler-icon {
    background-image: url(../images/home/bar.svg);
    filter: brightness(0) invert(1);
}

.dropdown-item {
    padding: 10px;
}

.navbar-nav .dropdown-menu {
    background: #F5F8FF;
    border-radius: 0;
}

.dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 1.2rem;
}

/*==================================================
    NAVIGATION END
==================================================*/

/*==================================================
    FOOTER START
==================================================*/
footer {
    padding: 60px 0;
    background: linear-gradient(186.12deg, #020101 53.29%, #3368C5 115.71%);
    position: relative;
    overflow: hidden;
}

.footer-content {
    margin-bottom: 25px;
}

.footer-content p {
    font-size: 15px;
    color: #fff;
    line-height: 22px;
}

.footer-form h3 {
    color: #fff;
    font-size: 40px;
}

.footer-form input {
    background: #353535;
    padding: 10px;
    border-radius: 8px;
    outline: none !important;
    border: none !important;
    color: #fff;
}

.footer-form input::placeholder {
    color: #FFFFFFCC;
    opacity: 1;
    font-weight: 300;
}

.footer-heading h3 {
    color: #fff;
    font-size: 30px;
    margin: 30px 0 5px 0;
}

.footer-heading a {
    font-weight: 300;
    font-size: 15px;
    color: #FFFFFFCC;
}

.social-footer li {
    padding-bottom: 15px;
}

.social-footer ul {
    display: flex;
    gap: 30px;
    color: #fff;
}

.social-footer i {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #000;
    margin-right: 5px;
    text-align: center;
    border-radius: 50%;
    vertical-align: middle;
    padding-top: 7px;
}

.getintouch-footer li {
    color: #fff;
    padding-bottom: 15px;
}

.footerquick-links ul {
    display: flex;
    gap: 5px;
    color: #fff;
    flex-wrap: wrap;
}

.footerquick-links li {
    margin: 0px 20px;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    margin: 50px 0 0 0;
    border-top: 1px solid #FFFFFF33;
}

.footer-bottom p {
    color: #fff;
}

.footer-end-heading H4 {
    position: absolute;
    bottom: -50px;
    background: linear-gradient(190.37deg, #19325F 13.33%, #3468C5 85.58%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 80px;
}

/*==================================================
    FOOTER END
==================================================*/


/*==================================================
    BANNER START
==================================================*/

.main-banner {
    background: linear-gradient(97.19deg, #2558B1 25.04%, #10254B 155.56%);
    margin: 0 15px 15px 15px;
    border-radius: 0px 0px 16px 16px;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banner-text span {
    padding: 10px 9px;
    background: #FFFFFF4D;
    border-radius: 50px;
    font-size: 12px;
    color: #fff;
}

.banner-text h1 {
    font-size: 28px;
    color: #fff;
    margin: 0;
}

.banner-text p {
    color: #fff;
}

.banner-button {
    margin-top: 6px;
    display: flex;
    gap: 15px;
    flex-direction: row;
}

.banner-button a {
    color: #fff;
    padding: 10px 13px;
    border-radius: 10px;
    border: 1px solid#fff;
}

.banner-button a:last-of-type {
    background: #fff;
    color: var(--secondary-color);
}

/*==================================================
    BANNER END
==================================================*/


/*==================================================
   Marquee Text Start
==================================================*/

.top-sticky-marquee {
    padding: 0;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    padding: 10px 0;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    margin-right: 30px;
    /* space between repeats */
    font-size: 16px;
}

.marquee-item img {
    vertical-align: middle;
    margin-right: 30px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.building-img {
    position: relative;
}

.building-img img {
    width: 100%;
    position: absolute;
}

.building-img img:first-of-type {
    z-index: 1;
}

.text-marquee {
    font-family: var(--heading-font);
    font-size: 50px;
}

/*==================================================
   Marquee Text END
==================================================*/

/*==================================================
   About Us HOME Start
==================================================*/
.about-us-main {
    background: #F1F1F3;
}

.about-us-text h2 {
    font-size: 28px;
    color: #373737;
}

.about-us-text h3 {
    color: #3368C5;
    font-size: 20px;
}

.about-us-text p {
    color: #656565;
    padding-bottom: 10px;
}

.about-us-list ul li {
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
    background: #ffffff;
    margin: 10px 0;
}

/*==================================================
   About Us HOME End
==================================================*/

/*==================================================
   Counter HOME Start
==================================================*/

.counter-text-heading h2 {
    font-size: 30px;
}

.counter-text-heading h3 {
    color: #AAAAAA;
    font-size: 20px;
}

.counter-icon-left {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.counter-icon-left img {
    width: 20%;
}

.counter::after {
    content: "+";
    display: none;
}

.counter-box {
    background: #F1F1F3;
    margin: 10px 0;
    padding: 20px;
}

.counter-box h2 {
    color: #3368C5;
    font-size: 40px;
    font-weight: 400;
}

.counter-box h3 {
    font-size: 25px;
    color: #454545;
}

.counter-box p {
    color: #888888;
    font-family: Inter;
}

/*==================================================
   Counter HOME END
==================================================*/
/*==================================================
Solution HOME Start
==================================================*/

.solution-main {
    background: #F1F1F3;
}

.sub-heading-text {
    text-align: center;
}

.sub-heading-text span {
    background: #3368C5;
    padding: 10px 40px;
    font-size: 14px;
    border-radius: 50px;
    color: #fff;
}

.sub-heading-text h2 {
    font-size: 30px;
}

.sub-heading-text h3 {
    color: #AAAAAA;
    font-size: 30px;
    font-weight: 400;
}

.sub-heading-text {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.sub-heading-text p {
    font-family: var(--primary-font-family);
    color: #656565;
    font-weight: 300;
}

.solution-box {
    background: #FFFFFF;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    transition: 0.5s ease-out;
}

.solution-box:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    margin-bottom: 30px;
}

.solution-icon img {
    width: 25%;
}

.solution-heading span {
    font-family: var(--heading-font);
    color: #3368C5;
}

.solution-heading h3 {
    font-size: 35px;
}

.solution-text p {
    color: #888888;
    font-family: Inter;
}

.solution-box-text p {
    padding: 10px;
    background: #F1F1F3;
    font-family: 'Inter';
    color: #3368C5;
    letter-spacing: 0.2px;
}

.solution-link-text a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: 0.5s ease-in-out;
}

.solution-link-text img {
    width: 30px;
    transition: 0.5s ease-in-out;
}

.solution-link-text a:hover {
    color: #dc3545;
}

.solution-link-text a:hover img {
    transform: rotate(45deg);
}

/*==================================================
Solution HOME END
==================================================*/

/*==================================================
CTA 1st HOME START
==================================================*/
.cta_1_Home_main {
    background: #3368C5;
}

.cta-text-main h2 {
    font-size: 30px;
    color: #fff;
}

.cta-text-main p {
    color: #fff;
    font-family: 'Inter';
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.cta-buttons a {
    color: #fff;
    padding: 7px 8px;
    border-radius: 10px;
    font-size: 14px;
    border: 1px solid #fff;
    background: #FFFFFF33;
}

.cta-buttons a:last-of-type {
    background: #fff;
    color: var(--secondary-color);
}

/*==================================================
CTA 1st HOME END
==================================================*/

/*==================================================
reliability-main HOME START
==================================================*/
.reliability-main {
    background: #F1F1F3;
}

.reliability-box {
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.reliable-plain-box {
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.reliable-plain-box-blue {
    padding: 20px;
    background: #3368C5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.reliable-plain-box-blue h3 {
    color: #fff;
    margin: 0;
    font-size: 30px;
}

.reliable-plain-box-blue p {
    color: #fff;
}

.reliable-plain-box h3 {
    color: #454545;
    margin: 0;
    font-size: 30px;
}

.reliable-plain-box p {
    color: #454545;
}

.reliability-box img {
    width: 70px;
}

.reliability-box span {
    color: #3368C5;
    font-family: var(--heading-font);
}

.reliability-box h3 {
    color: #454545;
    margin: 0;
    font-size: 30px;
}

.reliability-box p {
    color: #888888;
    font-weight: 300;
    font-family: var(--primary-font-family);
}

.reliable-image-slider .item img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    /* Optional */
}

.reliable-image-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.reliable-image-slider .owl-dot {
    margin: 0;
}

.reliable-image-slider .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    background: #D9D9D9;
    border-radius: 50px;
    display: block;
    transition: all 0.3s ease;
}

.reliable-image-slider .owl-dot.active span {
    width: 42px;
    height: 8px;
    background: #3D6FCF;
    /* Blue */
    border-radius: 50px;
}

.reliable-image-slider .owl-dot:hover span {
    background: #3D6FCF;
}

/*==================================================
reliability-main HOME END
==================================================*/


/*==================================================
Industrial-main HOME Start
==================================================*/

.industrial-slider .item {
    padding-top: 20px;
}

.industrial-slider .item img {
    width: 70px;
    display: block;
}

.industrial-slider h3 {
    font-size: 18px;
    margin-top: 10px;
}

/*==================================================
CONTACT FORM HOME Start
==================================================*/
.contact-form-main {
    background: #F8F8FA;
    padding: 20px;
}

.custom-contact-form .form-group {
    margin-bottom: 25px;
}

.custom-contact-form label {
    font-family: var(--heading-font);
    display: block;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #344054;
    margin-bottom: 10px;
    letter-spacing: .5px;
}

.custom-contact-form input,
.custom-contact-form select,
.custom-contact-form textarea {
    width: 100%;
    height: 52px;
    border: 1px solid #d7ddea;
    border-radius: 12px;
    padding: 0 18px;
    font-size: 18px;
    color: #44516d;
    background: #fff;
    outline: none;
    transition: .3s;
}

.custom-contact-form textarea {
    height: 120px;
    padding-top: 15px;
    resize: none;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
    color: #7b859b;
}

.custom-contact-form input:focus,
.custom-contact-form select:focus,
.custom-contact-form textarea:focus {
    border-color: #3f69c7;
    box-shadow: 0 0 0 3px rgba(63, 105, 199, .15);
}

.custom-contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236c7487' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 55px;
}

.contact-btn {
    width: 100%;
    height: 66px;
    border: none;
    border-radius: 10px;
    background: #3d69c8;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.contact-btn span {
    font-size: 24px;
}

.contact-btn:hover {
    background: #2f57b0;
}


/*==================================================
INDUSTRIAL-CSS-home Start
==================================================*/

.industrial-gallery {
    background: #f5f5f7;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-bottom: 45px;
    background: #fff;
    padding: 6px;
    width: max-content;
    margin-inline: auto;
    border-radius: 28px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
    flex-wrap: wrap;
    flex-direction: column;
}

.filter-btn {
    border: none;
    background: transparent;
    color: #555;
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 15px;
    transition: .3s;
}

.filter-btn.active {
    background: #3367d6;
    color: #fff;
}

.filter-btn:hover {
    background: #3367d6;
    color: #fff;
}

.picture-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.picture-item {
    overflow: hidden;
}

.picture-item:hover img {
    transform: scale(1.05);
}



/*==================================================
CONTACT US PAGE START
==================================================*/

.breadcrumb-main {
    background: linear-gradient(97.19deg, #2558B1 25.04%, #10254B 155.56%);
    margin: 0 15px 15px 15px;
    border-radius: 0px 0px 16px 16px;
}
.breadcrub-heading{
    text-align: center;
}
.breadcrub-heading H1{
    color: #FFF;
}
.breadcrub-heading ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap:10px;
}
.breadcrub-heading ul  li{
    list-style:none;
}
.breadcrub-heading a{
   color:#fff;
}
.breadcrub-heading i{
    color: #fff;
}
.contact-info{
    position: relative;
}

.contact-info::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(
        to top,
        rgba(51,104,197,.95),
        rgba(51,104,197,0)
    );
    z-index: 1;
}
.contact-details{
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    padding: 20px;
    z-index: 1;
}
.contact-box {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
}
.contact-box i{
    background: #3368C5;
    padding: 10px;
    color: #fff;
    border-radius: 50px;
}
.social-box ul{
    gap: 10px;
    display: flex;
}
.social-box ul li{
    list-style: none;
}
.social-box  i{
    background: #3368C5;
    padding: 10px;
    color: #fff;
    border-radius: 50px;
}
/*==================================================
CONTACT US PAGE END
==================================================*/