@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* Root Variables */
:root {
    --font-primary: "Lato", sans-serif;
    --font-secondary: "Montserrat", sans-serif;
     --main-head:"Plus Jakarta Sans", sans-serif;
  --main-line: "Nunito Sans", sans-serif;
  --sec-line: "PT Sans", sans-serif;
    --color-dark: #1A2D45;  /* Logo Color */
    --color-primary: #26B3FB; /* Logo Accent Color */
    --color-light: #444;
    --color-secondary: #6c757d;
    --color-muted: #868e96;
}
.fixed-contact-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-contact-icons .icon {
    width: 50px;
    height: 50px;
    background-color: #25D366; /* WhatsApp color */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.fixed-contact-icons .icon.phone {
    background-color: #007BFF; /* Phone icon color */
}

.fixed-contact-icons .icon:hover {
    opacity: 0.8;
}
.fixed-contact {
      position: fixed;
    bottom:120px;
      right: 0;
      width: 50px;
      height: auto;
      background:transparent;
      color: #fff;
      border-radius: 8px 0 0 8px;
      overflow: hidden;
      transition: width 0.3s ease;
      z-index: 999;
    }

    .fixed-contact:hover {
      width: 140px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      padding: 10px;
      white-space: nowrap;
    }

    .contact-item i {
      margin-right: 10px;
      font-size: 18px;
      min-width: 20px;
      text-align: center;
    }

    .contact-text {
      display: none;
    }

    .fixed-contact:hover .contact-text {
      display: inline;
    }
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1
;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    display: none !important;
}
    a {
      color: #fff;
      text-decoration: none !important;
    }

    a:hover {
      text-decoration: underline;
    }
.careers-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/banner/careers-banner.jpg') no-repeat center/cover;
            opacity: 0.2;
            z-index: 0;
        }
/* Headings (Montserrat) */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: bold;
    color: var(--color-dark);
}

/* Paragraphs & Normal Text (Lato) */
p, span, a, li {
    font-family: var(--font-primary);
    color: var(--color-light);
}
/* Custom styling for inputs */
  .custom-input {
    border-radius: 6px;
    border: 1.5px solid #ddd;
    transition: border-color 0.3s ease;
  }
  .custom-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0,123,255,0.3);
  }

    .process-flow {
      position: relative;
      padding: 4rem 0;
    }
    .process-step {
      margin-top: 100px;
      position: relative;
      text-align: center;
    }
    .step-circle {
      width: 60px;
      height: 60px;
      background-color: #1A2D45;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      font-weight: bold;
      position: relative;
      margin: 0 auto;
      transition: transform 0.3s ease;
      z-index: 1;
    }
    .step-circle.orange {
      background-color:#0d6efd;
    }
    
    .process-step:hover .step-circle {
      transform: scale(1.1);
    }
    .process-step:not(:last-child)::before {
      content: '';
      position: absolute;
      top: 30px;
      left: 50%;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, #0d6efd,#1A2D45);
      z-index: 0;
    }
    .step-content {
      margin-top: 1rem;
      text-align: center;
      position: relative;
    }
    .countnum{
      position: absolute;
       top: 10%;
       z-index: -1;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 100px;
      font-weight: 800;
      color: #ddd;
      opacity: .5;
    }
    .step-content.above {
      margin-top: 0;
      margin-bottom: 1rem;
      position: relative;
      top: -200px;
    }
    .step-content h3{
      font-size: 25px;
      font-weight: 800;
    }
    .step-content.below {
      margin-top: 1rem;
      position: relative;
      top: 20px;
    }
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
   
    @media (max-width: 768px) {
      .process-step:not(:last-child)::before {
        display: none;
      }
      .process-step {
        margin-bottom: 2rem;
      }
      .step-content.above, .step-content.below {
        position: static;
        margin-top: 1rem;
        margin-bottom: 0;
      }
    }
  /* Custom styling for textarea */
  .custom-textarea {
    border-radius: 6px;
    border: 1.5px solid #ddd;
    transition: border-color 0.3s ease;
  }
  .custom-textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0,123,255,0.3);
  }

  /* Custom button */
  .custom-btn {
    background-color: #007bff;
    border: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
  }
  .custom-btn:hover {
    background-color: #0056b3;
  }

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff; /* White background for visibility */
    z-index: 1000; /* Ensures it stays on top */
   
}
header{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
    /* Navbar Styling */
    .navbar-nav .nav-link {
        position: relative;
        font-weight: 700;
        font-family: var(--main-line);
        padding: 10px 25px !important;
        transition: all 0.3s ease;
    }
    
    /* Underline Effect on Hover */
    .navbar-nav .nav-link::after {
        content: "";
        width: 0;
        height: 2px;
        background: var(--color-primary);
        position: absolute;
        left: 50%;
        bottom: 0;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

    /* Mega Dropdown */
    .dropdown-menu {
        width:905px;
        padding: 20px;
        position: relative; /* Parent positioning */
        display: none;
        background: #fff;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .dropdown-toggle i{
        font-size: 12px;
    }
    .dropdown-item{
        transition: .5s all;
    }
.dropdown-item::before{
    position: absolute;
    content: '';
    background-color: var(--color-primary);
    width: 0%;
    height: 1px;
    bottom: 0;
    transition: .5s all;
}
.dropdown-item:hover{
    letter-spacing: 1px;
}
.dropdown-item:hover::before{
    
    width: 70%;
}
.dropdown-menu.industry-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 45px;
    width: 15px;
    height: 15px;
    background: #F3F2F5;
    transform: rotate(45deg);
    box-shadow: none;
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 43px;
    width: 15px;
    height: 15px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.1);
}
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu h5 {
        font-weight: 600;
        position: relative;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }
    .serv h5::before{
        content: '';
        position: absolute;
        left: 40px;
        bottom: -1px;
        background-color: var(--color-primary);
        width: 140px;
        height: 2px;
        

    }
    .serv h5::after{
        content: '';
        position: absolute;
        left: 0;
        bottom: -3px;
        background-color: var(--color-dark);
        width: 50px;
        height: 6px;

    }

    .dropdown-item i {
        margin-right: 8px;
        color: var(--color-primary);
    }

    .dropdown-toggle::after{
        display: none !important;
        
    }
    /* Sidebar Styling */
    .sidebar {
        position: fixed;
        top: 0;
        right: -400px;
        
        width: 400px;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        padding: 20px;
        transition: all 0.3s ease;
    }
    .sidebar a{
        text-align: center;
        display: inline-block;
    }
    .sidebar a img{
        text-align: center;
        margin-bottom: 20px;
    }

    .sidebar.active {
        right: 0;
    }
