@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&family=Roboto+Slab:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100;200;300;400;500;600;700;800;900&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    /*font-family: 'Montserrat Alternates', sans-serif;*/
    font-family: 'Outfit', sans-serif;
    background-color: #fff !important;
    overflow: inherit !important;

}

:root {
    --primary: #006efe;
    --secondary: #30d1be;
    --light: #fff;
    --dark: #000;
    /*--button: linear-gradient(126deg, #2872d1, #35dbb7);*/
     --button: linear-gradient(#011230, #1071b6);
    --header: linear-gradient(#011230, #1071b6);
}

.btn-primary {
    padding: 18px 30px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    line-height: normal;
    font-size: 16px;
    letter-spacing: 3px;
    border: none;
    border-radius: 10px;
    color: var(--light);
    text-decoration: none;
    background: var(--button);
}
.side-menu-btn {
    position: fixed;
    top: 50%;
    left: -55px;
    background: var(--button);
    color: #fff;
    padding: 11px 33px;
    border-radius: 0 0 8px 8px;
    cursor: pointer;
    transform: translateY(-50%) rotate(-90deg);
    z-index: 2;
    transition: background 0.3s ease;
    font-size: 22px;
    gap: 15px;
    display: flex;
    align-items: center;
}
 

.side-menu-btn:hover {
    background: var(--button);
}

.container {
    max-width: 1250px;
}

.header-banner {
    overflow: hidden;
}

.animated-text {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.5;
    overflow: hidden;
}

.heading,
.leftheading {
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    position: relative;
    text-align: start;
    color: var(--dark);
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.heading strong,
.leftheading strong {
    font-size: 35px;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/*--------------------------*/
/*Cursor base*/
/*--------------------------*/

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s, background 0.3s, box-shadow 0.3s, border 0.3s;
    z-index: 9999;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-size: 200% 200%;
    animation: cursor-glow 3s infinite alternate ease-in-out,
        cursor-pulse 1.5s infinite alternate ease-in-out;
    box-shadow: 0 0 20px rgba(0, 110, 254, 0.7),
        0 0 40px rgba(48, 209, 190, 0.6);
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--light);
    box-shadow: 0 0 25px rgba(48, 209, 190, 1),
        0 0 50px rgba(0, 110, 254, 0.9);
    transform: translate(-50%, -50%) scale(1.2);
}

@keyframes cursor-glow {
    0% {
        background-position: left top;
    }

    50% {
        background-position: right center;
    }

    100% {
        background-position: left bottom;
    }
}

@keyframes cursor-pulse {
    from {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 15px rgba(0, 110, 254, 0.6),
            0 0 30px rgba(48, 209, 190, 0.4);
    }

    to {
        transform: translate(-50%, -50%) scale(1.3);
        box-shadow: 0 0 30px rgba(0, 110, 254, 1),
            0 0 60px rgba(48, 209, 190, 0.9);
    }
}

/*--------------------------*/
/*Header*/
/*--------------------------*/

.header {
    padding: 25px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.header-left {
    display: flex;
    width: 50%;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 45%;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}

.support {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
}

.support a {
    text-decoration: none;
    color: #fff;
}

.support-call {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-call i {
    font-size: 20px;
}

.consult-btn {
    background: #fff;
    color: #0b1535 !important;
    padding: 15px 35px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.consult-btn:hover {
    background: #1f7aff;
    color: #fff !important;
}

.menu-icon {
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 100%;
    background-color: #fff;
    cursor: pointer;
    transition: all 500ms ease-in-out;
    align-items: center;
    justify-content: center;
    display: flex;
}

.menu-icon::before,
.menu-icon::after {
    top: 23px;
    left: -32px;
    width: 16px;
    height: 16px;
    content: "";
    border-radius: 100%;
    position: absolute;
    background-color: #fff;
}

.menu-icon::after {
    top: 27px;
    width: 8px;
    height: 8px;
    left: -12px;
}

.menu-icon button {
    gap: 5px;
    padding: 0;
    width: 25px;
    display: -webkit-box;
    display: flex;
    border: none;
    flex-wrap: wrap;
    justify-content: center;
    background-color: transparent;
}

.menu-icon button span {
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background-color: #161714;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

nav {
    position: absolute;
    /*top: 0;*/
    width: 100%;
    z-index: 10;
    background: transparent !important;
    transition: background-color 0.3s ease;
    padding: 5px 0;
}

/*Header Marquee*/

.marquee1 .marquee__content li {
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 20px;
    margin-right: 50px;
}

.marquee1 .marquee__content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
0% {
 transform: translateX(0);
}
100% {
  transform: translateX(-100%);
}
}

.marquee1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
  color: #fff;
  padding: 5px 0;
}

.marquee1 ul{
    margin: 0;
}

.marquee1 .marquee__content li h3 {
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    margin: 0;
}

.marquee1 figure{
    margin: 0;
}
.marquee1 .marquee__content li img {
    height: 30px;
    width: 30px;
    margin: 0;
}

/*--------------------------*/
/* Side Navbar */
/*--------------------------*/

.side-navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: url(../images/footer/full-nav-bg.png) #161c33;
    transition: all 0.4s ease;
    padding: 40px;
    z-index: 12;
}

.side-navbar.active {
    left: 0;
    animation: slideIn 0.5s ease;
    
}

@keyframes slideIn {
    from {
        left: -100%;
    }

    to {
        left: 0;
    }
}

.side-navbar ul {
    list-style: none;
    padding: 0;
}


.side-navbar ul li {
    margin: 30px 0;
}

.side-navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

#closeBtn {
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 10%;
    right: 10% !important;
    cursor: pointer;
}

.side-navbar .dropdown-menu {
    position: absolute !important;
    background: #182440;
    top: -30px !important;
    left: 250px !important;
    border: none;
    box-shadow: none;
    padding-top: 10px;
    display: none;
}

.side-navbar .dropdown-menu li {
    margin: 0px !important;
}

.side-navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -30px;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-right: 30px solid #182440;
}

.side-navbar .dropdown-menu li a {
    padding: 15px 50px !important;
}

.nav-link {
    display: inline-block !important;
}

.nav-link:hover {
    color: #fff !important;
}

.side-navbar .dropdown-menu li a:hover {
    background: var(--button);
    color: var(--light);
}

.side-navbar .dropdown {
    width: 350px;
}

.side-navbar .dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu1 {
    position: absolute !important;
    background: #182440;
    top: -30px !important;
    left: 350px !important;
    border: none;
    box-shadow: none;
    padding-top: 10px;
    display: none;
}

.side-navbar .dropdown-menu1::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -30px;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-right: 30px solid #182440;
}