.close-btn {
    position: absolute;
    top: 1px;
    right: 6px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}
    .dropdown-item {
        position: relative;
        
        padding: 5px 13px;
        font-size: 14px;
        color: #333;
        transition: all 0.3s ease-in-out;
    }
    
    .dropdown-item .arrow {
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease-in-out;
        font-size: 14px;
        color: var(--color-primary); /* Arrow color */
    }
    
    .dropdown-item:hover {
        background: transparent;
        color: #1A2D45;
    }
    .dropdown-item:hover span{
        color: var(--color-dark);
    }
    
    .dropdown-item:hover .arrow {
        opacity: 1;
        transform: translateX(5px); /* Moves right */
    }
    /* Industry Dropdown */
.industry-menu {
    width:700px; /* Full width */
    left: 0;
    right: 0;
    border:none;
    background: #fff;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Industry Dropdown Items */
.industry-menu .dropdown-item {
    padding: 10px 15px;
    font-size: 16px;
    margin-top: 5px;
    display:block;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: 0.3s ease-in-out;
}

.industry-menu .dropdown-item i {
    color: var(--color-primary);
    font-size: 30px;
}
.industry-menu h5 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-family: var(--font-primary);
    margin: 0;
    padding: 10px 0 0px;
    border: none;
}
.industry-menu p{
    padding: 0 30px;
}
.navbar-nav .nav-item:hover .industry-menu {
    display: block;
}
.letsconnect{
    background: var(--color-dark);
    padding: 8px 20px;
    color: #ffffff;
    border: 1px solid var(--color-dark);
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}



/* header end here */
/* banner start  here */
.content {
    padding-top: 20px;
}

.carousel-caption {
    position: absolute;
    right: 15%;
}

.carousel-item{
  position: relative;
}
.bottom-shape {
    position: absolute;
    bottom: -21%;
    left: 0;
    right: 0;
    z-index: 9;
}
.banner-index {
    position: relative;
}

.banner-index .active .link-box {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 2500ms;
}
.banner-index .link-box {
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.border-shape{
  position: absolute;
  bottom: 0%;
  right: -10%;
  z-index: 99999;
}
.bottom-shape{
  position: absolute;
  bottom: -21%;
  left: 0;
  right: 0;
  z-index: 9;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  top:11rem;
  width: 40%;
  left: 10%;
  padding-top: 1.25rem;
  z-index: 9;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align:start;
}
.banner-index .active p {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 1000ms;
}
.banner-index p {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  opacity: 0;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 40px;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  font-family:var(--main-head);
}
.banner-index h3 span {
  font-size: 72px;
  font-weight: 700;
  font-family: 'Frank Ruhl Libre', serif;
}
.banner-index .active h6 {
  opacity: 1;
  -webkit-transform:translatex(0);
  -moz-transform:translatex(0);
  -ms-transform:translatex(0);
  -o-transform:translatex(0);
  transform:translatex(0);
  transition-delay: 500ms;
}
.banner-index h6{
  font-size: 15px;
  font-weight: 700;
  font-family: var(--main-line);
  position: relative;
  color: #fff;
  letter-spacing:1px;
  opacity: 0;
  padding-left:  40px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translatex(500px);
  -moz-transform: translatex(500px);
  -ms-transform: translatex(500px);
  -o-transform: translatex(500px);
  transform: translatex(500px);
}
.content h6::before{
  position: absolute;
  content: '';
  width: 35px;
  height: 3px;
  background: #fff;
  left: 0;
  top:7px;
}
.banner-index h2:before {
  position: absolute;
  left: 0px;
  top: -15px;
  content: '';
  width: 90px;
  height: 85px;
  z-index: -1;
  background-color: #000000c5;
}
.banner-index .active h2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 800ms;
}
.banner-index h2 {
  position: relative;
  color: #ffffff;
  font-size: 80px;
  font-weight: 700;
  line-height: .7;
  margin-bottom: 0px;
  opacity: 0;
  padding-left: 30px;
  -webkit-transition: all 800ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 800ms ease;
  -o-transition: all 800ms ease;
  transition: all 800ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.banner-index .active h3 {
  opacity: 1;
  -webkit-transform: translatex(0);
  -moz-transform: translatex(0);
  -ms-transform: translatex(0);
  -o-transform: translatex(0);
  transform: translatex(0);
  transition-delay: 1000ms;
}
.banner-index h3 {
  position: relative;
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  opacity: 0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform:translatex(500px);
  -moz-transform:translatex(500px);
  -ms-transform:translatex(500px);
  -o-transform:translatex(500px);
  transform:translatex(500px);
  font-family: var(--main-line);
}
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0) !important;
}

.dropdown-content {
    position: absolute;
    background-color: #ffffff;
    width: 100px;
    min-width: unset;
    text-align: start !important;
    right: 0;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-radius: 5px;
    padding: 5px 0px;
    opacity: 0;
    transform: translateY(-40px) !important;
    transition: opacity 0.1s all linear ease, transform 0.3s all linear ease;
}

.navbar-nav li:first-child a i{
  color: #000;
}
.top-right ul li:last-child {
    border-right: none;
}

.top-right ul li {
    line-height: 0;
    padding: 0px 15px 0px;
    border-right: 1px solid #ddd;
    position: relative !important;
    display: inline;
}
.top-right ul{
  margin: 0;
  line-height: 0;

}
.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #898989 !important;
}
.dropdown-content a {
    color: #898989 !important;
    padding: 7px 10px !important;
    text-align: start !important;
    text-decoration: none;
    display: block;
    font-size: 10px !important;
    font-family: var(--top);
    font-weight: 500 !important;
    border: none !important;
    transition: opacity 0.3s all linear ease, transform 0.3s all linear ease;
}

.logoo img{
  width: 220px;
}
.logoo{
  top: 24px;
  left: 10%;
  position: absolute;
}
.navbar-brand{
  visibility: hidden;
}