.dropdown-submenu:hover .dropdown-menu1 {
    display: block;
}


/*--------------------------*/
/*Footer Section*/
/*--------------------------*/

footer {
    background: url(../images/footer-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 100px 0 0;
}

footer ul{
    list-style-type: none;
    padding-left: 0 !important;
}

footer ul li {
    line-height: 35px;
}

footer ul li a{
    text-decoration: none;
   color: #fff !important;
}

.subscribe-box {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subscribe-box input {
  width: 100%;
  border: none;
  background: transparent;
  color: white;
  padding: 15px;
  outline: none;
  font-size: 15px;
}

.subscribe-box button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #00d2ff, #0077ff);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 17px;
    transition: .3s;
    padding: 5px;
}

.subscribe-box button:hover {
  transform: translateY(-3px);
  box-shadow: 0px 6px 12px rgba(0,0,0,0.2);
}

.pin-button {
    display: flex;
    margin: 30px;
}

.footer-bottom {
    border-top: 1px solid #8080803d;
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p{
    margin: 0;
}

.footer-bottom a{
    text-decoration: none;
    color: #fff !important;
}
footer h3 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}
footer .footer-industries a{
    text-decoration: none;
    color: var(--primary);
    margin-bottom: 2rem;
    display: inline-block;
}
.footer-payment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0; 
    border-top: 1px solid #8080803d;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  transition: .3s;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.08);
}

.algo {
    padding: 30px 0;
}

.address{
    line-height: 30px;
}

/* Hover effect with brand color */
.social-icons a:hover i{
  color: #fff;
}