.navbar {
    position: unset !important;
}
.topbar {
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
    padding: 12px 0px;
        background: linear-gradient(135deg, #fff 31%, #1A2D45 20%);
}
.top-right ul li a {
    transition: .3s all linear all linear;
    font-size: 12px;
    font-family: var(--main-head);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}
.carousel-item{
  position: relative;
}
.top-right{
  margin-right: 80px;
}
.carousel-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
  background: linear-gradient(270deg, rgba(5, 26, 108, 0) 14.74%, #0A6BB2 70.82%);
  opacity: 0.95;
}

.btn-style-one {
    background-color: #1a2d45;
    padding: 10px 25px;
    font-size: 14px;
    font-family: var(--main-line);
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: .5s all ease-in-out;
    border: 1px solid var(--orange);
}
.carousel-item img {
    animation: zoomEffect 10s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.btn-style-one i{
  padding-left: 5px;
  font-size: 13px;
}
.btn-style-two{
  background-color: #ffffff;
  color: #0A6BB2;
  padding:8px 17px;
    text-decoration: none;
  font-size: 14px;
  transition: .5s all ease-in-out;
  font-family: var(--main-line);
  font-weight: 700;
  margin-left: 20px;
  border-radius: 20px;
  border: 1px solid #ffffff;
}
.btn-style-one:hover{
  color:#0056b3;
  background-color: #fff;
  border: 1px solid var(--orange);
}
.btn-style-two:hover{
  color: #ffffff;
  background-color: #0A6BB2;
  border: 1px solid #0A6BB2;
}
.banner{
    background-color: #F8F8FE;
   padding: 50px 0px ;
   position: relative;
}

.content-slider {
    text-align: left;
    position: relative;
    min-height: 150px;
}

.content-slider h2, .content-slider p {
    opacity: 0;
    width: 100%;
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.content-slider h2 {
    font-size: 37px;
    line-height: 48px;
    font-weight: bold;
    transform: translateY(50px);
}

.content-slider p {
    font-size: 16px;
    transform: translateY(50px);
}

.content-slider h2.active, .content-slider p.active {
    opacity: 1;
    transform: translateY(0);
}

#image-slider {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: auto;
    position: absolute;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.slide-img.active {
    opacity: 1;
    transform: translateX(0);
}
#content-heading span{
    color: var(--color-primary);
    font-weight: bold;
    font-family: var(--font-primary);
}

/* banner end here  */

/* succeess start here */
.success-content{
    background-image: url(../images/middle/counter-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 25px 0px 25px 25px;
    height: 500px;
    padding: 30px 0 0;
}
#succ-bottm{
    margin-left: 50px;
    margin-top: 130px;
}
.success {
    padding-top: 150px;
    position: relative;
    background: #F3F2F5;
}
.success-text{
    display: flex;
    align-items: center;
    align-content: center;
    height: 530px;
}
.success-box
{
    align-self: center;
    align-items: center;
    display: flex;
}
.success-box .success-img{
    width: 30%;
}
.success-box .success-img img{
    width: 150px ;
    height: 150px;
    object-fit: contain;
}
.success-box .sucess-content{
    position: relative;
    padding-left: 30px;
}
.success-content{
    position: relative;
}
.media-image {
    width: 94%;
    height: 200px;
    left: 47px;
    position: absolute;
    top: 3%;
}
.success-content h5{
    margin: 0;
    font-size: 30px;
}
.success-text p{
    margin-bottom: 20px;
}
.success-text a{
    background: var(--color-dark);
    font-weight: 600;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 5px;
}


/* sucess story end here */

/* about-us start here */
.about-us{
    padding-top: 30px;
    overflow: hidden;
}
.about-us .owl-carousel .item img {
    width:100%;
    height: 70px;
    object-fit: contain;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
    background: #fff;
    margin: auto;
  }
.about-us .owl-carousel {
    margin-top: 10px;
}
.clitent-text a {
    font-size: 20px;
font-weight: 600;
color: var(--color-dark);
font-family: var(--font-secondary);
text-decoration: none;

}
.clitent-text a i{
    padding-left:8px;
    font-size: 17px;
    transition: .5s all;
}
.clitent-text a:hover i{
    padding-left: 13px;
    font-size: 25px;
}
.service-carousel1 .item{
    padding: 40px 0px 0;
}
.service-carousel1 .card .card-body{
    transform: .5s all;
}
.service-carousel1 .card .fs-2{
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    width: 70px;
    display: inline-block;
    text-align: center;
    height:70px;
}

/* Content above overlay */
.service-carousel1 .item .card .card-body {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

/* Hover Effect: card-body moves up */
.service-carousel1 .item .card:hover .card-body {
    transform: translateY(-50px);
}
.service-carousel2 .item .card:hover .card-body a {
    color: #ddd;
    text-decoration: underline;
}
.service-carousel2 .item .card:hover .card-body a i{
    color: var(--color-primary);
    

}
.service-carousel1 .item .card:hover .card-body a {
    color: #ddd;
    text-decoration: underline;
}
.service-carousel1 .item .card:hover .card-body a i{
    color: var(--color-primary);
    

}
.service-carousel1 .card i{
    color: #1A3461;
    font-size: 40px;
}

.service-carousel1 .card h5{
    font-size: 21px;
    transition: .2s all;
}
.service-carousel1 .card:hover h5{
    color: var(--color-primary);
    letter-spacing: 1px;
}
.service-carousel1 .card p{
    font-size: 16px;color: #c8c8c8;
}
.service-carousel1 .card{
    min-height: 265px;
    transform: .5s all;
}
.service-carousel1 .card a {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.service-carousel1 .card a i{
    font-size: 14px;
    padding-left:7px;
    transition: .5s all;
}
.service-carousel1 .card:hover a i{
    padding-left: 12px;

}

.service-carousel1 .item .card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

/* Gradient Overlay */
.service-carousel1 .item .card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.588), rgba(0,0,0,0.7));
    z-index: 1;
    border-radius: 5px;
    transition: .5s all ;
}

/* Ensure content stays on top */
.service-carousel1 .item .card .card-body {
    position: relative;
    z-index: 2;
}
.service-carousel1 .item .card:hover::before{
    
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.675), rgba(0, 0, 0, 0.856));
}
/* Hover Effect */
.service-carousel1 .item .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