.facebook i{ color: #1877f2; }
.twitter i{ color: #000; }
.linkedin i{ color: #0077b5; }
.instagram i{ color: #e1306c; }
.team img{
    height: 25px;
    width: 25px;
}
.youtube i{ color: #ff0000; }


/* Brand hover colors */
.facebook:hover { 
    background: #1877f2;
}
.twitter:hover { background: #000;}
.linkedin:hover { background: #0077b5;}
.instagram:hover { background: #e1306c;}
.youtube:hover { background: #ff0000;}


footer .footer-logo {
    width: 80%;
    padding: 1rem;
    background-color: #fff;
    margin-bottom: 2rem;
    border-radius: 10px;

}


/*--------------------------*/
/*Breadcrumb Section*/
/*--------------------------*/

.breadcrumb-modern {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #1a1b1d url("../images/Home/header-bg.webp") no-repeat center center / cover;
    position: relative;
    z-index: 1;
}

.breadcrumb-modern nav {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.breadcrumb-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light);
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeScale 0.8s ease-out forwards;
}

.breadcrumb-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    animation: underlineGrow 0.7s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes underlineGrow {
    to {
        width: 80px;
    }
}

.breadcrumb-item a {
    color: #ffffffcc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff99;
}

/*Whatsapp*/

#whatsappbtn{
  position:fixed;
  bottom:3%;
  left:30px;
  width:55px;
  height:55px;
  background:#4fcc5d;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10;
  cursor:pointer;
  box-shadow:0 6px 9px rgba(0,0,0,0.05),
             0 4px 5px rgba(0,0,0,0.05);
}

#whatsappbtn::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:#4fcc5d;
  box-shadow:0 0 10px #4fcc5d;
  animation:whtsbtn 2s linear infinite;
  z-index:-1;
}

@keyframes whtsbtn{
  from{
    transform:scale(1);
    opacity:1;
  }
  to{
    transform:scale(1.5);
    opacity:0;
  }
}

#whatsappbtn img{
  width:30px;
  height:auto;
}

/*Scrool to top*/

.scroll-to-top {
    text-decoration: none;
    width: 50px;
    height: 55px;
    border: 3px solid #006efe;
    background: #fff;
    border-radius: 5px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: grid;
    align-items: center;
    justify-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 10;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Arrow */
.scroll-to-top::before {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    border-right: 3px solid #006efe;
    border-top: 3px solid #006efe;
    transform: rotate(-45deg);
    margin-top: 10px;
}
/* Hover Animation */
.scroll-to-top:hover::before {
  animation: scrolltotop 1s infinite;
  margin-top: -25px;
}

@keyframes scrolltotop {
  0% {
    transform: rotate(-45deg) translate(-25px, 25px);
    opacity: 0;
  }
  40% { opacity: 1; }
  80% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 1;
  }
  100% { opacity: 0; }
}

/* header Footer breadcrumb Responsive */

@media (max-width: 991px) {

    .footer-second {
        border-radius: 20px;
        margin-top: 10px;
    }
    
    footer .footer-logo{
        width: 25%;
    }

    .img-review img{
        width: 10%;
    }
    .sector {
        margin-top: 0;
    }

    .footer-last {
        display: flex;
        gap: 2rem;
    }

    .support p {
        margin-bottom: 0;
    }

}

@media (max-width: 767px) {
    .logo {
        width: 65%;
    }
    
    .side-navbar .dropdown-menu {
    position: relative !important;
    background: #182440;
    top: 0px !important;
    left: 0px !important;
   
}
.dropdown-submenu .dropdown-menu1 {
    position: relative !important;
    background: #182440;
    top: 0px !important;
    left: 0px !important;
}
    
    
    footer .footer-logo {
        width: 35%;
    }
    
    .footer-payment{
        flex-direction: column;
        gap: 20px;
    }
    
    .side-menu-btn{
        display: none;
    }
    
   
}



@media (max-width: 568px){
   .logo {
        width: 80%;
    }
    
    .img-review img {
        width: 20%;
    }
    
    footer .footer-logo {
        width: 40%;
    }

}

@media (max-width: 479px) {
    .logo {
        width: 85%;
    }

    .menu-icon {
        width: 50px;
        height: 50px;
    }

    .footer-last {
        display: block;
    }

    .consult-btn {
        width: 85%;
        display: inline-block;
    }
    .breadcrumb-heading {
        font-size: 2rem;
    }
    .footer-first-contain h2{
        font-size: 25px;
    }
    
    footer .footer-logo {
        width: 60%;
        padding: 10px;
    }
    
    .footer-form {
        padding: 1rem 1rem 1rem;
    }
}

@media (max-width: 375px){
    footer .footer-logo {
        width: 55%;
    }
    
    .logo {
        width: 100%;
    }
}



/*------------------------------*/
#mobile-sideMenuBtn,
.mobile{
    display: none;
}

@media(max-width: 767px){
    #sideMenuBtn{
        display: none;
    }
    
    #mobile-sideMenuBtn{
        display: none;
    }
    
    .mobile{
        display: flex;
    }
    
    .desktop{
        display: none;
    }
}


/*mobile nav css*/

.mobile-btn{
  font-size:18px;
  padding:10px 15px;
  cursor:pointer;
  margin-right:10px;
  }

/* Fullscreen */
.mobile-fullscreen-nav{
  position:fixed;
  inset:0;
  background: url(../images/footer/full-nav-bg.png) #161c33 !important;
  color:#fff;
  transform:translateX(-100%);
  transition:0.4s ease;
  z-index:1000;
}
.mobile-fullscreen-nav.is-open{
    transform:translateX(0);
}

.mobile-close-btn {
    position: fixed;
    top: 20px;
    right: 35px;
    font-size: 40px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
    display: none;
}

.mobile-nav-list{
  list-style:none;
  display:none;
}

.mobile-nav-list.is-active {
    display: block;
    padding: 2rem;
}

.mobile-nav-list li {
    margin: 20px 10px;
}

.mobile-nav-list a,
.mobile-nav-list button{
  font-size:22px;
  color:#fff;
  background:none;
  border:none;
  text-decoration:none;
  cursor:pointer;
}

.mobile-nav-list button{
    font-size: 30px;
}

.mobile-has-submenu{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.mobile-submenu-btn{
  padding-left:20px;
}

.mobile-back-btn{
  font-size:20px;
  margin-bottom:40px;
  color:#aaa;
}