.service-carousel2 .item{
    padding: 40px 0px 0;
}
.service-carousel2 .card .card-body{
    transform: .5s all;
}
.service-carousel2 .card .fs-2{
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    width: 70px;
    display: inline-block;
    text-align: center;
    height:70px;
}

/* Content above overlay */
.service-carousel2 .item .card .card-body {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

/* Hover Effect: card-body moves up */
.service-carousel2 .item .card:hover .card-body {
    transform: translateY(-50px);
}
.service-carousel2 .card i{
    color: #1A3461;
    font-size: 40px;
}

.service-carousel2 .card h5{
    font-size: 20px;
    transition: .2s all;
}
.service-carousel2 .card:hover h5{
    color: var(--color-primary);
    letter-spacing: 1px;
}
.service-carousel2 .card p{
    font-size: 16px;color: #c8c8c8;
}
.service-carousel2 .card{
    min-height: 286px;
    transform: .5s all;
}
.service-carousel2 .card a {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.service-carousel2 .card a i{
    font-size: 14px;
    padding-left:7px;
    transition: .5s all;
}
.service-carousel2 .card:hover a i{
    padding-left: 12px;

}

.service-carousel2 .item .card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

/* Gradient Overlay */
.service-carousel2 .item .card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.588), rgba(0,0,0,0.7));
    z-index: 1;
    border-radius: 5px;
    transition: .5s all ;
}

/* Ensure content stays on top */
.service-carousel2 .item .card .card-body {
    position: relative;
    z-index: 2;
}
.service-carousel2 .item .card:hover::before{
    
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.675), rgba(0, 0, 0, 0.856));
}
/* Hover Effect */
.service-carousel2 .item .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
/* Parent hover triggers icon effect */
.service-carousel1 .item .card:hover .fs-2 i {
    transform: rotateY(20deg) scale(1.1);
    transition: transform 0.4s ease;
}

/* Initial icon state */
.service-carousel1 .item .fs-2 i {
    display: inline-block;
    transition: transform 0.4s ease;
}




/* Make sure owl-nav is positioned absolutely inside the carousel */
.owl-carousel .owl-nav {
    position: absolute;
    top: 97%;
    left: -65px;
    right: -65px;
    transform: translateY(-50%);
    display: flex
;
    justify-content: space-between;
    pointer-events: none;
}
.item{
    position:inherit !important;
}
.owl-carousel .owl-nav button span{
    font-size: 28px;
    line-height: 30px;
}
.owl-carousel .owl-nav button {
    background: #ffffff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #d6d6d6cf;
    color: var(--color-primary);
    border-color: #c4c4c4;
}
.services{
    background: #F3F2F5;
    padding: 50px 0;
    position: relative;
}
.industries-box{
    background-blend-mode: overlay;
    background:#000;
    position: relative;
}
.industries-box::before {
    background-color: #00000059;
    position: absolute;
    content: '';
    top: 0;
    width: 100%;
    z-index: 9;
    bottom: 0;
    left: 0;
    right: 0;
}

.industries-box img{
        background-size: 100% 100%;
        width: 100%;
        object-fit: cover;
        height: 390px;
        border-radius: 3px;
        background-size: cover;
        color: #eee;
        background-blend-mode: multiply;
        overflow: hidden;
        -moz-transition: all .3s;
        transition: all .3s;
        box-shadow: 0 1px 10px rgba(0, 0, 0, .3);
        position: relative;
}
.industy-content {
    position: absolute;
    bottom: 20px;
    text-align: start;
    left: 20px;
    z-index: 99;
    right: 10px;
}
.industy-content h4 {
    font-size: 19px;
    color: #fff;
    font-weight: 500;
    margin: 0;
    text-transform: capitalize;
}


.industy-content h5 {
    position: absolute;
    width: 100%;
    left:5px;
    bottom: 80px;
    right: 5px;
    font-size: 35px;
    line-height: 3rem;
    font-weight: 700;
    color: hsla(0, 0%, 100%, 0.319);
    word-wrap: break-word;
    word-break: break-all;
    text-align: right;
    -moz-transition: all .3s;
    transition: all .3s;
}
.industries-box:hover::before{
    background-color: #26b4fbcd;

}
.main-ser {
    background-color: #F3F2F5;
    position: absolute;
    padding: 30px 30px 60px;
    bottom: -193px;
    left: 5%;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    z-index: 9;
    right: 5%;
}
.main-box{
    display: flex;
    align-items: center;
}
.main-box .serv-img{
    margin-right: 6px;
    width: 60px !important;
    height:60px;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    line-height: 70px;
}
.main-box .serv-img img{
    width: 100%;
    line-height: 70px;

}
.contactinfo{
    background: #F8F8FE;
    padding: 60px 0;
}
.common-enq-bot {
    display: flex
;
    justify-content: left;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.wdmwoncc019281 {
  width: 120px ;
}
.counter-box {
    text-align: center;
    padding: 20px;
  }
  .counter-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  .counter {
    font-size:25px;
    font-weight: 500;
    color: #000000;
  }
  .counter-box p {
    margin: 0;
  }

  .tab-content img {
    width: 100%;
    border-radius: 10px;
  }
  .nav-tabs .nav-link {
    display: flex
;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 23px 15px;
    text-align: start;
}
  .nav-tabs .nav-link h4 {
    margin: 0;
    font-size: 1.1rem;
  }
  .nav-tabs .nav-link p {
    margin: 0;
    font-size: 0.9rem;
  }
  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active h4{
    color: #fff;
  }
  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active p{
    color: #ddd;
  }
  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: var(--color-dark) !important;
    color:  #fff !important;
    border: 1px solid var(--color-dark);
    font-size: 16px;
  }

  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active img{
        filter: invert(93);
  }  
  .nav-tabs .nav-item .nav-link{
    margin-top: 20px;
    width: 100%;
    border-radius: 5px;

  }
  .nav-tabs {
    border: none;
  }
  .why{
    background: #F3F2F5;
    padding: 50px 0;
  }
  .tab-content {
    margin-top: 20px;
    width: 100%;
    height: 417px;
    border-radius: 10px;
    background-color: #fff;
}
.tab-pane img{
    width: 100%;
    object-fit: cover;
    height:400px ;
    padding: 30px;
}
#google_translate_element{
    position: fixed;
    z-index: 999;
    right: 10px;
    top: 68px;
}

.dropdown-menu.serv {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    visibility: hidden;
}

.dropdown-menu.serv.showing {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown-menu.industry-menu {
    display: none;
    padding: 10px 15px !important;
    opacity: 0;
    transform: translateY(20px);
    background: #F3F2F5;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
}

.dropdown-menu.industry-menu.showing {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.drop-box{
    width: 100px;
    display: inline-block;
    text-align: center;
    border-bottom: 4px solid var(--color-dark);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    padding: 10px 10px;
background-color: #fff;
}
.drop-box img{
    width: 50px;
    height:50px;
    text-align: center;
}
.texhnolo .row .col img{
    width: 90px;
}
.texhnolo .row{
    margin-top: 30px;
}
.texhnolo{
    padding-bottom: 100px;
}
.sol h5{
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    font-family: var(--font-primary);
    margin-bottom: 10px;
}
.sol ul li a{
    text-decoration: none;
    font-size: 14px;
    transition: .5s all;
}
.sol ul li{
    padding-left: 15px;
    position: relative;
    margin-top: 2px;

}
.sol ul li::before{
    position: absolute;
    content: '';
    background: var(--color-dark);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    top: 10px;
    left: 0;
    transition: .8s all;
}
.sol ul li:hover::before{
    width: 80%;
    height: 2px;
    border-radius: 0;
    bottom: 0 ;
    top: auto;
}
.sol ul li:hover a{
    letter-spacing: 1px;
    color: var(--color-primary);
}

.footer h6{
    font-size: 18px;
    color:#fff;
    font-weight: 700;
    font-family: var(--font-secondary);
    text-transform: capitalize;
    position: relative;
    
    margin-bottom: 30px !important;
}
.footer h6::before{
    content: '';
    position: absolute;
    background: #fff;
    width: 100px;
    height:4px;
    border-radius: 10px;
    bottom: -20px;
    left: 0;
}
.footer h6::after{
    content: '';
    position: absolute;
    background: var(--color-primary);
    width: 30px;
    height: 4px;
    bottom: -20px;
    left: 33px;
}
.footer .btn-floating{
    border-radius: 50% !important;
}


.footer ul li{
    padding-top: 10px;
    transition: .5s all;
    padding-bottom: 4px;
}
.footer ul li a{
    font-size: 14px;
    text-decoration: none;
    color: #d9d9d9;
}
.footer ul li a i{
    color:#fff;
    padding-right: 8px;
    font-size: 11px;
    transition: .5s all;
}
.footer ul li:hover a{
    color: var(--color-primary);
}
.footer ul li:hover {
    transform: translateX(10px);
}
.footer ul li:hover a i{
    color: var(--color-primary);
}
.footer h5{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.footer-link {
    color: #fff;
    padding: 0 15px;
    text-decoration: none;
    border-left: 1px solid #555;
    border-right: 1px solid #555;
    font-size: 14px;
    line-height: 1.8;
  }
  .footer-link:first-child {
    border-left: none;
  }
  .footer-link:last-child {
    border-right: none;
  }
  .footer-link:hover {
    text-decoration: underline;
    color: #f0f0f0;
  }

  .cs_contact_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 0;
  }
  
  .cs_footer_contact_card {
    display: flex;
    align-items: center;
    background-color: #1a1a1a; /* dark background */
    padding: 15px 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
  }
  
  .cs_footer_contact_card:hover {
    transform: translateY(-5px);
  }
  
  .cs_footer_contact_card_icon {
    min-width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .cs_footer_contact_card_icon img {
    width: 40px;
    height: 35px;
}
  
  .footer_contact_number p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
  }
  
  .footer_contact_number h3 {
    color: #ffffff;
    line-height: 21px;
    font-size: 16px;
    margin: 5px 0 0 0;
    font-weight: 600;
}
  
  .footer_contact_number h3 a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer_contact_number h3 a:hover {
    text-decoration: underline;
  }
  .sidebar input,
.sidebar textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.sidebar button {
    width: 100%;
    padding: 10px;
    background-color: var(--color-dark);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.sidebar button:hover {
    background-color: #0056b3;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--color-dark);
}

.contact-info p i {
    margin-right: 8px;
}
#succ-bottm2{
    display: none;
}

.plans-container {
    padding: 60px 20px;
  }

  .tabs-custom {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
  }

  .tab-button {
    border: none;
    background-color: #e9ecef;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .tab-button.active {
    background-color: var(--color-dark);
    color: #fff;
  }

  .tab-content-custom {
    display: none;
  }

  .tab-content-custom.active {
    display: block;
  }

  .plan-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    padding: 30px;
    margin-bottom: 30px;
  }

  .plan-card:hover {
    transform: translateY(-5px);
  }

  .plan-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 15px;
  }

  .plan-price {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
  }

  .plan-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .plan-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }

  .plan-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #28a745;
  }

  .plan-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: var(--color-dark);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .plan-button:hover {
    background-color: #0056b3;
  }


  /* inner baner start here */

  .inner-banner{
    padding: 100px 0;
  }
  .banner-inner a{
    background: var(--color-dark);
    border-radius: 30px;
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
  }
  .logooos{
    display: inline-block;
    text-align: center;
  }
  .logooos img{
    width: 150px;
    display: inline-block;
    text-align: center;

  }
  .offer-box{
    margin-bottom:50px;
  }
  .offer-box img {
    height: 220px;
    object-fit: contain;
    margin-bottom: 10px;
}

.project-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 210px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  
  .project-box img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
  }
  
  .project-overlay {
    position: absolute;
    bottom: -100%;
    left: 10px;
    right: 10px;
    background: rgba(129, 129, 129, 0.51);
    backdrop-filter: blur(2px);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: 90%;
    margin-top: 20px;
    transition: bottom 0.4s ease-in-out;
  }
  .project-overlay h5{
    color: #fff;
  }
  .project-overlay p{
    color: #d7d7d7;
  }
  
  .project-box:hover .project-overlay {
    bottom: 10px;
  }

  #contact {
    background: #f8f9fa;
  }
  #contact h2 {
    font-size: 2rem;
  }
  #contact .form-label {
    font-weight: 500;
  }
  #contact input,
  #contact textarea {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
  }
  #contact .btn-primary {
    background-color: var(--color-dark);
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
  }
  #contact .btn-primary:hover {
    background-color: #0056b3;
  }
  .btn-primarry{
    background: var(--color-dark);
    color: #fff;
    border: 2px solid var(--color-dark);
  }

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 50%;
  }
  .bg-primary{
    background: var(--color-primary);
  }
  .hover-shadow:hover {
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    transition: all 0.3s ease;
  }
  .bg-primary p{
    color: #F3F2F5;
  }
  /* Section Container */
.cloud-section {
    padding: 60px 0;
  }
  
  /* Section Headings */
  .cloud-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #1f3b70;
    margin-bottom: 40px;
  }
  
  /* Features Grid */
  .cloud-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
  }
  .cloud-feature-box {
    flex: 0 1 250px;
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .cloud-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  }
  .cloud-feature-icon {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .cloud-feature-icon:hover {
    color: #0056b3;
    transform: scale(1.2);
  }
  .cloud-feature-title {
    font-weight: 600;
    color: #333;
  }
  
  /* Pricing */
  .cloud-pricing {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
  }
  .cloud-price-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    width: 300px;
  }
  .cloud-price-card.highlight {
    border: 2px solid var(--color-dark);
  }
  .cloud-price-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f3b70;
  }
  .cloud-price-amount {
    font-size: 26px;
    color: var(--color-dark);
    margin: 10px 0;
  }
  .cloud-price-details {
    color: #444;
    font-size: 14px;
  }
  .cloud-price-button {
    display: inline-block;
    padding: 10px 25px;
    margin-top: 20px;
    border-radius: 30px;
    font-weight: 500;
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
    text-decoration: none;
    transition: 0.3s;
  }
  .cloud-price-button:hover {
    background: var(--color-dark);
    color: #fff;
  }
  
  /* Use Cases */
  .cloud-usecases {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
  }
  .cloud-usecase-box {
    text-align: center;
    max-width: 200px;
  }
  .cloud-usecase-icon {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 10px;
  }
  .cloud-usecase-text {
    font-weight: 500;
    color: #333;
  }
  
  /* Testimonials */
  .cloud-testimonials {
    max-width: 800px;
    margin: 0 auto;
  }
  .cloud-testimonial-text {
    font-style: italic;
    font-size: 16px;
    color: #333;
  }
  .cloud-testimonial-author {
    margin-top: 10px;
    color: #666;
  }
  .cloud-testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--color-dark);
    margin-bottom: 15px;
  }
  .service-box {
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
  }

  .service-box i{
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .bott .drop-box {
    width: 175px;
    display: inline-block;
    text-align: center;
    border-bottom: 4px solid var(--color-dark);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
    padding: 25px 15px;
    background-color: #fff;
}
.texh .card{
  margin-bottom: 10px;
  min-height: 142px;
}
.gt_float_switcher img {
    vertical-align: middle;
    display: inline-block;
    width: 22px !important;
    height: auto;
    margin: 0 5px 0 0;
    border-radius: 3px;
}
.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 0px 4px !important;
    color: #333;
    font-weight: bold;
}
.gt_float_switcher {
    font-family: Arial;
    font-size: 12px !important;
    border-radius: 2px;
    color: #555;
    display: inline-block;
    line-height: 20px;
    box-shadow:none !important;
    background: #fff;
    overflow: hidden;
    transition: all .5s cubic-bezier(0.4, 0, 1, 1);
}
#gt_float_wrapper {
    position: fixed;
    bottom: auto !important;
    left: auto !important;
    right: 116px !important;
    top: 6px !important;
    z-index: 999999;
}

 